From 90af3f2e128d414205ed861b989779d061bcc5b1 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 18 May 2015 16:46:26 -0700 Subject: [PATCH 1/2] version bump from 0.7dev to 0.7 in windows installer --- install/onionshare.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/onionshare.nsi b/install/onionshare.nsi index f46edbb5..d87c2d84 100644 --- a/install/onionshare.nsi +++ b/install/onionshare.nsi @@ -6,7 +6,7 @@ !define INSTALLSIZE 31187 !define VERSIONMAJOR 0 !define VERSIONMINOR 7 -!define VERSIONSTRING "0.7dev" +!define VERSIONSTRING "0.7" RequestExecutionLevel admin From 886c30759223b3a40222c3016bc1cbcdf9582729 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 18 May 2015 17:04:26 -0700 Subject: [PATCH 2/2] replacing signtool.exe timestamp server with globalsign one, because startssl is having problems --- install/build_exe.bat | 4 ++-- install/onionshare.nsi | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install/build_exe.bat b/install/build_exe.bat index b8cfc51d..4c8b48ab 100644 --- a/install/build_exe.bat +++ b/install/build_exe.bat @@ -2,7 +2,7 @@ REM use pyinstaller to builder a folder with onionshare.exe pyinstaller -y install\onionshare-win.spec REM sign onionshare.exe -signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\onionshare\onionshare.exe +signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\onionshare\onionshare.exe REM run onionshare once, to compile the .py files into .pyc dist\onionshare\onionshare.exe --help @@ -11,4 +11,4 @@ REM build an installer, dist\OnionShare_Setup.exe makensisw install\onionshare.nsi REM sign OnionShare_Setup.exe -signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\OnionShare_Setup.exe +signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\OnionShare_Setup.exe diff --git a/install/onionshare.nsi b/install/onionshare.nsi index d87c2d84..88e9e716 100644 --- a/install/onionshare.nsi +++ b/install/onionshare.nsi @@ -41,7 +41,7 @@ ${EndIf} !echo "Creating normal installer" !system "$\"${NSISDIR}\makensis$\" /DINNER onionshare.nsi" = 0 !system "$%TEMP%\tempinstaller.exe" = 2 - !system "signtool.exe sign /v /d $\"Uninstall OnionShare$\" /a /tr http://www.startssl.com/timestamp $%TEMP%\uninstall.exe" = 0 + !system "signtool.exe sign /v /d $\"Uninstall OnionShare$\" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll $%TEMP%\uninstall.exe" = 0 # all done, now we can build the real installer OutFile "..\dist\OnionShare_Setup.exe"