update info

This commit is contained in:
sirjonasxx 2018-10-13 23:43:13 +02:00
parent 5d5442bd37
commit 764cb6472c
2 changed files with 6 additions and 5 deletions

View File

@ -21,6 +21,7 @@ public class Info extends SubForm {
"", "",
"Contributors:", "Contributors:",
"XePeleato (Windows & Mac support)", "XePeleato (Windows & Mac support)",
"Scott Stamp",
"LittleJ", "LittleJ",
"ArachisH", "ArachisH",
"", "",
@ -29,14 +30,14 @@ public class Info extends SubForm {
"darkbox.nl" "darkbox.nl"
}; };
String all = lines[0]; StringBuilder all = new StringBuilder(lines[0]);
for (int i = 1; i < lines.length; i++) { for (int i = 1; i < lines.length; i++) {
all += (System.lineSeparator() + lines[i]); all.append(System.lineSeparator()).append(lines[i]);
} }
text.setText( text.setText(
all all.toString()
); );
} }
} }

View File

@ -7,7 +7,7 @@
<groupId>G-Earth</groupId> <groupId>G-Earth</groupId>
<artifactId>G-Earth-Parent</artifactId> <artifactId>G-Earth-Parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>0.0.1-beta</version> <version>0.1.2-beta</version>
<properties> <properties>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
@ -16,7 +16,7 @@
<name>G-Earth</name> <name>G-Earth</name>
<url>https://github.com/sirjonasxx/G-Earth</url> <url>https://github.com/sirjonasxx/G-Earth</url>
<description></description> <description>Cross Platform Habbo packetlogger/manipulator</description>
<modules> <modules>
<module>G-Earth-UI</module> <module>G-Earth-UI</module>