Changeset 766 for java/installer2/src/net
- Timestamp:
- Mar 31, 2013, 5:13:35 PM (12 years ago)
- Location:
- java/installer2/src/net/oni2/aeinstaller
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/AEInstaller2.java
r753 r766 259 259 new File(Paths.getPrefsPath(), "bin")); 260 260 if (x > 0) { 261 // Update available 261 // Update available or missing files 262 262 int res = JOptionPane.showConfirmDialog(null, 263 263 globalBundle.getString("aeiUpdateAvailable.text"), -
java/installer2/src/net/oni2/aeinstaller/backend/oni/OniLauncher.java
r757 r766 23 23 break; 24 24 case MACOS: 25 exe = new File(Paths.getEditionBasePath(), 26 "Oni.app/Contents/MacOS/Oni"); 25 exe = new File("./Oni.app/Contents/MacOS/Oni"); 26 if (new File(Paths.getEditionBasePath(), 27 "Oni.app/Contents/MacOS/Oni").exists()) 28 return exe; 27 29 break; 28 30 case LINUX: … … 44 46 } 45 47 } 46 48 47 49 /** 48 50 * @param windowed … … 62 64 if (windowed) 63 65 params.add("-noswitch"); 64 ApplicationInvoker.execute(getOniExeType(), Paths.getEditionBasePath(), exe,65 params);66 ApplicationInvoker.execute(getOniExeType(), Paths.getEditionBasePath(), 67 exe, params); 66 68 } 67 69 -
java/installer2/src/net/oni2/aeinstaller/localization/MainWin.properties
r751 r766 15 15 menu.runOniWin=Run Oni (&windowed) 16 16 menu.runOniWinTooltip=Run Oni in windowed mode 17 menu.openEditionFolder=Open Editionfolder18 menu.openEditionFolderTooltip=Open the Editionfolder in the file explorer17 menu.openEditionFolder=Open AE folder 18 menu.openEditionFolderTooltip=Open the AE folder in the file explorer 19 19 menu.loadConfig=&Load mod selection... 20 20 menu.loadConfigTooltip=Load mod selection from a file
Note:
See TracChangeset
for help on using the changeset viewer.