From 7804fba664590817b2f7e987a44e508d5d7c0e3f Mon Sep 17 00:00:00 2001 From: Abhi Beckert Date: Sun, 17 Apr 2016 09:06:44 +1000 Subject: Allow TLS 1.0 connections to sequelpro.com this will allow sparkle connections against the 10.11 SDK --- Resources/Plists/Info.plist | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/Resources/Plists/Info.plist b/Resources/Plists/Info.plist index 6ec8ccfe..5f5b8279 100644 --- a/Resources/Plists/Info.plist +++ b/Resources/Plists/Info.plist @@ -199,6 +199,31 @@ x86_64 10.6.0 + + NSAppTransportSecurity + + NSExceptionDomains + + sequelpro.com + + NSExceptionAllowsInsecureHTTPLoads + + NSExceptionRequiresForwardSecrecy + + NSExceptionMinimumTLSVersion + TLSv1.0 + NSThirdPartyExceptionAllowsInsecureHTTPLoads + + NSThirdPartyExceptionRequiresForwardSecrecy + + NSThirdPartyExceptionMinimumTLSVersion + TLSv1.0 + NSRequiresCertificateTransparency + + + + + NSAppleScriptEnabled NSHumanReadableCopyright @@ -240,7 +265,7 @@ SUEnableSystemProfiling SUFeedURL - https://www.sequelpro.com/appcast/app-releases.xml + https://sequelpro.com/appcast/app-releases.xml SUPublicDSAKeyFile sparkle-public-key.pem UTExportedTypeDeclarations -- cgit v1.2.3 From 6ecd8eee7db90461a0f286bd12510be42638d392 Mon Sep 17 00:00:00 2001 From: Abhi Beckert Date: Sun, 17 Apr 2016 09:27:47 +1000 Subject: remove icon step and minor fixes --- Scripts/nightlybuildscript.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Scripts/nightlybuildscript.sh b/Scripts/nightlybuildscript.sh index ca312f64..f571d1c0 100755 --- a/Scripts/nightlybuildscript.sh +++ b/Scripts/nightlybuildscript.sh @@ -19,7 +19,7 @@ NIGHTLY_KEYCHAIN_PASSWORD='PASSWORD NOT COMMITTED' REVISION_HASH=`echo "$1" | grep "\([0-9a-f]*\)"` if [ "$REVISION_HASH" == "" ] then - echo "Unable to extract revision hash from first argument; cancelling nightly build." >&2 + echo "Unable to extract revision hash from first argument; cancelling nightly build (git rev-parse HEAD)." >&2 exit 1 fi SHORT_HASH=${REVISION_HASH:0:10} @@ -90,10 +90,10 @@ find languagetranslations/Resources \( -name "*.lproj" \) | while read FILE; do cp -R "$FILE" "Sequel Pro.app/Contents/Resources/" done -echo "Copying nightly icon" +#echo "Copying nightly icon" # Copy in the nightly icon -cp -f "$NIGHTLY_ICON_LOC" Sequel\ Pro.app/Contents/Resources/appicon.icns +#cp -f "$NIGHTLY_ICON_LOC" Sequel\ Pro.app/Contents/Resources/appicon.icns echo "Updating version strings" @@ -103,7 +103,7 @@ php -r '$infoplistloc = "'$BUILD_DIR'/Sequel Pro.app/Contents/Info.plist"; $infoplist = preg_replace("/(\CFBundleShortVersionString\<\/key\>\s*\n?\r?\s*\)[^<]*(\<\/string\>)/i", "\\1Nightly build for revision '$SHORT_HASH'\\2", $infoplist); $infoplist = preg_replace("/(\CFBundleVersion\<\/key\>\s*\n?\r?\s*)\[^<]*(\<\/string\>)/i", "\\1'$NUMERIC_REVISION'\\2", $infoplist); $infoplist = preg_replace("/(\NSHumanReadableCopyright\<\/key\>\s*\n?\r?\s*\)[^<]*(\<\/string\>)/i", "\\1Nightly build for revision '$SHORT_HASH'\\2", $infoplist); - $infoplist = preg_replace("/(\SUFeedURL\<\/key\>\s*\n?\r?\s*\)[^<]*(\<\/string\>)/i", "\\1http://nightly.sequelpro.com/nightly-app-releases.php\\2", $infoplist); + $infoplist = preg_replace("/(\SUFeedURL\<\/key\>\s*\n?\r?\s*\)[^<]*(\<\/string\>)/i", "\\1https://sequelpro.com/nightly/nightly-app-releases.php\\2", $infoplist); file_put_contents($infoplistloc, $infoplist);' # Update versions in localised string files @@ -117,10 +117,10 @@ php -r '$englishstringsloc = "/'$BUILD_DIR'/Sequel Pro.app/Contents/Resources/En echo "Signing build..." # Code sign and verify the nightly -security unlock-keychain -p "$NIGHTLY_KEYCHAIN_PASSWORD" "$NIGHTLY_KEYCHAIN_LOC" -codesign -f --keychain "$NIGHTLY_KEYCHAIN_LOC" -s 'Developer ID Application: MJ Media' -r "../../Resources/sprequirement.bin" "Sequel Pro.app/Contents/Resources/SequelProTunnelAssistant" -codesign -f --keychain "$NIGHTLY_KEYCHAIN_LOC" -s 'Developer ID Application: MJ Media' -r "../../Resources/sprequirement.bin" "Sequel Pro.app" -security lock-keychain "$NIGHTLY_KEYCHAIN_LOC" +#security unlock-keychain -p "$NIGHTLY_KEYCHAIN_PASSWORD" "$NIGHTLY_KEYCHAIN_LOC" +codesign -f --keychain "$NIGHTLY_KEYCHAIN_LOC" -s 'Developer ID Application: MJ Media' -r $GIT_DIR"/Resources/spframeworkrequirement.bin" "Sequel Pro.app/Contents/Resources/SequelProTunnelAssistant" +codesign -f --keychain "$NIGHTLY_KEYCHAIN_LOC" -s 'Developer ID Application: MJ Media' -r $GIT_DIR"/Resources/sprequirement.bin" "Sequel Pro.app" +#security lock-keychain "$NIGHTLY_KEYCHAIN_LOC" VERIFYERRORS=`codesign --verify "Sequel Pro.app" 2>&1` VERIFYERRORS+=`codesign --verify "Sequel Pro.app/Contents/Resources/SequelProTunnelAssistant" 2>&1` if [ "$VERIFYERRORS" != '' ] @@ -156,7 +156,7 @@ echo "Disk image ready (hashed as $SIGNATURE)" echo "Uploading disk image..." # Upload the disk image -scp -q -P 32100 Sequel_Pro_r"$SHORT_HASH".dmg spnightlyuploader@sequelpro.com:nightlybuilds +scp -P 32100 Sequel_Pro_r"$SHORT_HASH".dmg spnightlyuploader@sequelpro.com:nightlybuilds RETURNVALUE=$? if [ $RETURNVALUE -eq 0 ] then -- cgit v1.2.3