Skip to content

Commit 5ddd646

Browse files
committed
Oh my God, it was actually "UTF8" that broke it.
TeaVM doesn't seem to check aliases at all for charset names...
1 parent a07dbe6 commit 5ddd646

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

versions/latest/gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ org.gradle.daemon=false
22
org.gradle.jvmargs=-Xms512M -Xmx1G
33
org.gradle.configureondemand=false
44
android.enableR8.fullMode=false
5-
textratypistVersion=72f99b3185
5+
textratypistVersion=a07dbe6af2
6+
#textratypistVersion=72f99b3185
67
#textratypistVersion=1.1.1-SNAPSHOT
78
regExodusVersion=0.1.16
89
gwtFrameworkVersion=2.11.0

versions/latest/html/src/main/java/com/github/tommyettinger/gwt/GwtLauncher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public GwtApplicationConfiguration getConfig () {
2525

2626
@Override
2727
public ApplicationListener createApplicationListener () {
28-
// return new Main();
29-
return new TypingUITest();
28+
return new Main();
29+
// return new TypingUITest();
3030
// return new StandardUITest();
3131
}
3232
}

versions/latest/lwjgl3/src/main/java/com/github/tommyettinger/lwjgl3/Lwjgl3Launcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public static void main(String[] args) {
1515
}
1616

1717
private static Lwjgl3Application createApplication() {
18-
// return new Lwjgl3Application(new Main(), getDefaultConfiguration());
19-
return new Lwjgl3Application(new TypingUITest(), getDefaultConfiguration());
18+
return new Lwjgl3Application(new Main(), getDefaultConfiguration());
19+
// return new Lwjgl3Application(new TypingUITest(), getDefaultConfiguration());
2020
// return new Lwjgl3Application(new StandardUITest(), getDefaultConfiguration());
2121
}
2222

versions/latest/teavm/src/main/java/com/github/tommyettinger/teavm/TeaVMLauncher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ public static void main(String[] args) {
1717
config.height = 640;
1818
config.antialiasing = true;
1919
// config.useGL30 = true;
20+
new TeaApplication(new Main(), config);
21+
// new TeaApplication(new TypingUITest(), config);
2022
// new TeaApplication(new StandardUITest(), config);
21-
new TeaApplication(new TypingUITest(), config);
22-
// new TeaApplication(new Main(), config);
2323
}
2424
}

0 commit comments

Comments
 (0)