Ignore:
Timestamp:
Mar 31, 2013, 5:13:35 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.99y:

  • Restore files missing in WC
Location:
java/installer2/src/net/oni2/aeinstaller
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/AEInstaller2.java

    r753 r766  
    259259                                                new File(Paths.getPrefsPath(), "bin"));
    260260                                if (x > 0) {
    261                                         // Update available
     261                                        // Update available or missing files
    262262                                        int res = JOptionPane.showConfirmDialog(null,
    263263                                                        globalBundle.getString("aeiUpdateAvailable.text"),
  • java/installer2/src/net/oni2/aeinstaller/backend/oni/OniLauncher.java

    r757 r766  
    2323                                break;
    2424                        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;
    2729                                break;
    2830                        case LINUX:
     
    4446                }
    4547        }
    46        
     48
    4749        /**
    4850         * @param windowed
     
    6264                if (windowed)
    6365                        params.add("-noswitch");
    64                 ApplicationInvoker.execute(getOniExeType(), Paths.getEditionBasePath(), exe,
    65                                 params);
     66                ApplicationInvoker.execute(getOniExeType(), Paths.getEditionBasePath(),
     67                                exe, params);
    6668        }
    6769
  • java/installer2/src/net/oni2/aeinstaller/localization/MainWin.properties

    r751 r766  
    1515menu.runOniWin=Run Oni (&windowed)
    1616menu.runOniWinTooltip=Run Oni in windowed mode
    17 menu.openEditionFolder=Open Edition folder
    18 menu.openEditionFolderTooltip=Open the Edition folder in the file explorer
     17menu.openEditionFolder=Open AE folder
     18menu.openEditionFolderTooltip=Open the AE folder in the file explorer
    1919menu.loadConfig=&Load mod selection...
    2020menu.loadConfigTooltip=Load mod selection from a file
Note: See TracChangeset for help on using the changeset viewer.