Changeset 1030 for AE/Setup/Mac/Run AE Installer
- Timestamp:
- Feb 21, 2016, 1:58:04 AM (9 years ago)
- Location:
- AE/Setup/Mac/Run AE Installer
- Files:
-
- 1 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Setup/Mac/Run AE Installer
-
Property svn:ignore
set to
*.xcodeproj/xcuserdata*
-
Property svn:ignore
set to
-
AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj
-
Property svn:ignore
set to
xcuserdata
-
Property svn:ignore
set to
-
AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj/project.pbxproj
r1029 r1030 108 108 isa = PBXProject; 109 109 attributes = { 110 LastUpgradeCheck = 0 640;110 LastUpgradeCheck = 0720; 111 111 ORGANIZATIONNAME = Oni2.net; 112 112 TargetAttributes = { … … 191 191 DEBUG_INFORMATION_FORMAT = dwarf; 192 192 ENABLE_STRICT_OBJC_MSGSEND = YES; 193 ENABLE_TESTABILITY = YES; 193 194 GCC_C_LANGUAGE_STANDARD = gnu99; 194 195 GCC_DYNAMIC_NO_PIC = NO; … … 261 262 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; 262 263 MACOSX_DEPLOYMENT_TARGET = 10.6; 264 PRODUCT_BUNDLE_IDENTIFIER = "net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)"; 263 265 PRODUCT_NAME = "$(TARGET_NAME)"; 264 266 }; … … 273 275 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; 274 276 MACOSX_DEPLOYMENT_TARGET = 10.6; 277 PRODUCT_BUNDLE_IDENTIFIER = "net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)"; 275 278 PRODUCT_NAME = "$(TARGET_NAME)"; 276 279 }; -
AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj/project.xcworkspace
-
Property svn:ignore
set to
xcuserdata
-
Property svn:ignore
set to
-
AE/Setup/Mac/Run AE Installer/Run AE Installer/AppDelegate.applescript
r1029 r1030 6 6 -- shortcut for the user and as a part of the AE Setup process. 7 7 -- History: 8 -- 1.0.8 - Now that Mono is installed in /usr/local/bin/ in 10.11, we need to add 9 -- that path to PATH when invoking Java. 8 10 -- 1.0.7 - Now an AppleScriptObjC application to ensure signing integrity and OS 9 11 -- compatibility for 10.6 through 10.11. … … 62 64 63 65 if (success is true) then 66 set run_prefix to "export PATH=/usr/local/bin:${PATH};export LC_CTYPE=\"UTF-8\";" 64 67 set AEIUfolder to parentPathASStr & "AEInstaller" 65 68 set AEIU to AEIUfolder & ":AEInstaller2Updater.jar" 66 69 set AEIU_CLI to POSIX path of AEIU 67 set run_AEIU to "export LC_CTYPE=\"UTF-8\";"& javaPath & " -jar \"" & AEIU_CLI & "\" &> /dev/null &"70 set run_AEIU to run_prefix & javaPath & " -jar \"" & AEIU_CLI & "\" &> /dev/null &" 68 71 69 72 set AEIfolder to parentPathASStr & "AEInstaller:bin" 70 73 set AEI to AEIfolder & ":AEInstaller2.jar" 71 74 set AEI_CLI to POSIX path of AEI 72 set run_AEI to "export LC_CTYPE=\"UTF-8\";"& javaPath & " -jar \"" & AEI_CLI & "\" &> /dev/null &"75 set run_AEI to run_prefix & javaPath & " -jar \"" & AEI_CLI & "\" &> /dev/null &" 73 76 if not (parentPathUnixNS's lastPathComponent as string is "AE") then 74 77 display alert "Please put \"Run AE Installer\" in the AE/ folder so I can find the Installer." -
AE/Setup/Mac/Run AE Installer/Run AE Installer/Images.xcassets/AppIcon.appiconset/Contents.json
r1029 r1030 34 34 "size" : "256x256", 35 35 "idiom" : "mac", 36 "filename" : "AE setuplogo-1.png",36 "filename" : "AElogo.png", 37 37 "scale" : "1x" 38 38 }, -
AE/Setup/Mac/Run AE Installer/Run AE Installer/Info.plist
r1029 r1030 3 3 <plist version="1.0"> 4 4 <dict> 5 <key>LSUIElement</key>6 <true/>7 5 <key>CFBundleDevelopmentRegion</key> 8 6 <string>en</string> … … 12 10 <string></string> 13 11 <key>CFBundleIdentifier</key> 14 <string> net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)</string>12 <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 15 13 <key>CFBundleInfoDictionaryVersion</key> 16 14 <string>6.0</string> … … 20 18 <string>APPL</string> 21 19 <key>CFBundleShortVersionString</key> 22 <string>1.0. 7</string>20 <string>1.0.8</string> 23 21 <key>CFBundleSignature</key> 24 22 <string>????</string> 25 23 <key>CFBundleVersion</key> 26 <string>1.0. 7</string>24 <string>1.0.8</string> 27 25 <key>LSMinimumSystemVersion</key> 28 26 <string>$(MACOSX_DEPLOYMENT_TARGET)</string> 27 <key>LSUIElement</key> 28 <true/> 29 29 <key>NSHumanReadableCopyright</key> 30 30 <string>Copyright © 2015 iritscen@oni2.net. All rights reserved.</string>
Note:
See TracChangeset
for help on using the changeset viewer.