lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2026 -----
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 1 participants
  • 20853 discussions
[Git][tpo/applications/tor-browser-build][main] Bug 40751: Fix make signtag-* after #40737
by boklm (@boklm) 26 Jan '23

26 Jan '23
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 49221734 by Nicolas Vigier at 2023-01-26T17:14:56+01:00 Bug 40751: Fix make signtag-* after #40737 - - - - - 1 changed file: - Makefile Changes: ===================================== Makefile ===================================== @@ -181,10 +181,10 @@ torbrowser-testbuild-src: submodule-update $(rbm) build release --target testbuild --target browser-src-testbuild --target torbrowser signtag-release: submodule-update - $(rbm) build release --step signtag --target release + $(rbm) build release --step signtag --target release --target torbrowser signtag-alpha: submodule-update - $(rbm) build release --step signtag --target alpha + $(rbm) build release --step signtag --target alpha --target torbrowser incrementals-release: submodule-update $(rbm) build release --step update_responses_config --target release --target create_unsigned_incrementals --target torbrowser View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] Bug 41565: Gate Telemetry Tasks behind MOZ_TELEMETRY_REPORTING
by Pier Angelo Vendrame (@pierov) 26 Jan '23

26 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 47eb7d30 by cypherpunks1 at 2023-01-26T08:51:50+00:00 Bug 41565: Gate Telemetry Tasks behind MOZ_TELEMETRY_REPORTING - - - - - 4 changed files: - browser/base/content/browser.js - browser/components/BrowserGlue.jsm - toolkit/components/telemetry/app/TelemetryEnvironment.jsm - toolkit/xre/nsAppRunner.cpp Changes: ===================================== browser/base/content/browser.js ===================================== @@ -6053,6 +6053,7 @@ var TabsProgressListener = { // Collect telemetry data about tab load times. if ( + AppConstants.MOZ_TELEMETRY_REPORTING && aWebProgress.isTopLevel && (!aRequest.originalURI || aRequest.originalURI.scheme != "about") ) { ===================================== browser/components/BrowserGlue.jsm ===================================== @@ -1721,7 +1721,9 @@ BrowserGlue.prototype = { this._firstWindowTelemetry(aWindow); this._firstWindowLoaded(); - this._collectStartupConditionsTelemetry(); + if (AppConstants.MOZ_TELEMETRY_REPORTING) { + this._collectStartupConditionsTelemetry(); + } // Set the default favicon size for UI views that use the page-icon protocol. PlacesUtils.favicons.setDefaultIconURIPreferredSize( @@ -2920,13 +2922,21 @@ BrowserGlue.prototype = { } }, - () => BrowserUsageTelemetry.reportProfileCount(), + () => { + if (AppConstants.MOZ_TELEMETRY_REPORTING) { + BrowserUsageTelemetry.reportProfileCount(); + } + }, () => OsEnvironment.reportAllowedAppSources(), () => Services.search.runBackgroundChecks(), - () => BrowserUsageTelemetry.reportInstallationTelemetry(), + () => { + if (AppConstants.MOZ_TELEMETRY_REPORTING) { + BrowserUsageTelemetry.reportInstallationTelemetry(); + } + }, ]; for (let task of idleTasks) { ===================================== toolkit/components/telemetry/app/TelemetryEnvironment.jsm ===================================== @@ -973,7 +973,9 @@ function EnvironmentCache() { p.push(this._addonBuilder.init()); this._currentEnvironment.profile = {}; - p.push(this._updateProfile()); + if (AppConstants.MOZ_TELEMETRY_REPORTING) { + p.push(this._updateProfile()); + } if (AppConstants.MOZ_BUILD_APP == "browser") { p.push(this._loadAttributionAsync()); } ===================================== toolkit/xre/nsAppRunner.cpp ===================================== @@ -2886,7 +2886,9 @@ static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir, rv = xpcom.Initialize(); NS_ENSURE_SUCCESS(rv, rv); +#if defined(MOZ_TELEMETRY_REPORTING) if (aProfileDir) mozilla::Telemetry::WriteFailedProfileLock(aProfileDir); +#endif rv = xpcom.SetWindowCreator(aNative); NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/47eb7d3… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/47eb7d3… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.7.0esr-12.0-1] fixup! Firefox preference overrides.
by Pier Angelo Vendrame (@pierov) 26 Jan '23

26 Jan '23
Pier Angelo Vendrame pushed to branch base-browser-102.7.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 3a562f05 by Pier Angelo Vendrame at 2023-01-26T08:05:13+00:00 fixup! Firefox preference overrides. Bug 40763: Stop using remote localized files in CFR (cherry picked from commit d9d4129b547e88bc8037a18b4dcc4868a8d009a1) - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -171,6 +171,9 @@ pref("browser.newtabpage.activity-stream.default.sites", ""); pref("browser.newtabpage.activity-stream.feeds.telemetry", false); pref("browser.newtabpage.activity-stream.telemetry", false); +// Disable fetching asrouter.ftl and related console errors (tor-browser#40763). +pref("browser.newtabpage.activity-stream.asrouter.useRemoteL10n", false); + // Disable moreFromMozilla pane in the preferences/settings (tor-browser#41292). pref("browser.preferences.moreFromMozilla", false); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3a562f0… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3a562f0… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.0-1] fixup! Firefox preference overrides.
by Pier Angelo Vendrame (@pierov) 26 Jan '23

26 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 3a194dcd by Pier Angelo Vendrame at 2023-01-26T08:04:56+00:00 fixup! Firefox preference overrides. Bug 40763: Stop using remote localized files in CFR (cherry picked from commit d9d4129b547e88bc8037a18b4dcc4868a8d009a1) - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -171,6 +171,9 @@ pref("browser.newtabpage.activity-stream.default.sites", ""); pref("browser.newtabpage.activity-stream.feeds.telemetry", false); pref("browser.newtabpage.activity-stream.telemetry", false); +// Disable fetching asrouter.ftl and related console errors (tor-browser#40763). +pref("browser.newtabpage.activity-stream.asrouter.useRemoteL10n", false); + // Disable moreFromMozilla pane in the preferences/settings (tor-browser#41292). pref("browser.preferences.moreFromMozilla", false); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3a194dc… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3a194dc… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.7.0esr-12.5-1] fixup! Firefox preference overrides.
by Pier Angelo Vendrame (@pierov) 26 Jan '23

26 Jan '23
Pier Angelo Vendrame pushed to branch base-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 69be75e3 by Pier Angelo Vendrame at 2023-01-26T08:01:15+00:00 fixup! Firefox preference overrides. Bug 40763: Stop using remote localized files in CFR (cherry picked from commit d9d4129b547e88bc8037a18b4dcc4868a8d009a1) - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -174,6 +174,9 @@ pref("browser.newtabpage.activity-stream.default.sites", ""); pref("browser.newtabpage.activity-stream.feeds.telemetry", false); pref("browser.newtabpage.activity-stream.telemetry", false); +// Disable fetching asrouter.ftl and related console errors (tor-browser#40763). +pref("browser.newtabpage.activity-stream.asrouter.useRemoteL10n", false); + // Disable moreFromMozilla pane in the preferences/settings (tor-browser#41292). pref("browser.preferences.moreFromMozilla", false); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/69be75e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/69be75e… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] fixup! Firefox preference overrides.
by Pier Angelo Vendrame (@pierov) 26 Jan '23

26 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: d9d4129b by Pier Angelo Vendrame at 2023-01-25T13:01:46+01:00 fixup! Firefox preference overrides. Bug 40763: Stop using remote localized files in CFR - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -174,6 +174,9 @@ pref("browser.newtabpage.activity-stream.default.sites", ""); pref("browser.newtabpage.activity-stream.feeds.telemetry", false); pref("browser.newtabpage.activity-stream.telemetry", false); +// Disable fetching asrouter.ftl and related console errors (tor-browser#40763). +pref("browser.newtabpage.activity-stream.asrouter.useRemoteL10n", false); + // Disable moreFromMozilla pane in the preferences/settings (tor-browser#41292). pref("browser.preferences.moreFromMozilla", false); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d9d4129… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d9d4129… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 12.5a2
by boklm (@boklm) 25 Jan '23

25 Jan '23
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: c70dae25 by Nicolas Vigier at 2023-01-25T20:06:07+01:00 alpha: new version, 12.5a2 - - - - - 29 changed files: - update_3/alpha/.htaccess - − update_3/alpha/12.0a5-12.5a1-linux32-ALL.xml - − update_3/alpha/12.0a5-12.5a1-linux64-ALL.xml - − update_3/alpha/12.0a5-12.5a1-macos-ALL.xml - − update_3/alpha/12.0a5-12.5a1-win32-ALL.xml - − update_3/alpha/12.0a5-12.5a1-win64-ALL.xml - + update_3/alpha/12.5a1-12.5a2-linux32-ALL.xml - + update_3/alpha/12.5a1-12.5a2-linux64-ALL.xml - + update_3/alpha/12.5a1-12.5a2-win32-ALL.xml - + update_3/alpha/12.5a1-12.5a2-win64-ALL.xml - − update_3/alpha/12.5a1-linux32-ALL.xml - − update_3/alpha/12.5a1-linux64-ALL.xml - − update_3/alpha/12.5a1-macos-ALL.xml - − update_3/alpha/12.5a1-win32-ALL.xml - − update_3/alpha/12.5a1-win64-ALL.xml - + update_3/alpha/12.5a2-linux32-ALL.xml - + update_3/alpha/12.5a2-linux64-ALL.xml - + update_3/alpha/12.5a2-win32-ALL.xml - + update_3/alpha/12.5a2-win64-ALL.xml - update_3/alpha/download-android-aarch64.json - update_3/alpha/download-android-armv7.json - update_3/alpha/download-android-x86.json - update_3/alpha/download-android-x86_64.json - update_3/alpha/download-linux-i686.json - update_3/alpha/download-linux-x86_64.json - update_3/alpha/download-macos.json - update_3/alpha/download-windows-i686.json - update_3/alpha/download-windows-x86_64.json - update_3/alpha/downloads.json Changes: ===================================== update_3/alpha/.htaccess ===================================== @@ -2,28 +2,22 @@ RewriteEngine On # bug 26569: Redirect pre-8.0a9 alpha users to a separate update directory RewriteRule ^[^/]+/8\.0a[12345678]/.* https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last] RewriteRule ^[^/]+/[4567]\..*/.* https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last] -RewriteRule ^[^/]+/12.5a1/ no-update.xml [last] -RewriteRule ^Linux_x86-gcc3/12.0a5/ALL 12.0a5-12.5a1-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 12.5a1-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/ 12.5a1-linux32-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/12.0a5/ALL 12.0a5-12.5a1-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 12.5a1-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 12.5a1-linux64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/12.0a5/ALL 12.0a5-12.5a1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 12.5a1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 12.5a1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/12.0a5/ALL 12.0a5-12.5a1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 12.5a1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 12.5a1-macos-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/12.0a5/ALL 12.0a5-12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/ 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/12.0a5/ALL 12.0a5-12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/ 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/12.0a5/ALL 12.0a5-12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/ 12.5a1-win32-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/12.0a5/ALL 12.0a5-12.5a1-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 12.5a1-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 12.5a1-win64-ALL.xml [last] +RewriteRule ^[^/]+/12.5a2/ no-update.xml [last] +RewriteRule ^Linux_x86-gcc3/12.5a1/ALL 12.5a1-12.5a2-linux32-ALL.xml [last] +RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 12.5a2-linux32-ALL.xml [last] +RewriteRule ^Linux_x86-gcc3/ 12.5a2-linux32-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/12.5a1/ALL 12.5a1-12.5a2-linux64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 12.5a2-linux64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 12.5a2-linux64-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/12.5a1/ALL 12.5a1-12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/ 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/12.5a1/ALL 12.5a1-12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/ 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/12.5a1/ALL 12.5a1-12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/ 12.5a2-win32-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/12.5a1/ALL 12.5a1-12.5a2-win64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 12.5a2-win64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 12.5a2-win64-ALL.xml [last] ===================================== update_3/alpha/12.0a5-12.5a1-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux32-12.5a…" hashFunction="SHA512" hashValue="55cb878db080d8150f41130195609a9a4a01bf040ebe7633b34fdae70a1eb2877172819021041435fc61bef5ae65bc4afe59cef2efbe9ef5eddc1114bea8d174" size="112397387" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux32-12.0a…" hashFunction="SHA512" hashValue="b4c70414ba7ac8f609b07572558b2faf51ce616e407cebbf7ea46affd148023d7ee827a7de9465994d638019d89c1269a14134ff8360c30af515c544ff8cf021" size="8912642" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.0a5-12.5a1-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux64-12.5a…" hashFunction="SHA512" hashValue="9fc89bd7841d943a138809cee6063980c7021544babcb7ccbd669e102b39cb3fa38d235a84789793067dc4de5141354f549fe4782a6c0d82d88dbe955b961fac" size="111817535" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux64-12.0a…" hashFunction="SHA512" hashValue="4275cd31ba06a3869b50eee83299cf8a5ac8d6453f420626c1fe173b81c2aed7f5a28915b22a3d7951beef9cdffbd71a1e9fdb6f7acdeb627519a4dddf06bf92" size="8296375" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.0a5-12.5a1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-macos-12.5a1_…" hashFunction="SHA512" hashValue="54e506ec0631cba27ca5d4d543b05ff4e525b5579eb61c8f7fd490f6098a105d16114cab8d5504cb1ba3e82c7cb932d7ec0b249810a986cbf6d326db2140bdcd" size="146125201" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-macos-12.0a5-…" hashFunction="SHA512" hashValue="35f6ab0975cbae485507441e09722745190acb72728e5decdbb671f8d734c326526b477dd912ae02ae50ac0a33503b32cf13987da491bf8f6dcd27b4862dd1d9" size="29946813" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.0a5-12.5a1-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win32-12.5a1_…" hashFunction="SHA512" hashValue="5e1e09f4cd4e219be6076c4dd8dec7a6b7e3c485c086cff66203e8a3717b00e0c713238012999e507a97f0bbe9efc58a8de9401eac3bc3d1d0205885a97ebe45" size="99826366" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win32-12.0a5-…" hashFunction="SHA512" hashValue="61351907d0400d122739aa8eaf57058013848b877c0d15013aadf9ed89da1c510a7389aa69aedef1db5c3ce5f8e170bf08ffe29fc0ff0bc6068109937a91fc29" size="9810219" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.0a5-12.5a1-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win64-12.5a1_…" hashFunction="SHA512" hashValue="22cd2ed84f5787c243bea9f36f590765a9e9596b6c3c04ac7442e036b7b9f22de3e8c3e0e9a2956085422760df78e3efb5f8347e4668628c4d35cceaf2831aa0" size="100285308" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win64-12.0a5-…" hashFunction="SHA512" hashValue="4939406d60d2d4c538fe03f4dd03e2b54f937c510a54c0038f6c01234e2406976a8cf1322a33a40ce899b8ae5d14f68233318307b607f896e4d4138408118299" size="8773997" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.5a1-12.5a2-linux32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux32-12.5a…" hashFunction="SHA512" hashValue="f5bf07f5a8b2456c4579370b6a3ba5bcaf70d27213a710c81bbcef52976d69b349cc2df6a31f26bc18031e782b95cf27c711c6df98772d72342f256c398e00c7" size="112946834" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux32-12.5a…" hashFunction="SHA512" hashValue="e0f1650ba1ca5ec1476197c81a52596f8077ca692762717f797cf35c80c47b6105423d6adc85dde8188a173dc1156c32ecbb6934ce520aac01187b9e53485978" size="8121180" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.5a1-12.5a2-linux64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux64-12.5a…" hashFunction="SHA512" hashValue="c10986b1ee838a29089514edc391b8dde1ccd30c3446f6715520e27d8e9b3d373700441bf7b922b8fb30c9d8b7b1e124bd2566fc1a752f0007e8618cb6373beb" size="112370570" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux64-12.5a…" hashFunction="SHA512" hashValue="2eb2278a05a1ee587bd467db69702c916ca2d5dcd21091dbee92be0c5fe891ac7c60a1b683f04dcf534327dfc5f61543352830d5d5572ad9a705757f7974ff8b" size="7647523" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.5a1-12.5a2-win32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win32-12.5a2_…" hashFunction="SHA512" hashValue="0bc33a6dc138d3d9c4f3db1b7b363ebb98b5e2e8255c6ab74ebad2767b56d26b084a87ef713ec991d0a3d51aa7b7551ced791e6d490b22062b069d51b6496790" size="100378977" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win32-12.5a1-…" hashFunction="SHA512" hashValue="2e3e1b2f68784deeadbaee3ffba2e358f72a4ca51e8af9e367095a315568526432f62a771da89d9a428b101386165c096417a174cd9c40473b5e884e77363b54" size="9215003" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.5a1-12.5a2-win64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win64-12.5a2_…" hashFunction="SHA512" hashValue="8ce0399863b65ab0ebaf0531544653f65be6c192d241c781e0cbeb4decef188988f061960dee3397c7aed3cc5d0828c5bcb141347b79e541235868bf902cae51" size="100840495" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win64-12.5a1-…" hashFunction="SHA512" hashValue="711fef7a36720f64d07e9f194e65d63e9b54dec620f64661b6c030476a98095914e4c62242990d95a7620de66b0a4182c84948c043abe7f876af335057b6f664" size="8332677" type="partial"></patch></update></updates> ===================================== update_3/alpha/12.5a1-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux32-12.5a…" hashFunction="SHA512" hashValue="55cb878db080d8150f41130195609a9a4a01bf040ebe7633b34fdae70a1eb2877172819021041435fc61bef5ae65bc4afe59cef2efbe9ef5eddc1114bea8d174" size="112397387" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a1-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-linux64-12.5a…" hashFunction="SHA512" hashValue="9fc89bd7841d943a138809cee6063980c7021544babcb7ccbd669e102b39cb3fa38d235a84789793067dc4de5141354f549fe4782a6c0d82d88dbe955b961fac" size="111817535" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-macos-12.5a1_…" hashFunction="SHA512" hashValue="54e506ec0631cba27ca5d4d543b05ff4e525b5579eb61c8f7fd490f6098a105d16114cab8d5504cb1ba3e82c7cb932d7ec0b249810a986cbf6d326db2140bdcd" size="146125201" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a1-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win32-12.5a1_…" hashFunction="SHA512" hashValue="5e1e09f4cd4e219be6076c4dd8dec7a6b7e3c485c086cff66203e8a3717b00e0c713238012999e507a97f0bbe9efc58a8de9401eac3bc3d1d0205885a97ebe45" size="99826366" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a1-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.5a1" appVersion="12.5a1" platformVersion="102.6.0" buildID="20220706020101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a1" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a1/tor-browser-win64-12.5a1_…" hashFunction="SHA512" hashValue="22cd2ed84f5787c243bea9f36f590765a9e9596b6c3c04ac7442e036b7b9f22de3e8c3e0e9a2956085422760df78e3efb5f8347e4668628c4d35cceaf2831aa0" size="100285308" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a2-linux32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux32-12.5a…" hashFunction="SHA512" hashValue="f5bf07f5a8b2456c4579370b6a3ba5bcaf70d27213a710c81bbcef52976d69b349cc2df6a31f26bc18031e782b95cf27c711c6df98772d72342f256c398e00c7" size="112946834" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a2-linux64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-linux64-12.5a…" hashFunction="SHA512" hashValue="c10986b1ee838a29089514edc391b8dde1ccd30c3446f6715520e27d8e9b3d373700441bf7b922b8fb30c9d8b7b1e124bd2566fc1a752f0007e8618cb6373beb" size="112370570" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a2-win32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win32-12.5a2_…" hashFunction="SHA512" hashValue="0bc33a6dc138d3d9c4f3db1b7b363ebb98b5e2e8255c6ab74ebad2767b56d26b084a87ef713ec991d0a3d51aa7b7551ced791e6d490b22062b069d51b6496790" size="100378977" type="complete"></patch></update></updates> ===================================== update_3/alpha/12.5a2-win64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.5a2" appVersion="12.5a2" platformVersion="102.7.0" buildID="20230706030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-125a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-125a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.5a2/tor-browser-win64-12.5a2_…" hashFunction="SHA512" hashValue="8ce0399863b65ab0ebaf0531544653f65be6c192d241c781e0cbeb4decef188988f061960dee3397c7aed3cc5d0828c5bcb141347b79e541235868bf902cae51" size="100840495" type="complete"></patch></update></updates> ===================================== update_3/alpha/download-android-aarch64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","version":"12.5a1"} +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-aa…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-aa…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-android-armv7.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","version":"12.5a1"} +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-ar…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-ar…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-android-x86.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-x8…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-x8…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-x8…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-x8…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-android-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-x8…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-x8…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-x8…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-12.5a2-android-x8…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-linux-i686.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux32-12.5a1_AL…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux32-12.5a1_AL…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux32-12.5a2_AL…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux32-12.5a2_AL…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux64-12.5a1_AL…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux64-12.5a1_AL…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux64-12.5a2_AL…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux64-12.5a2_AL…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/TorBrowser-12.5a1-macos_ALL.d…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/TorBrowser-12.5a1-macos_ALL.d…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/TorBrowser-12.5a2-macos_ALL.d…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/TorBrowser-12.5a2-macos_ALL.d…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-windows-i686.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-12.5a1_ALL…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-12.5a1_ALL…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-12.5a2_ALL…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-12.5a2_ALL…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-win64-12.5…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-win64-12.5…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-win64-12.5…","git_tag":"tbb-12.5a2-build1","sig":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-win64-12.5…","version":"12.5a2"} \ No newline at end of file ===================================== update_3/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux32-12.5a1_AL…","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux32-12.5a1_AL…"}},"linux64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux64-12.5a1_AL…","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-linux64-12.5a1_AL…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a1/TorBrowser-12.5a1-macos_ALL.d…","sig":"https://dist.torproject.org/torbrowser/12.5a1/TorBrowser-12.5a1-macos_ALL.d…"}},"win32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-12.5a1_ALL…","sig":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-12.5a1_ALL…"}},"win64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-win64-12.5…","sig":"https://dist.torproject.org/torbrowser/12.5a1/torbrowser-install-win64-12.5…"}}},"tag":"tbb-12.5a1-build1","version":"12.5a1"} \ No newline at end of file +{"downloads":{"linux32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux32-12.5a2_AL…","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux32-12.5a2_AL…"}},"linux64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux64-12.5a2_AL…","sig":"https://dist.torproject.org/torbrowser/12.5a2/tor-browser-linux64-12.5a2_AL…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a2/TorBrowser-12.5a2-macos_ALL.d…","sig":"https://dist.torproject.org/torbrowser/12.5a2/TorBrowser-12.5a2-macos_ALL.d…"}},"win32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-12.5a2_ALL…","sig":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-12.5a2_ALL…"}},"win64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-win64-12.5…","sig":"https://dist.torproject.org/torbrowser/12.5a2/torbrowser-install-win64-12.5…"}}},"tag":"tbb-12.5a2-build1","version":"12.5a2"} \ No newline at end of file View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Deleted tag privacy-browser-102.7.0esr-12.0-1-build1
by Pier Angelo Vendrame (@pierov) 25 Jan '23

25 Jan '23
Pier Angelo Vendrame deleted tag privacy-browser-102.7.0esr-12.0-1-build1 at The Tor Project / Applications / Tor Browser -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag privacy-browser-102.7.0esr-12.0-1-build1
by Pier Angelo Vendrame (@pierov) 25 Jan '23

25 Jan '23
Pier Angelo Vendrame pushed new tag privacy-browser-102.7.0esr-12.0-1-build1 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/privacy-b… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] 3 commits: fixup! Bug 31740: Remove some unnecessary RemoteSettings instances
by Pier Angelo Vendrame (@pierov) 24 Jan '23

