- Timestamp:
- Jun 17, 2016, 4:50:23 AM (8 years ago)
- Location:
- AE/Setup/Mac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Setup/Mac/AE Setup/AE Setup/AppDelegate.applescript
r1030 r1043 7 7 -- because that would be redundant of the Installer itself. 8 8 -- 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. 9 11 -- 1.1.8 - Updated "Run AE Installer" script for Mono in 10.11. 10 12 -- 1.1.7 - Now an AppleScriptObjC application to ensure signing integrity and OS compatibility. … … 23 25 -- 1.1.2 - Calling Java at Internet plug-in location instead of using basic command-line "java", as 24 26 -- 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 'Ä' 26 28 -- problem in Java 7. 27 29 -- 1.1 - Updated bundled AEI Updater to 1.1, which supports proxies. … … 336 338 set AppleScript's text item delimiters to origDelimiters 337 339 -- Inform user if Java is too old 338 if (versionMajor ≥gNeedsJavaVersionMajor) then340 if (versionMajor ³ gNeedsJavaVersionMajor) then 339 341 if (versionMinor < gNeedsJavaVersionMinor) then 340 342 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.