Changeset 1043 for AE/Setup


Ignore:
Timestamp:
Jun 17, 2016, 4:50:23 AM (8 years ago)
Author:
iritscen
Message:

Incremented version number for AE Setup to 1.1.9 because it had to be re-built for 10.12. Updated instructions on running an unsigned app. No code changes.

Location:
AE/Setup/Mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/Setup/Mac/AE Setup/AE Setup/AppDelegate.applescript

    r1030 r1043  
    77--      because that would be redundant of the Installer itself.
    88-- History:
     9--   1.1.9 - No code changes. Re-built in order to include Run AE Installer 1.0.9, which also had no
     10--           code changes but needed to be re-built in 10.12 in order to run in 10.12.
    911--   1.1.8 - Updated "Run AE Installer" script for Mono in 10.11.
    1012--   1.1.7 - Now an AppleScriptObjC application to ensure signing integrity and OS compatibility.
     
    2325--   1.1.2 - Calling Java at Internet plug-in location instead of using basic command-line "java", as
    2426--              only the JDK installs command-line Java.
    25 --   1.1.1 - Changed the "Run AE Installer" script to set environment to UTF-8 in order to avoid 'ƒ'
     27--   1.1.1 - Changed the "Run AE Installer" script to set environment to UTF-8 in order to avoid 'Ä'
    2628--              problem in Java 7.
    2729--   1.1   - Updated bundled AEI Updater to 1.1, which supports proxies.
     
    336338            set AppleScript's text item delimiters to origDelimiters
    337339            -- Inform user if Java is too old
    338             if (versionMajor gNeedsJavaVersionMajor) then
     340            if (versionMajor ³ gNeedsJavaVersionMajor) then
    339341                if (versionMinor < gNeedsJavaVersionMinor) then
    340342                    display dialog (("Sorry, Java v" & gNeedsJavaVersionMajor & "." & gNeedsJavaVersionMinor & " is required; found v" & versionMajor & "." & versionMinor & " instead.") as string) buttons {"OK"} default button 1 with title "AE Setup"
Note: See TracChangeset for help on using the changeset viewer.