Skip to content

Commit bd699fb

Browse files
authored
Added new projekts (#17)
1 parent a519752 commit bd699fb

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<developers>
1515
<developer>
1616
<id>kyberorg</id>
17-
<name>Alexander Muravya</name>
17+
<name>Aleksandr Muravja</name>
1818
<email>[email protected]</email>
1919
<roles>
2020
<role>lead developer</role>
@@ -31,7 +31,7 @@
3131

3232
<properties>
3333
<java.version>15</java.version>
34-
<vaadin.version>14.5.3</vaadin.version>
34+
<vaadin.version>14.6.3</vaadin.version>
3535
<!-- Encoding -->
3636
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3737
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -40,7 +40,7 @@
4040
<parent>
4141
<groupId>org.springframework.boot</groupId>
4242
<artifactId>spring-boot-starter-parent</artifactId>
43-
<version>2.4.1</version>
43+
<version>2.5.1</version>
4444
<relativePath/> <!-- lookup parent from repository -->
4545
</parent>
4646

src/main/java/io/kyberorg/whoami/ui/sections/AboutSection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public AboutSection() {
88
String sectionText = """
99
Software craftsman and DevOps engineer. \
1010
11-
Mainly dealing with Docker, Docker Swarm and Kubernetes.\
11+
Mainly dealing with Docker, Docker Swarm and Kubernetes. \
1212
Developing in Java (Spring and Vaadin). \
1313
1414
Happy father and husband. \

src/main/java/io/kyberorg/whoami/ui/sections/ProjectsSection.java

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ public ProjectsSection() {
1717

1818
yalseeLogo.setTitle("Yalsee - the link shortener");
1919

20-
add(yalseeLogo);
20+
Logo manjaroLogo = Logo.create()
21+
.withSource("images/manjaro.png").withAltText("Manjaro Mirror")
22+
.withUrl("https://manjaro.kyberorg.fi")
23+
.build();
24+
25+
manjaroLogo.setWidth("4rem");
26+
manjaroLogo.setHeight("4rem");
27+
28+
Logo honeypotLogo = Logo.create()
29+
.withSource("images/honeypot.png").withAltText("Honeypot")
30+
.withUrl("https://github.com/kyberorg/honeypot")
31+
.build();
32+
33+
honeypotLogo.setWidth("4rem");
34+
honeypotLogo.setHeight("4rem");
35+
36+
add(yalseeLogo, manjaroLogo, honeypotLogo);
2137
}
2238
}
7.64 KB
Loading
411 Bytes
Loading

0 commit comments

Comments
 (0)