summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2015-05-19 13:34:48 -0700
committerMicah Lee <micah@micahflee.com>2015-05-19 13:34:48 -0700
commit4be8d68750579729106ccec00d77804fbd625cb8 (patch)
tree540d7ff6948933b18c73afd2d24be634c681a5aa
parent210448d6c9eea513bcefc009d07e4e0e4c3c8580 (diff)
parent886c30759223b3a40222c3016bc1cbcdf9582729 (diff)
downloadonionshare-4be8d68750579729106ccec00d77804fbd625cb8.tar.gz
onionshare-4be8d68750579729106ccec00d77804fbd625cb8.zip
Merge branch 'master' of github.com:micahflee/onionshare
-rw-r--r--install/build_exe.bat4
-rw-r--r--install/onionshare.nsi4
2 files changed, 4 insertions, 4 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 f46edbb5..88e9e716 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
@@ -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"