24 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 9514e0c6 by cypherpunks1 at 2023-01-24T14:20:38+00:00 fixup! Bug 31740: Remove some unnecessary RemoteSettings instances Disable activity stream - - - - - fc08631d by cypherpunks1 at 2023-01-24T14:20:38+00:00 fixup! Bug 40002: Remove about:ion Remove this._monitorIonPref() and this._monitorIonStudies() from BrowserGlue - - - - - ad5720b0 by cypherpunks1 at 2023-01-24T14:20:39+00:00 fixup! Firefox preference overrides. Disable toolkit.telemetry.enabled on all builds, set webextensions.storage.sync.enabled to false - - - - - 2 changed files: - browser/app/profile/001-base-profile.js - browser/components/BrowserGlue.jsm Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -119,7 +119,7 @@ pref("datareporting.healthreport.uploadEnabled", false); pref("datareporting.policy.dataSubmissionEnabled", false); // Make sure Unified Telemetry is really disabled, see: #18738. pref("toolkit.telemetry.unified", false); -pref("toolkit.telemetry.enabled", false); +pref("toolkit.telemetry.enabled", false, locked); pref("toolkit.telemetry.server", "data:,"); pref("toolkit.telemetry.archive.enabled", false); pref("toolkit.telemetry.updatePing.enabled", false); // Make sure updater telemetry is disabled; see #25909. @@ -419,6 +419,8 @@ pref("extensions.postDownloadThirdPartyPrompt", false); // Therefore, do not allow download of additional language packs. They are not a // privacy/security threat, we are disabling them for UX reasons. See bug 41377. pref("intl.multilingual.downloadEnabled", false); +// Disk activity: Disable storage.sync (tor-browser#41424) +pref("webextensions.storage.sync.enabled", false); // Toolbar layout pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"PersonalToolbar\":[\"personal-bookmarks\"],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"urlbar-container\",\"security-level-button\",\"new-identity-button\",\"downloads-button\"],\"TabsToolbar\":[\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"toolbar-menubar\":[\"menubar-items\"],\"PanelUI-contents\":[\"home-button\",\"edit-controls\",\"zoom-controls\",\"new-window-button\",\"save-page-button\",\"print-button\",\"bookmarks-menu-button\",\"history-panelmenu\",\"find-button\",\"preferences-button\",\"add-ons-button\",\"developer-button\"],\"addon-bar\":[\"addonbar-closebutton\",\"status-bar\"]},\"seen\":[\"developer-button\"],\"dirtyAreaCache\":[\"PersonalToolbar\",\"nav-bar\",\"TabsToolbar\",\"toolbar-menubar\"],\"currentVersion\":14,\"newElementCount\":1}"); ===================================== browser/components/BrowserGlue.jsm ===================================== @@ -21,9 +21,6 @@ XPCOMUtils.defineLazyModuleGetters(this, { ActorManagerParent: "resource://gre/modules/ActorManagerParent.jsm", AddonManager: "resource://gre/modules/AddonManager.jsm", AppMenuNotifications: "resource://gre/modules/AppMenuNotifications.jsm", - ASRouterDefaultConfig: - "resource://activity-stream/lib/ASRouterDefaultConfig.jsm", - ASRouterNewTabHook: "resource://activity-stream/lib/ASRouterNewTabHook.jsm", ASRouter: "resource://activity-stream/lib/ASRouter.jsm", AsyncShutdown: "resource://gre/modules/AsyncShutdown.jsm", BackgroundUpdate: "resource://gre/modules/BackgroundUpdate.jsm", @@ -738,27 +735,6 @@ let JSWINDOWACTORS = { matches: ["about:studies*"], }, - ASRouter: { - parent: { - moduleURI: "resource:///actors/ASRouterParent.jsm", - }, - child: { - moduleURI: "resource:///actors/ASRouterChild.jsm", - events: { - // This is added so the actor instantiates immediately and makes - // methods available to the page js on load. - DOMDocElementInserted: {}, - }, - }, - matches: [ - "about:home*", - "about:newtab*", - "about:welcome*", - "about:privatebrowsing", - ], - remoteTypes: ["privilegedabout"], - }, - SwitchDocumentDirection: { child: { moduleURI: "resource:///actors/SwitchDocumentDirectionChild.jsm", @@ -2058,7 +2034,6 @@ BrowserGlue.prototype = { () => NewTabUtils.uninit(), () => Normandy.uninit(), () => RFPHelper.uninit(), - () => ASRouterNewTabHook.destroy(), () => UpdateListener.reset(), () => OnionAliasStore.uninit(), ]; @@ -2400,8 +2375,6 @@ BrowserGlue.prototype = { this._monitorScreenshotsPref(); this._monitorWebcompatReporterPref(); this._monitorHTTPSOnlyPref(); - this._monitorIonPref(); - this._monitorIonStudies(); this._setupSearchDetection(); this._monitorGPCPref(); @@ -2797,12 +2770,6 @@ BrowserGlue.prototype = { }, }, - { - task: () => { - ASRouterNewTabHook.createInstance(ASRouterDefaultConfig()); - }, - }, - { condition: AppConstants.MOZ_UPDATE_AGENT, task: () => { View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/56584b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/56584b… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40752: Fix urls in download-android-*.json files
by boklm (@boklm) 24 Jan '23

