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

View File

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