mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2025-01-19 00:26:27 +01:00
update info
This commit is contained in:
parent
5d5442bd37
commit
764cb6472c
@ -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()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
4
pom.xml
4
pom.xml
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user