24 Jan '23
boklm pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build Commits: 855a1723 by Nicolas Vigier at 2023-01-24T13:05:55+01:00 Bug 40752: Fix urls in download-android-*.json files Fix the regexp used to find android apk files (to exclude .apk.asc files). - - - - - 1 changed file: - tools/update-responses/update_responses Changes: ===================================== tools/update-responses/update_responses ===================================== @@ -170,7 +170,7 @@ sub get_perplatform_downloads { $os = 'windows-x86_64'; } elsif ($file =~ m/^$config->{appname_bundle_win32}-${version}_(.+).exe$/) { $os = 'windows-i686'; - } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk/) { + } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk$/) { $os = $1; } else { next; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 40752: Fix urls in download-android-*.json files
by boklm (@boklm) 24 Jan '23

24 Jan '23
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: f6f4afaa by Nicolas Vigier at 2023-01-24T13:04:03+01:00 Bug 40752: Fix urls in download-android-*.json files Fix the regexp used to find android apk files (to exclude .apk.asc files). - - - - - 1 changed file: - tools/update-responses/update_responses Changes: ===================================== tools/update-responses/update_responses ===================================== @@ -170,7 +170,7 @@ sub get_perplatform_downloads { $os = 'windows-x86_64'; } elsif ($file =~ m/^$config->{appname_bundle_win32}-${version}_(.+).exe$/) { $os = 'windows-i686'; - } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk/) { + } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk$/) { $os = $1; } else { next; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] fixup! Bug 4234: Use the Firefox Update Process for Tor Browser.
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 56584b5d by Pier Angelo Vendrame at 2023-01-23T19:32:07+01:00 fixup! Bug 4234: Use the Firefox Update Process for Tor Browser. Bug 41540: Do not show the build ID for alphas - - - - - 1 changed file: - browser/components/preferences/main.js Changes: ===================================== browser/components/preferences/main.js ===================================== @@ -556,14 +556,8 @@ var gMainPane = { // Initialize the Firefox Updates section. let version = AppConstants.TOR_BROWSER_VERSION; - // Include the build ID if this is an "a#" (nightly) build - if (/a\d+$/.test(version)) { - let buildID = Services.appinfo.appBuildID; - let year = buildID.slice(0, 4); - let month = buildID.slice(4, 6); - let day = buildID.slice(6, 8); - version += ` (${year}-${month}-${day})`; - } + // Tor Browser: do not include the build ID in our alphas, since they are + // not actually related to the build date. // Append "(32-bit)" or "(64-bit)" build architecture to the version number: let bundle = Services.strings.createBundle( View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/56584b5… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/56584b5… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.0-1] fixup! Add TorStrings module for localization
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: c6a6f09b by emma peel at 2023-01-23T18:01:22+00:00 fixup! Add TorStrings module for localization replace with more common expression available in wikipedia. reported by translator dfiguera at https://hosted.weblate.org/translate/tor/tb-browseronboardingproperties/en/…, thanks! (cherry picked from commit ff331e83fd3ccced869cff76702eea320fe44e2f) - - - - - 1 changed file: - toolkit/torbutton/chrome/locale/en-US/browserOnboarding.properties Changes: ===================================== toolkit/torbutton/chrome/locale/en-US/browserOnboarding.properties ===================================== @@ -15,7 +15,7 @@ onboarding.tour-tor-privacy.button=Go to Tor Network onboarding.tour-tor-network=Tor Network onboarding.tour-tor-network.title=Travel a decentralized network. -onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no one point of failure or centralized entity you need to trust in order to enjoy the internet privately. +onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no single point of failure or centralized entity you need to trust in order to enjoy the internet privately. onboarding.tour-tor-network.description-para2=NEW: Tor Network Settings, including the ability to request bridges where Tor is blocked, can now be found in Preferences. onboarding.tour-tor-network.action-button=Adjust Your Tor Network Settings onboarding.tour-tor-network.button=Go to Circuit Display View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c6a6f09… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c6a6f09… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.7.0esr-12.5-1] fixup! Base Browser's .mozconfigs.
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch base-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 07f08e2e by Pier Angelo Vendrame at 2023-01-23T18:59:27+01:00 fixup! Base Browser&#39;s .mozconfigs. Bug 41587: Disable the updater for Base Browser - - - - - 1 changed file: - browser/config/mozconfigs/base-browser Changes: ===================================== browser/config/mozconfigs/base-browser ===================================== @@ -16,6 +16,9 @@ ac_add_options --enable-rust-simd ac_add_options --enable-bundled-fonts +# See bug #41587 +ac_add_options --disable-updater + ac_add_options --disable-tests ac_add_options --disable-debug View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/07f08e2… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/07f08e2… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] 2 commits: fixup! Base Browser's .mozconfigs.
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: f22c8cc1 by Pier Angelo Vendrame at 2023-01-23T18:52:03+01:00 fixup! Base Browser&#39;s .mozconfigs. Bug 41587: Disable the updater for Base Browser - - - - - 3da2c5c8 by Pier Angelo Vendrame at 2023-01-23T18:52:04+01:00 fixup! TB3: Tor Browser&#39;s official .mozconfigs. Bug 41587: Disable the updater for Base Browser - - - - - 0 changed files: Changes: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ff331e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ff331e… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] fixup! Add TorStrings module for localization
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: ff331e83 by emma peel at 2023-01-23T18:49:12+01:00 fixup! Add TorStrings module for localization replace with more common expression available in wikipedia. reported by translator dfiguera at https://hosted.weblate.org/translate/tor/tb-browseronboardingproperties/en/…, thanks! - - - - - 1 changed file: - toolkit/torbutton/chrome/locale/en-US/browserOnboarding.properties Changes: ===================================== toolkit/torbutton/chrome/locale/en-US/browserOnboarding.properties ===================================== @@ -15,7 +15,7 @@ onboarding.tour-tor-privacy.button=Go to Tor Network onboarding.tour-tor-network=Tor Network onboarding.tour-tor-network.title=Travel a decentralized network. -onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no one point of failure or centralized entity you need to trust in order to enjoy the internet privately. +onboarding.tour-tor-network.description=Tor Browser connects you to the Tor network run by thousands of volunteers around the world. Unlike a VPN, there’s no single point of failure or centralized entity you need to trust in order to enjoy the internet privately. onboarding.tour-tor-network.description-para2=NEW: Tor Network Settings, including the ability to request bridges where Tor is blocked, can now be found in Preferences. onboarding.tour-tor-network.action-button=Adjust Your Tor Network Settings onboarding.tour-tor-network.button=Go to Circuit Display View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ff331e8… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ff331e8… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 40731: Update torbutton directory to apply namecoin-torbutton.patch
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 76fbfc74 by Nicolas Vigier at 2023-01-23T18:10:58+01:00 Bug 40731: Update torbutton directory to apply namecoin-torbutton.patch - - - - - 1 changed file: - projects/firefox/build Changes: ===================================== projects/firefox/build ===================================== @@ -94,7 +94,7 @@ fi [% END -%] [% IF c("var/namecoin") %] - pushd toolkit/torproject/torbutton + pushd toolkit/torbutton patch -p1 < $rootdir/namecoin-torbutton.patch popd [% END %] View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-12.0] 2 commits: Bug 40747: Remove empty line at the top of sha256sums-unsigned-build.txt
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build Commits: 76ea72c2 by Nicolas Vigier at 2023-01-23T17:47:56+01:00 Bug 40747: Remove empty line at the top of sha256sums-unsigned-build.txt - - - - - 6c1adab8 by Nicolas Vigier at 2023-01-23T17:48:08+01:00 Bug 40748: Remove warning in dmg2mar when sha256sums-unsigned-build.txt contains an empty line - - - - - 2 changed files: - projects/release/build - tools/dmg2mar Changes: ===================================== projects/release/build ===================================== @@ -51,7 +51,7 @@ RewriteRule ^sha256sums.incrementals.txt.asc$ sha256sums-unsigned-build.incremen EOF # empty any existing sh256sums file -echo > sha256sums-unsigned-build.txt +echo -n > sha256sums-unsigned-build.txt # concat sha256sum entry for each file in set for i in $(ls -1 *.exe *.tar.xz *.dmg *.mar *.zip *.tar.gz *.apk *.json | grep -v '\.incremental\.mar$' | sort) do ===================================== tools/dmg2mar ===================================== @@ -95,6 +95,7 @@ sub get_dmg_files_from_sha256sums { my @files; foreach my $line (read_file('sha256sums-unsigned-build.txt')) { my (undef, $filename) = split ' ', $line; + next unless $filename; chomp $filename; next unless $filename =~ m/^$appname_dmg-(.+)-macos_(.+)\.dmg$/; push @files, { filename => $filename, version => $1, lang => $2 }; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 40747: Remove empty line at the top of sha256sums-unsigned-build.txt
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 7f1fcca6 by Nicolas Vigier at 2023-01-23T17:46:39+01:00 Bug 40747: Remove empty line at the top of sha256sums-unsigned-build.txt - - - - - 80d457f7 by Nicolas Vigier at 2023-01-23T17:46:42+01:00 Bug 40748: Remove warning in dmg2mar when sha256sums-unsigned-build.txt contains an empty line - - - - - 2 changed files: - projects/release/build - tools/dmg2mar Changes: ===================================== projects/release/build ===================================== @@ -51,7 +51,7 @@ RewriteRule ^sha256sums.incrementals.txt.asc$ sha256sums-unsigned-build.incremen EOF # empty any existing sh256sums file -echo > sha256sums-unsigned-build.txt +echo -n > sha256sums-unsigned-build.txt # concat sha256sum entry for each file in set for i in $(ls -1 *.exe *.tar.xz *.dmg *.mar *.zip *.tar.gz *.apk *.json | grep -v '\.incremental\.mar$' | sort) do ===================================== tools/dmg2mar ===================================== @@ -95,6 +95,7 @@ sub get_dmg_files_from_sha256sums { my @files; foreach my $line (read_file('sha256sums-unsigned-build.txt')) { my (undef, $filename) = split ' ', $line; + next unless $filename; chomp $filename; next unless $filename =~ m/^$appname_dmg-(.+)-macos_(.+)\.dmg$/; push @files, { filename => $filename, version => $1, lang => $2 }; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40723: Use tor-browser-update-responses.git in upload-update_responses-to-staticiforme
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build Commits: 98053ed8 by Nicolas Vigier at 2023-01-19T13:08:57+01:00 Bug 40723: Use tor-browser-update-responses.git in upload-update_responses-to-staticiforme - - - - - 6 changed files: - .gitlab/issue_templates/Release Prep - Alpha.md - .gitlab/issue_templates/Release Prep - Stable.md - tools/signing/do-all-signing - tools/signing/functions - + tools/signing/set-config.update-responses - tools/signing/upload-update_responses-to-staticiforme Changes: ===================================== .gitlab/issue_templates/Release Prep - Alpha.md ===================================== @@ -210,6 +210,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - `ssh_host_macos_signer` : ssh hostname of macOS signing machine - [ ] `tor-browser-build/tools/signing/set-config.macos-notarization` - `macos_notarization_user` : the email login for a tor notariser Apple Developer account + - [ ] `set-config.update-responses` + - `update_responses_repository_dir` : directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git` - [ ] `tor-browser-build/tools/signing/set-config.tbb-version` - `tbb_version` : tor browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`) - `tbb_version_build` : the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`) @@ -230,7 +232,7 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - [ ] `/srv/cdn-master.torproject.org/htdocs/aus1/torbrowser` - [ ] `/srv/dist-master.torproject.org/htdocs/torbrowser` - [ ] Static update components : `static-update-component cdn.torproject.org && static-update-component dist.torproject.org` - - [ ] Enable update responses : `./deploy_update_responses-alpha.sh` + - [ ] Enable update responses : `sudo -u tb-release ./deploy_update_responses-alpha.sh` - [ ] Publish APKs to Google Play: - Log into https://play.google.com/apps/publish - Select `Tor Browser (Alpha)` app ===================================== .gitlab/issue_templates/Release Prep - Stable.md ===================================== @@ -297,6 +297,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - [ ] `ssh_host_macos_signer` : ssh hostname of macOS signing machine - [ ] `tor-browser-build/tools/signing/set-config.macos-notarization` - [ ] `macos_notarization_user` : the email login for a tor notariser Apple Developer account + - [ ] `set-config.update-responses` + - `update_responses_repository_dir` : directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git` - [ ] `tor-browser-build/tools/signing/set-config.tbb-version` - [ ] `tbb_version` : tor browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`) - [ ] `tbb_version_build` : the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`) @@ -318,8 +320,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - [ ] `/srv/dist-master.torproject.org/htdocs/torbrowser` - [ ] Static update components : `static-update-component cdn.torproject.org && static-update-component dist.torproject.org` - [ ] Enable update responses : - - [ ] alpha: `./deploy_update_responses-alpha.sh` - - [ ] release: `./deploy_update_responses-release.sh` + - [ ] alpha: `sudo -u tb-release ./deploy_update_responses-alpha.sh` + - [ ] release: `sudo -u tb-release ./deploy_update_responses-release.sh` - [ ] ***(Android Only)*** : Publish APKs to Google Play: - [ ] Log into https://play.google.com/apps/publish - [ ] Select `Tor Browser` app ===================================== tools/signing/do-all-signing ===================================== @@ -2,6 +2,7 @@ set -e script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) source "$script_dir/functions" +source "$script_dir/set-config.update-responses" NON_INTERACTIVE=1 steps_dir="$signed_version_dir.steps" ===================================== tools/signing/functions ===================================== @@ -19,4 +19,16 @@ function check_torbrowser_version_var { return 0 } +function check_update_responses_repository_dir { + if test -z "$update_responses_repository_dir" || ! test -d "$update_responses_repository_dir" + then + cat << 'EOF' > /dev/stderr +$aus1_repository_dir is not defined, or the directory does not exist +You should clone git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git +and set $update_responses_repository_dir in set-config.update-responses +EOF + exit 1 + fi +} + . "$script_dir/set-config" ===================================== tools/signing/set-config.update-responses ===================================== @@ -0,0 +1,7 @@ +# You should clone git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git +# and uncomment the line setting update_responses_repository_dir. +# Don't forget to set user.email and user.name in your git config + +#update_responses_repository_dir=/path/to/tor-browser-update-responses.git + +check_update_responses_repository_dir ===================================== tools/signing/upload-update_responses-to-staticiforme ===================================== @@ -2,6 +2,7 @@ set -e script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) source "$script_dir/functions" +source "$script_dir/set-config.update-responses" check_torbrowser_version_var @@ -17,33 +18,40 @@ else popd > /dev/null fi -update_dir=/srv/aus1-master.torproject.org/htdocs/torbrowser/update_3 +cd $update_responses_repository_dir +git checkout main +git pull --ff-only +test -n "$(git status --porcelain=v1 | grep -v '^?')" \ + && exit_error 'update_responses_repository_dir has modified files' +cd update_3 +rm -Rf "$tbb_version_type" +tar -xf "$update_responses_tar" +git add "$tbb_version_type" +git commit -m "$tbb_version_type: new version, $tbb_version" +update_responses_commit=$(git log -1 --format=%H) + +update_dir=/srv/aus1-master.torproject.org/htdocs/torbrowser deploy_script=$(mktemp) trap "rm -Rf $deploy_script" EXIT cat << EOF > "$deploy_script" #!/bin/bash set -e -tmpdir="\$(mktemp -d)" +echo "Deploying version $tbb_version" +echo "update_responses_commit: $update_responses_commit" -trap "rm -Rf \$tmpdir" EXIT - -rm -Rf "$update_dir/$tbb_version_type.old" -test -d "$update_dir/$tbb_version_type" && \\ - mv -v "$update_dir/$tbb_version_type" "$update_dir/$tbb_version_type.old" - -tar -C "\$tmpdir" -xf ~/$update_responses_tar_filename -chmod 775 "\$tmpdir"/$tbb_version_type -chmod 664 "\$tmpdir"/$tbb_version_type/* "\$tmpdir"/$tbb_version_type/.htaccess -chgrp -R torwww "\$tmpdir"/$tbb_version_type -mv -v "\$tmpdir"/$tbb_version_type "$update_dir/$tbb_version_type" +cd "$update_dir" +git fetch +git checkout "$update_responses_commit" static-update-component aus1.torproject.org EOF chmod +x $deploy_script -scp -p "$update_responses_tar" "$ssh_host_staticiforme:" scp -p $deploy_script $ssh_host_staticiforme:deploy_update_responses-$tbb_version_type.sh +git push + echo 'To enable updates you can now run:' -echo " ssh $ssh_host_staticiforme ./deploy_update_responses-$tbb_version_type.sh" +echo " ssh $ssh_host_staticiforme" +echo " sudo -u tb-release ./deploy_update_responses-$tbb_version_type.sh" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.7.0esr-12.5-1] Bug 41542: Disable the creation of a default profile
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch base-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: a9f50c4e by Pier Angelo Vendrame at 2023-01-23T17:39:28+01:00 Bug 41542: Disable the creation of a default profile Firefox creates a profile as a fallback for old versions. However, we do not need this, so we want to prevent Firefox from creating the related directories. We comment out the code, but should Mozilla be interested in a compile-time flag, we could rewrite the patch to add one. See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174. - - - - - 1 changed file: - toolkit/profile/nsToolkitProfileService.cpp Changes: ===================================== toolkit/profile/nsToolkitProfileService.cpp ===================================== @@ -1578,6 +1578,12 @@ nsresult nsToolkitProfileService::SelectStartupProfile( rv = CreateDefaultProfile(getter_AddRefs(mCurrent)); if (NS_SUCCEEDED(rv)) { + // tor-browser#41542: We do not need to support legacy versions. + // For now, we just use an ifdef, but we could write a patch to disable + // this behavior through a build-time flag, should Mozilla be interested + // in taking it. + // See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174 +#ifndef BASE_BROWSER // If there is only one profile and it isn't meant to be the profile that // older versions of Firefox use then we must create a default profile // for older versions of Firefox to avoid the existing profile being @@ -1589,6 +1595,7 @@ nsresult nsToolkitProfileService::SelectStartupProfile( getter_AddRefs(newProfile)); SetNormalDefault(newProfile); } +#endif rv = Flush(); NS_ENSURE_SUCCESS(rv, rv); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a9f50c4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a9f50c4… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.7.0esr-12.5-1] Bug 41542: Disable the creation of a default profile
by Pier Angelo Vendrame (@pierov) 23 Jan '23

23 Jan '23
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser Commits: 65ab09ce by Pier Angelo Vendrame at 2023-01-20T18:26:28+01:00 Bug 41542: Disable the creation of a default profile Firefox creates a profile as a fallback for old versions. However, we do not need this, so we want to prevent Firefox from creating the related directories. We comment out the code, but should Mozilla be interested in a compile-time flag, we could rewrite the patch to add one. See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174. - - - - - 1 changed file: - toolkit/profile/nsToolkitProfileService.cpp Changes: ===================================== toolkit/profile/nsToolkitProfileService.cpp ===================================== @@ -1587,6 +1587,12 @@ nsresult nsToolkitProfileService::SelectStartupProfile( rv = CreateDefaultProfile(getter_AddRefs(mCurrent)); if (NS_SUCCEEDED(rv)) { + // tor-browser#41542: We do not need to support legacy versions. + // For now, we just use an ifdef, but we could write a patch to disable + // this behavior through a build-time flag, should Mozilla be interested + // in taking it. + // See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174 +#ifndef BASE_BROWSER // If there is only one profile and it isn't meant to be the profile that // older versions of Firefox use then we must create a default profile // for older versions of Firefox to avoid the existing profile being @@ -1598,6 +1604,7 @@ nsresult nsToolkitProfileService::SelectStartupProfile( getter_AddRefs(newProfile)); SetNormalDefault(newProfile); } +#endif rv = Flush(); NS_ENSURE_SUCCESS(rv, rv); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/65ab09c… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/65ab09c… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] 2 commits: Fix `Enable update responses` in `Release Prep - Stable.md`
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 631bcbc1 by Nicolas Vigier at 2023-01-23T17:33:40+01:00 Fix `Enable update responses` in `Release Prep - Stable.md` - - - - - 1a018371 by Nicolas Vigier at 2023-01-23T17:33:43+01:00 Bug 40723: Use tor-browser-update-responses.git in upload-update_responses-to-staticiforme - - - - - 6 changed files: - .gitlab/issue_templates/Release Prep - Alpha.md - .gitlab/issue_templates/Release Prep - Stable.md - tools/signing/do-all-signing - tools/signing/functions - + tools/signing/set-config.update-responses - tools/signing/upload-update_responses-to-staticiforme Changes: ===================================== .gitlab/issue_templates/Release Prep - Alpha.md ===================================== @@ -219,6 +219,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - `ssh_host_macos_signer` : ssh hostname of macOS signing machine - [ ] `tor-browser-build/tools/signing/set-config.macos-notarization` - `macos_notarization_user` : the email login for a tor notariser Apple Developer account + - [ ] `set-config.update-responses` + - `update_responses_repository_dir` : directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git` - [ ] `tor-browser-build/tools/signing/set-config.tbb-version` - `tbb_version` : tor browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`) - `tbb_version_build` : the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`) @@ -239,7 +241,7 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - [ ] `/srv/cdn-master.torproject.org/htdocs/aus1/torbrowser` - [ ] `/srv/dist-master.torproject.org/htdocs/torbrowser` - [ ] Static update components : `static-update-component cdn.torproject.org && static-update-component dist.torproject.org` - - [ ] Enable update responses : `./deploy_update_responses-alpha.sh` + - [ ] Enable update responses : `sudo -u tb-release ./deploy_update_responses-alpha.sh` - [ ] Publish APKs to Google Play: - Log into https://play.google.com/apps/publish - Select `Tor Browser (Alpha)` app ===================================== .gitlab/issue_templates/Release Prep - Stable.md ===================================== @@ -229,6 +229,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - `ssh_host_macos_signer` : ssh hostname of macOS signing machine - [ ] `tor-browser-build/tools/signing/set-config.macos-notarization` - `macos_notarization_user` : the email login for a tor notariser Apple Developer account + - [ ] `set-config.update-responses` + - `update_responses_repository_dir` : directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git` - [ ] `tor-browser-build/tools/signing/set-config.tbb-version` - `tbb_version` : tor browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`) - `tbb_version_build` : the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`) @@ -249,7 +251,7 @@ Tor Browser Alpha (and Nightly) are on the `main` branch, while Stable lives in - [ ] `/srv/cdn-master.torproject.org/htdocs/aus1/torbrowser` - [ ] `/srv/dist-master.torproject.org/htdocs/torbrowser` - [ ] Static update components : `static-update-component cdn.torproject.org && static-update-component dist.torproject.org` - - [ ] Enable update responses : `./deploy_update_responses-alpha.sh` + - [ ] Enable update responses : `sudo -u tb-release ./deploy_update_responses-release.sh` - [ ] Publish APKs to Google Play: - Log into https://play.google.com/apps/publish - Select `Tor Browser` app ===================================== tools/signing/do-all-signing ===================================== @@ -2,6 +2,7 @@ set -e script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) source "$script_dir/functions" +source "$script_dir/set-config.update-responses" NON_INTERACTIVE=1 steps_dir="$signed_version_dir.steps" ===================================== tools/signing/functions ===================================== @@ -19,4 +19,16 @@ function check_torbrowser_version_var { return 0 } +function check_update_responses_repository_dir { + if test -z "$update_responses_repository_dir" || ! test -d "$update_responses_repository_dir" + then + cat << 'EOF' > /dev/stderr +$aus1_repository_dir is not defined, or the directory does not exist +You should clone git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git +and set $update_responses_repository_dir in set-config.update-responses +EOF + exit 1 + fi +} + . "$script_dir/set-config" ===================================== tools/signing/set-config.update-responses ===================================== @@ -0,0 +1,7 @@ +# You should clone git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git +# and uncomment the line setting update_responses_repository_dir. +# Don't forget to set user.email and user.name in your git config + +#update_responses_repository_dir=/path/to/tor-browser-update-responses.git + +check_update_responses_repository_dir ===================================== tools/signing/upload-update_responses-to-staticiforme ===================================== @@ -2,6 +2,7 @@ set -e script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) source "$script_dir/functions" +source "$script_dir/set-config.update-responses" check_torbrowser_version_var @@ -17,33 +18,40 @@ else popd > /dev/null fi -update_dir=/srv/aus1-master.torproject.org/htdocs/torbrowser/update_3 +cd $update_responses_repository_dir +git checkout main +git pull --ff-only +test -n "$(git status --porcelain=v1 | grep -v '^?')" \ + && exit_error 'update_responses_repository_dir has modified files' +cd update_3 +rm -Rf "$tbb_version_type" +tar -xf "$update_responses_tar" +git add "$tbb_version_type" +git commit -m "$tbb_version_type: new version, $tbb_version" +update_responses_commit=$(git log -1 --format=%H) + +update_dir=/srv/aus1-master.torproject.org/htdocs/torbrowser deploy_script=$(mktemp) trap "rm -Rf $deploy_script" EXIT cat << EOF > "$deploy_script" #!/bin/bash set -e -tmpdir="\$(mktemp -d)" +echo "Deploying version $tbb_version" +echo "update_responses_commit: $update_responses_commit" -trap "rm -Rf \$tmpdir" EXIT - -rm -Rf "$update_dir/$tbb_version_type.old" -test -d "$update_dir/$tbb_version_type" && \\ - mv -v "$update_dir/$tbb_version_type" "$update_dir/$tbb_version_type.old" - -tar -C "\$tmpdir" -xf ~/$update_responses_tar_filename -chmod 775 "\$tmpdir"/$tbb_version_type -chmod 664 "\$tmpdir"/$tbb_version_type/* "\$tmpdir"/$tbb_version_type/.htaccess -chgrp -R torwww "\$tmpdir"/$tbb_version_type -mv -v "\$tmpdir"/$tbb_version_type "$update_dir/$tbb_version_type" +cd "$update_dir" +git fetch +git checkout "$update_responses_commit" static-update-component aus1.torproject.org EOF chmod +x $deploy_script -scp -p "$update_responses_tar" "$ssh_host_staticiforme:" scp -p $deploy_script $ssh_host_staticiforme:deploy_update_responses-$tbb_version_type.sh +git push + echo 'To enable updates you can now run:' -echo " ssh $ssh_host_staticiforme ./deploy_update_responses-$tbb_version_type.sh" +echo " ssh $ssh_host_staticiforme" +echo " sudo -u tb-release ./deploy_update_responses-$tbb_version_type.sh" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] Fix download-android-*.json files (tor-browser-build#40752)
by boklm (@boklm) 23 Jan '23

23 Jan '23
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 2937a020 by Nicolas Vigier at 2023-01-23T15:01:56+01:00 Fix download-android-*.json files (tor-browser-build#40752) - - - - - 5 changed files: - update_3/alpha/download-android-aarch64.json - update_3/alpha/download-android-armv7.json - update_3/release/download-android-aarch64.json - update_3/release/download-android-armv7.json - update_3/release/download-android-x86_64.json Changes: ===================================== update_3/alpha/download-android-aarch64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-aa…","version":"12.5a1"} ===================================== update_3/alpha/download-android-armv7.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","version":"12.5a1"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","git_tag":"tbb-12.5a1-build1","sig":"https://dist.torproject.org/torbrowser/12.5a1/tor-browser-12.5a1-android-ar…","version":"12.5a1"} ===================================== update_3/release/download-android-aarch64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","version":"12.0.2"} ===================================== update_3/release/download-android-armv7.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","version":"12.0.2"} ===================================== update_3/release/download-android-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","version":"12.0.2"} View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • ...
  • 835
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.