| 50 |
|
basicBundle.getString("appname")); |
| 51 |
|
app = new DefaultApplication(); |
| 52 |
|
|
| 53 |
< |
URL icon = AEInstaller2.class.getResource("images/AElogo.png"); |
| 53 |
> |
URL icon = AEInstaller2.class.getResource(imagesBundle |
| 54 |
> |
.getString("img.ae")); |
| 55 |
|
try { |
| 56 |
|
BufferedImage img = ImageIO.read(icon); |
| 57 |
|
app.setApplicationIconImage(img); |
| 86 |
|
if (Settings.getPlatform() == Platform.MACOS) |
| 87 |
|
initMacOS(); |
| 88 |
|
|
| 89 |
+ |
Settings.setDebug(debug); |
| 90 |
|
Settings.deserializeFromFile(); |
| 91 |
|
Settings.setDebug(debug); |
| 92 |
|
|
| 122 |
|
} |
| 123 |
|
JFrame.setDefaultLookAndFeelDecorated(true); |
| 124 |
|
|
| 125 |
< |
System.out.println(basicBundle.getString("appname") + " " + basicBundle.getString("appversion")); |
| 125 |
> |
System.out.println(basicBundle.getString("appname") + " " |
| 126 |
> |
+ basicBundle.getString("appversion")); |
| 127 |
|
System.out.println("JarPath: " + Paths.getInstallerPath()); |
| 128 |
|
System.out.println("PrefsPath: " + Paths.getPrefsPath()); |
| 129 |
|
System.out.println("DataPath: " + Paths.getModsPath()); |