Ignore:
Timestamp:
Feb 21, 2016, 1:58:04 AM (9 years ago)
Author:
iritscen
Message:

AE Setup v1.1.8. Updated Run AE Installer script for Mono in 10.11. Corrected Run script icon from using Setup's icon to using base AE icon.

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*
  • AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj

    • Property svn:ignore set to
      xcuserdata
  • AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj/project.pbxproj

    r1029 r1030  
    108108                        isa = PBXProject;
    109109                        attributes = {
    110                                 LastUpgradeCheck = 0640;
     110                                LastUpgradeCheck = 0720;
    111111                                ORGANIZATIONNAME = Oni2.net;
    112112                                TargetAttributes = {
     
    191191                                DEBUG_INFORMATION_FORMAT = dwarf;
    192192                                ENABLE_STRICT_OBJC_MSGSEND = YES;
     193                                ENABLE_TESTABILITY = YES;
    193194                                GCC_C_LANGUAGE_STANDARD = gnu99;
    194195                                GCC_DYNAMIC_NO_PIC = NO;
     
    261262                                LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
    262263                                MACOSX_DEPLOYMENT_TARGET = 10.6;
     264                                PRODUCT_BUNDLE_IDENTIFIER = "net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)";
    263265                                PRODUCT_NAME = "$(TARGET_NAME)";
    264266                        };
     
    273275                                LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
    274276                                MACOSX_DEPLOYMENT_TARGET = 10.6;
     277                                PRODUCT_BUNDLE_IDENTIFIER = "net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)";
    275278                                PRODUCT_NAME = "$(TARGET_NAME)";
    276279                        };
  • AE/Setup/Mac/Run AE Installer/Run AE Installer.xcodeproj/project.xcworkspace

    • Property svn:ignore set to
      xcuserdata
  • AE/Setup/Mac/Run AE Installer/Run AE Installer/AppDelegate.applescript

    r1029 r1030  
    66--      shortcut for the user and as a part of the AE Setup process.
    77-- 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.
    810--   1.0.7 - Now an AppleScriptObjC application to ensure signing integrity and OS
    911--              compatibility for 10.6 through 10.11.
     
    6264           
    6365            if (success is true) then
     66                set run_prefix to "export PATH=/usr/local/bin:${PATH};export LC_CTYPE=\"UTF-8\";"
    6467                set AEIUfolder to parentPathASStr & "AEInstaller"
    6568                set AEIU to AEIUfolder & ":AEInstaller2Updater.jar"
    6669                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 &"
    6871               
    6972                set AEIfolder to parentPathASStr & "AEInstaller:bin"
    7073                set AEI to AEIfolder & ":AEInstaller2.jar"
    7174                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 &"
    7376                if not (parentPathUnixNS's lastPathComponent as string is "AE") then
    7477                    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  
    3434      "size" : "256x256",
    3535      "idiom" : "mac",
    36       "filename" : "AEsetuplogo-1.png",
     36      "filename" : "AElogo.png",
    3737      "scale" : "1x"
    3838    },
  • AE/Setup/Mac/Run AE Installer/Run AE Installer/Info.plist

    r1029 r1030  
    33<plist version="1.0">
    44<dict>
    5         <key>LSUIElement</key>
    6         <true/>
    75        <key>CFBundleDevelopmentRegion</key>
    86        <string>en</string>
     
    1210        <string></string>
    1311        <key>CFBundleIdentifier</key>
    14         <string>net.oni2.ae.$(PRODUCT_NAME:rfc1034identifier)</string>
     12        <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    1513        <key>CFBundleInfoDictionaryVersion</key>
    1614        <string>6.0</string>
     
    2018        <string>APPL</string>
    2119        <key>CFBundleShortVersionString</key>
    22         <string>1.0.7</string>
     20        <string>1.0.8</string>
    2321        <key>CFBundleSignature</key>
    2422        <string>????</string>
    2523        <key>CFBundleVersion</key>
    26         <string>1.0.7</string>
     24        <string>1.0.8</string>
    2725        <key>LSMinimumSystemVersion</key>
    2826        <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
     27        <key>LSUIElement</key>
     28        <true/>
    2929        <key>NSHumanReadableCopyright</key>
    3030        <string>Copyright © 2015 iritscen@oni2.net. All rights reserved.</string>
Note: See TracChangeset for help on using the changeset viewer.