Changeset 609d594
- Timestamp:
- Jan 22, 2019 7:25:33 PM (2 years ago)
- Branches:
- master
- Children:
- 57de4b1
- Parents:
- 88d9f1d
- Location:
- launchers/macosx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
launchers/macosx/Deployer.mm
r88d9f1d r609d594 84 84 85 85 // Everything behind --exec java - would be passed as arguments to the java executable. 86 std::string execStr = "/usr/bin/unzip "; //std::string([rs.getJavaHome UTF8String]);86 std::string execStr = "/usr/bin/unzip -uo "; //std::string([rs.getJavaHome UTF8String]); 87 87 execStr += [self.metaInfo.zipFile UTF8String]; 88 88 //for_each(cli, [&execStr](std::string str){ execStr += std::string(" ") + str; }); -
launchers/macosx/I2PLauncher.xcodeproj/project.pbxproj
r88d9f1d r609d594 501 501 runOnlyForDeploymentPostprocessing = 0; 502 502 shellPath = /bin/sh; 503 shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nversion=`/usr/libexec/PlistBuddy -c \"Print I2PRouter eVersion\" \"${INFOPLIST_FILE}\"`\ncommit=`mtn heads --branch=i2p.i2p | awk '{ print $1 }' | head -n 1`\nbuildinfo=\"Built $(date), $commit\"\n\n# Use cat to avoid any potential alias of cp asking for overwrite of file.\ncat $SRCROOT/version.h.tpl > $SRCROOT/version.h\nsed -i '' \"s#VERSION_REPLACED_BY_XCODE_BUILD_SCRIPT#$version#g\" $SRCROOT/version.h\nsed -i '' \"s#BUILD_INFO_REPLACED_BY_XCODE_BUILD_SCRIPT#$buildinfo#\" $SRCROOT/version.h\n\n$SRCROOT/check_latest_java.sh\n\n";503 shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nversion=`/usr/libexec/PlistBuddy -c \"Print I2PRouterVersion\" \"${INFOPLIST_FILE}\"`\ncommit=`mtn heads --branch=i2p.i2p | awk '{ print $1 }' | head -n 1`\nbuildinfo=\"Built $(date), $commit\"\n\n# Use cat to avoid any potential alias of cp asking for overwrite of file.\ncat $SRCROOT/version.h.tpl > $SRCROOT/version.h\nsed -i '' \"s#VERSION_REPLACED_BY_XCODE_BUILD_SCRIPT#$version#g\" $SRCROOT/version.h\nsed -i '' \"s#BUILD_INFO_REPLACED_BY_XCODE_BUILD_SCRIPT#$buildinfo#\" $SRCROOT/version.h\n\n$SRCROOT/check_latest_java.sh\n\n"; 504 504 }; 505 505 BF1EFA4B215142030014EB07 /* ShellScript */ = { -
launchers/macosx/I2PLauncher/Info.plist
r88d9f1d r609d594 18 18 <string>APPL</string> 19 19 <key>CFBundleShortVersionString</key> 20 <string>0.1. 2</string>20 <string>0.1.3</string> 21 21 <key>CFBundleVersion</key> 22 22 <string>5</string> 23 <key>I2PRouter eVersion</key>24 <string>0.9.3 7</string>23 <key>I2PRouterVersion</key> 24 <string>0.9.38</string> 25 25 <key>LSApplicationCategoryType</key> 26 26 <string>public.app-category.utilities</string> -
launchers/macosx/osx_create_dmg.sh
r88d9f1d r609d594 5 5 6 6 APP_NAME="I2PLauncher" 7 VERSION=" 0.9.37"7 VERSION="`/usr/libexec/PlistBuddy -c 'Print I2PRouterVersion' Info.plist`" 8 8 DMG_BACKGROUND_IMG=${BACKGROUND_IMG:-"Background.png"} 9 9
Note: See TracChangeset
for help on using the changeset viewer.