aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2018-06-18 12:10:28 -0700
committerMicah Lee <micah@micahflee.com>2018-06-18 12:10:28 -0700
commit53223bb52a2303ce0fb1c30488eb37c3460665b2 (patch)
tree8ebc2732ba8f2669e7afd6256894ebcc305efa01
parent3c8bc81b24bac9e12254e23c5e6fcd253212882c (diff)
downloadonionshare-53223bb52a2303ce0fb1c30488eb37c3460665b2.tar.gz
onionshare-53223bb52a2303ce0fb1c30488eb37c3460665b2.zip
Upgrade get-tor scripts to download Tor Browser 7.5.5, which includes Tor 0.3.2.10
-rw-r--r--install/get-tor-osx.py6
-rw-r--r--install/get-tor-windows.py6
2 files changed, 6 insertions, 6 deletions
diff --git a/install/get-tor-osx.py b/install/get-tor-osx.py
index c780ebae..207ecfb3 100644
--- a/install/get-tor-osx.py
+++ b/install/get-tor-osx.py
@@ -28,9 +28,9 @@ import inspect, os, sys, hashlib, zipfile, io, shutil, subprocess
import urllib.request
def main():
- dmg_url = 'https://archive.torproject.org/tor-package-archive/torbrowser/7.5/TorBrowser-7.5-osx64_en-US.dmg'
- dmg_filename = 'TorBrowser-7.5-osx64_en-US.dmg'
- expected_dmg_sha256 = '43a8dc0afd0a77e42766311eb54ad9fc8714f67fcd2d3582a3bcb98b22c2e629'
+ dmg_url = 'https://archive.torproject.org/tor-package-archive/torbrowser/7.5.5/TorBrowser-7.5.5-osx64_en-US.dmg'
+ dmg_filename = 'TorBrowser-7.5.5-osx64_en-US.dmg'
+ expected_dmg_sha256 = '2b445e4237cdd9be0e71e65f76db5d36f0d6c37532982d642803b57e388e4636'
# Build paths
root_path = os.path.dirname(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))))
diff --git a/install/get-tor-windows.py b/install/get-tor-windows.py
index 8875a556..e7783191 100644
--- a/install/get-tor-windows.py
+++ b/install/get-tor-windows.py
@@ -28,9 +28,9 @@ import inspect, os, sys, hashlib, shutil, subprocess
import urllib.request
def main():
- exe_url = 'https://archive.torproject.org/tor-package-archive/torbrowser/7.5/torbrowser-install-7.5_en-US.exe'
- exe_filename = 'torbrowser-install-7.5_en-US.exe'
- expected_exe_sha256 = '81ccb9456118cf8fa755a3eafb5c514665fc69599cdd41e9eb36baa335ebe233'
+ exe_url = 'https://archive.torproject.org/tor-package-archive/torbrowser/7.5.5/torbrowser-install-7.5.5_en-US.exe'
+ exe_filename = 'torbrowser-install-7.5.5_en-US.exe'
+ expected_exe_sha256 = '992f9a6658001c3419ed3695a908eef4fb7feb1cd549389bdacbadb7f8cb08a7'
# Build paths
root_path = os.path.dirname(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))))
working_path = os.path.join(os.path.join(root_path, 'build'), 'tor')