Skip to content

Commit d083b20

Browse files
0.21-beta
1 parent 34d350d commit d083b20

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group 'pekaeds'
7-
version '0.20-beta'
7+
version '0.21-beta'
88

99
repositories {
1010
mavenCentral()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package pekaeds.data;
22

33
public class PekaEDSVersion {
4-
public static final String VERSION_STRING = "0.20 beta";
4+
public static final String VERSION_STRING = "0.21 beta";
55
}

src/main/java/pekaeds/ui/misc/InitialSetupDialog.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ public InitialSetupDialog(Dialog owner) {
9191
if (!tfPath.getText().isBlank()) {
9292
Settings.reset();
9393

94+
String theme = (String)this.cbTheme.getSelectedItem();
95+
Settings.setLookAndFeel(theme);
96+
9497
Settings.setDefaultAuthor(tfDefaultAuthor.getText());
9598
Settings.setBasePath(tfPath.getText());
9699

src/main/java/pekaep/ui/UnknowAIPage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public UnknowAIPage(){
2929
JLabel title = new JLabel("<html> <span style=\"font-weight:bold; color:orange; font-size: 25px\"> Warning! </span> </html>");
3030

3131

32-
JLabel info = new JLabel("<html> These sprites contain unknown AIs! <br> It will cause problems when the game is updated! To fix it, remove listed AIs! </html>");
32+
JLabel info = new JLabel("<html> These sprites contain unknown AIs! <br> Unknown AIs can pose problems when the game is updated! </html>");
3333

3434
this.add(title, "cell 0 0");
3535
this.add(info, "cell 0 1");
@@ -43,7 +43,7 @@ public UnknowAIPage(){
4343
this.assetInfoPanel = new AssetInfoPanel();
4444
this.assetInfoPanel.setVisible(false);
4545

46-
this.cbUnknowAIs = new JCheckBox("Remove unknown sprite AIs (recommended)");
46+
this.cbUnknowAIs = new JCheckBox("Remove unknown sprite AIs (highly recommended!)");
4747
this.cbUnknowAIs.setSelected(false);
4848

4949
this.add(this.cbUnknowAIs, "cell 0 2");

0 commit comments

Comments
 (0)