richard pushed to branch tor-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
5826b22f by Henry Wilkes at 2024-05-21T10:10:27+01:00
Bug 1858056 - Favor RawConfigParser.read_file instead of deprecated readfp r=saschanaz
readfp is deprecated since Python 3.2
Differential Revision: https://phabricator.services.mozilla.com/D190532
- - - - -
2 changed files:
- python/mach/mach/config.py
- testing/web-platform/unittestrunner.py
Changes:
=====================================
python/mach/mach/config.py
=====================================
@@ -309,7 +309,7 @@ class ConfigSettings(collections.abc.Mapping):
"""Load config data by reading file objects."""
for fp in fps:
- self._config.readfp(fp)
+ self._config.read_file(fp)
def write(self, fh):
"""Write the config to a file object."""
=====================================
testing/web-platform/unittestrunner.py
=====================================
@@ -49,7 +49,7 @@ class ReplaceRequirements(object):
parser = configparser.ConfigParser()
path = os.path.join(self.tox_path, "tox.ini")
with open(path) as f:
- parser.readfp(f)
+ parser.read_file(f)
deps = parser.get("testenv", "deps")
dep_re = re.compile("(?:.*:\s*)?-r(.*)")
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5826b22…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5826b22…
You're receiving this email because of your account on gitlab.torproject.org.
Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android
Commits:
06b84467 by Pier Angelo Vendrame at 2024-05-28T15:01:21+00:00
fixup! Modify build system
Bug 42581: Check if a file exists before trying to sign it.
- - - - -
1 changed file:
- fenix/tools/tba-sign-devbuilds.sh
Changes:
=====================================
fenix/tools/tba-sign-devbuilds.sh
=====================================
@@ -29,6 +29,9 @@ fi
sign () {
apk="$(realpath $1)"
out="$apk"
+ if [ ! -f "$apk" ]; then
+ return
+ fi
out="${out/unsigned/signed}"
aligned="$apk"
aligned="${aligned/unsigned/aligned}"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/06b…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/06b…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
c37f7e92 by Pier Angelo Vendrame at 2024-05-28T16:45:15+02:00
Bug 41150: Do not check for SSE2 in the Windows installer anymore.
Tor Browser requires SSE2, so a long time ago we added a check on the
Windows installer to warn users in case their machine did not support
this instruction set.
However, Windows 7 is the minimum OS we support, and from 2018 it also
requires SSE2. Moreover, 14.0 will require Windows 10.
We are going to add translations for the installer, and at this point
it makes more sense to remove this check, rather than asking
translators to translate a messages nobody will see in a few months
from now.
- - - - -
1 changed file:
- projects/browser/windows-installer/common.nsh
Changes:
=====================================
projects/browser/windows-installer/common.nsh
=====================================
@@ -66,15 +66,6 @@ Function CheckRequirements
SetErrorLevel 1
Quit
${EndIf}
-
- ; Don't install on systems that don't support SSE2. The parameter value of
- ; 10 is for PF_XMMI64_INSTRUCTIONS_AVAILABLE which will check whether the
- ; SSE2 instruction set is available.
- System::Call "kernel32::IsProcessorFeaturePresent(i 10)i .R7"
- ${If} "$R7" == "0"
- MessageBox MB_OK|MB_ICONSTOP "${PROJECT_NAME} requires a processor with SSE2 support."
- Quit
- ${EndIf}
FunctionEnd
Function CheckIfTargetDirectoryExists
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
80452869 by Pier Angelo Vendrame at 2024-05-28T16:41:13+02:00
Bug 41149: Add be, bg, and pt-PT to nightlies.
Also, add support for skipping languages when they are evaluated as
empty strings after being processed as templates.
We already process them for Japanese, but with this change we will be
able to enable/disable languages for specific channels.
Also, fix a typo in the "id" language code in the map we use to
associate language names to codes for NSIS.
- - - - -
3 changed files:
- projects/browser/windows-installer/language-map.sh
- projects/firefox-l10n/config
- rbm.conf
Changes:
=====================================
projects/browser/windows-installer/language-map.sh
=====================================
@@ -1,4 +1,9 @@
#!/bin/bash
+
+# Usually NSIS uses English name with capital first letter.
+# You can check the exact language names on NSIS's archive or here:
+# https://sourceforge.net/p/nsis/code/HEAD/tree/NSIS/trunk/Contrib/Language%2…
+
declare -A nsis_languages
nsis_languages[ar]="Arabic"
nsis_languages[ca]="Catalan"
@@ -13,7 +18,7 @@ nsis_languages[fr]="French"
nsis_languages[ga-IE]="ScotsGaelic"
nsis_languages[he]="Hebrew"
nsis_languages[hu]="Hungarian"
-nsis_languages[d]="Indonesian"
+nsis_languages[id]="Indonesian"
nsis_languages[is]="Icelandic"
nsis_languages[it]="Italian"
nsis_languages[ja]="Japanese"
@@ -37,3 +42,8 @@ nsis_languages[uk]="Ukrainian"
nsis_languages[vi]="Vietnamese"
nsis_languages[zh-CN]="SimpChinese"
nsis_languages[zh-TW]="TradChinese"
+
+# Currently nightly only
+nsis_languages[be]="Belarusian"
+nsis_languages[bg]="Bulgarian"
+nsis_languages[pt-PT]="Portuguese"
=====================================
projects/firefox-l10n/config
=====================================
@@ -29,6 +29,7 @@ steps:
my $locales = project_config($project, $locales_key, $options);
foreach my $loc (@$locales) {
my $locale = process_template($project, $loc, '.');
+ next unless $locale;
$locale =~ s/-r/-/;
$locale = "id" if ($is_android && $locale eq "in");
$locale = "he" if ($is_android && $locale eq "iw");
=====================================
rbm.conf
=====================================
@@ -149,6 +149,9 @@ var:
- vi
- zh-CN
- zh-TW
+ - '[% IF c("var/nightly") %]be[% END %]'
+ - '[% IF c("var/nightly") %]bg[% END %]'
+ - '[% IF c("var/nightly") %]pt-PT[% END %]'
locales_mobile:
- ar
- ca
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8…
--
This project does not include diff previews in email notifications.
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.
Pier Angelo Vendrame pushed to branch mullvad-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser
Commits:
bc36a149 by Pier Angelo Vendrame at 2024-05-27T10:27:12+02:00
fixup! Bug 42562: Normalized the Accepted Languages on Android.
Bug 42582: Use toLanguageTag() instead of toString()
- - - - -
37ecad70 by Henry Wilkes at 2024-05-27T10:27:14+02:00
fixup! Base Browser strings
Bug 42347: Add a notification for dropped OS version support.
- - - - -
8649b2b1 by Henry Wilkes at 2024-05-27T10:27:14+02:00
Bug 42347: Add a notification for dropped OS version support.
- - - - -
6e6cdac6 by Henry Wilkes at 2024-05-27T10:27:14+02:00
fixup! Bug 41369: Improve Firefox language settings for multi-lingual packages
Bug 42573: Avoid async l10n.formatValue.
- - - - -
6 changed files:
- browser/base/content/browser.xhtml
- + browser/base/content/droppedSupportNotification.js
- browser/base/content/languageNotification.js
- browser/base/jar.mn
- mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java
- toolkit/locales/en-US/toolkit/global/base-browser.ftl
Changes:
=====================================
browser/base/content/browser.xhtml
=====================================
@@ -123,6 +123,7 @@
Services.scriptloader.loadSubScript("chrome://browser/content/search/autocomplete-popup.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/languageNotification.js", this);
+ Services.scriptloader.loadSubScript("chrome://browser/content/droppedSupportNotification.js", this);
window.onload = gBrowserInit.onLoad.bind(gBrowserInit);
window.onunload = gBrowserInit.onUnload.bind(gBrowserInit);
=====================================
browser/base/content/droppedSupportNotification.js
=====================================
@@ -0,0 +1,69 @@
+"use strict";
+
+// Show a prompt that a user's system will no longer be supported.
+window.addEventListener("load", () => {
+ let labelId;
+ // Expire date is 2024-10-01 (1st October 2024).
+ const isExpired = Date.now() > Date.UTC(2024, 9, 1);
+
+ if (
+ AppConstants.platform === "macosx" &&
+ Services.vc.compare(
+ Services.sysinfo.getProperty("version"),
+ "19.0" // MacOS 10.15 begins with Darwin 19.0
+ ) < 0
+ ) {
+ labelId = isExpired
+ ? "dropped-support-notification-macos-version-less-than-10-15-expired"
+ : "dropped-support-notification-macos-version-less-than-10-15";
+ } else if (
+ AppConstants.platform === "win" &&
+ Services.vc.compare(Services.sysinfo.getProperty("version"), "10.0") < 0
+ ) {
+ labelId = isExpired
+ ? "dropped-support-notification-win-os-version-less-than-10-expired"
+ : "dropped-support-notification-win-os-version-less-than-10";
+ }
+
+ const dismissedPref =
+ "browser.dropped_support_notification_v14.dismiss_version";
+
+ if (!labelId) {
+ // Avoid setting any preferences for supported versions, and clean up any
+ // old values if the user ported their profile.
+ Services.prefs.clearUserPref(dismissedPref);
+ return;
+ }
+
+ if (
+ !isExpired &&
+ Services.prefs.getStringPref(dismissedPref, "") ===
+ AppConstants.BASE_BROWSER_VERSION
+ ) {
+ // Already dismissed since the last update.
+ return;
+ }
+
+ const buttons = isExpired
+ ? undefined
+ : [
+ {
+ "l10n-id": "dropped-support-notification-dismiss-button",
+ callback: () => {
+ Services.prefs.setStringPref(
+ dismissedPref,
+ AppConstants.BASE_BROWSER_VERSION
+ );
+ },
+ },
+ ];
+
+ gNotificationBox.appendNotification(
+ "dropped-support-notification",
+ {
+ label: { "l10n-id": labelId },
+ priority: gNotificationBox.PRIORITY_WARNING_HIGH,
+ },
+ buttons
+ );
+});
=====================================
browser/base/content/languageNotification.js
=====================================
@@ -2,7 +2,7 @@
// Show a prompt to suggest to the user that they can change the UI language.
// Show it only the first time, and then do not show it anymore
-window.addEventListener("load", async () => {
+window.addEventListener("load", () => {
const PREF_NAME = "intl.language_notification.shown";
if (Services.prefs.getBoolPref(PREF_NAME, false)) {
@@ -35,12 +35,12 @@ window.addEventListener("load", async () => {
Services.locale.requestedLocales,
Services.locale.availableLocales
).length;
- const label = await document.l10n.formatValue(
- matchingSystem
+ const label = {
+ "l10n-id": matchingSystem
? "language-notification-label-system"
: "language-notification-label",
- { language }
- );
+ "l10n-args": { language },
+ };
const buttons = [
{
=====================================
browser/base/jar.mn
=====================================
@@ -105,4 +105,5 @@ browser.jar:
content/browser/spotlight.js (content/spotlight.js)
* content/browser/default-bookmarks.html (content/default-bookmarks.html)
+ content/browser/droppedSupportNotification.js (content/droppedSupportNotification.js)
content/browser/languageNotification.js (content/languageNotification.js)
=====================================
mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java
=====================================
@@ -843,7 +843,7 @@ public final class GeckoRuntimeSettings extends RuntimeSettings {
}
}
}
- String acceptLanguages = locale != null ? locale.toString().replace('_', '-') : "en-US";
+ String acceptLanguages = locale != null ? locale.toLanguageTag().replace('_', '-') : "en-US";
if (acceptLanguages.equals("en-US")) {
// For consistency with spoof English.
acceptLanguages += ", en";
=====================================
toolkit/locales/en-US/toolkit/global/base-browser.ftl
=====================================
@@ -166,3 +166,21 @@ security-level-summary-custom = Your custom browser preferences have resulted in
# Button to undo custom changes to the security level and place the user in one of the standard security levels.
# Shown in the security level panel and settings.
security-level-restore-defaults-button = Restore defaults
+
+## Notification for dropped operating system support.
+
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "14.0" refers to the browser versions number: Tor Browser 14.0.
+# "macOS" is a brand name, and 10.15 is the macOS version number.
+dropped-support-notification-macos-version-less-than-10-15 = The next major version of { -brand-short-name } (14.0) will no longer support this version of macOS. Please upgrade to macOS 10.15 or later by October 1st 2024 to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "macOS" is a brand name, and 10.15 is the macOS version number.
+dropped-support-notification-macos-version-less-than-10-15-expired = { -brand-short-name } no longer supports this version of macOS. Please upgrade to macOS 10.15 or later to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "14.0" refers to the browser versions number: Tor Browser 14.0.
+# "Windows" is a brand name, and "Windows 10" is the version.
+dropped-support-notification-win-os-version-less-than-10 = The next major version of { -brand-short-name } (14.0) will no longer support this version of Windows. Please upgrade to Windows 10 or later by October 1st 2024 to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "Windows" is a brand name, and "Windows 10" is the version.
+dropped-support-notification-win-os-version-less-than-10-expired = { -brand-short-name } no longer supports this version of Windows. Please upgrade to Windows 10 or later to continue receiving important security updates.
+dropped-support-notification-dismiss-button = Got it
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/ad…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/ad…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch base-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
1f9f11ca by Henry Wilkes at 2024-05-27T10:15:09+02:00
fixup! Bug 41369: Improve Firefox language settings for multi-lingual packages
Bug 42573: Avoid async l10n.formatValue.
- - - - -
1 changed file:
- browser/base/content/languageNotification.js
Changes:
=====================================
browser/base/content/languageNotification.js
=====================================
@@ -2,7 +2,7 @@
// Show a prompt to suggest to the user that they can change the UI language.
// Show it only the first time, and then do not show it anymore
-window.addEventListener("load", async () => {
+window.addEventListener("load", () => {
const PREF_NAME = "intl.language_notification.shown";
if (Services.prefs.getBoolPref(PREF_NAME, false)) {
@@ -35,12 +35,12 @@ window.addEventListener("load", async () => {
Services.locale.requestedLocales,
Services.locale.availableLocales
).length;
- const label = await document.l10n.formatValue(
- matchingSystem
+ const label = {
+ "l10n-id": matchingSystem
? "language-notification-label-system"
: "language-notification-label",
- { language }
- );
+ "l10n-args": { language },
+ };
const buttons = [
{
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1f9f11c…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1f9f11c…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch base-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
00a60291 by Pier Angelo Vendrame at 2024-05-27T10:08:37+02:00
fixup! Bug 42562: Normalized the Accepted Languages on Android.
Bug 42582: Use toLanguageTag() instead of toString()
- - - - -
623ab54b by Henry Wilkes at 2024-05-27T10:08:39+02:00
fixup! Base Browser strings
Bug 42347: Add a notification for dropped OS version support.
- - - - -
68c9e866 by Henry Wilkes at 2024-05-27T10:08:39+02:00
Bug 42347: Add a notification for dropped OS version support.
- - - - -
5 changed files:
- browser/base/content/browser.xhtml
- + browser/base/content/droppedSupportNotification.js
- browser/base/jar.mn
- mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java
- toolkit/locales/en-US/toolkit/global/base-browser.ftl
Changes:
=====================================
browser/base/content/browser.xhtml
=====================================
@@ -123,6 +123,7 @@
Services.scriptloader.loadSubScript("chrome://browser/content/search/autocomplete-popup.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/languageNotification.js", this);
+ Services.scriptloader.loadSubScript("chrome://browser/content/droppedSupportNotification.js", this);
window.onload = gBrowserInit.onLoad.bind(gBrowserInit);
window.onunload = gBrowserInit.onUnload.bind(gBrowserInit);
=====================================
browser/base/content/droppedSupportNotification.js
=====================================
@@ -0,0 +1,69 @@
+"use strict";
+
+// Show a prompt that a user's system will no longer be supported.
+window.addEventListener("load", () => {
+ let labelId;
+ // Expire date is 2024-10-01 (1st October 2024).
+ const isExpired = Date.now() > Date.UTC(2024, 9, 1);
+
+ if (
+ AppConstants.platform === "macosx" &&
+ Services.vc.compare(
+ Services.sysinfo.getProperty("version"),
+ "19.0" // MacOS 10.15 begins with Darwin 19.0
+ ) < 0
+ ) {
+ labelId = isExpired
+ ? "dropped-support-notification-macos-version-less-than-10-15-expired"
+ : "dropped-support-notification-macos-version-less-than-10-15";
+ } else if (
+ AppConstants.platform === "win" &&
+ Services.vc.compare(Services.sysinfo.getProperty("version"), "10.0") < 0
+ ) {
+ labelId = isExpired
+ ? "dropped-support-notification-win-os-version-less-than-10-expired"
+ : "dropped-support-notification-win-os-version-less-than-10";
+ }
+
+ const dismissedPref =
+ "browser.dropped_support_notification_v14.dismiss_version";
+
+ if (!labelId) {
+ // Avoid setting any preferences for supported versions, and clean up any
+ // old values if the user ported their profile.
+ Services.prefs.clearUserPref(dismissedPref);
+ return;
+ }
+
+ if (
+ !isExpired &&
+ Services.prefs.getStringPref(dismissedPref, "") ===
+ AppConstants.BASE_BROWSER_VERSION
+ ) {
+ // Already dismissed since the last update.
+ return;
+ }
+
+ const buttons = isExpired
+ ? undefined
+ : [
+ {
+ "l10n-id": "dropped-support-notification-dismiss-button",
+ callback: () => {
+ Services.prefs.setStringPref(
+ dismissedPref,
+ AppConstants.BASE_BROWSER_VERSION
+ );
+ },
+ },
+ ];
+
+ gNotificationBox.appendNotification(
+ "dropped-support-notification",
+ {
+ label: { "l10n-id": labelId },
+ priority: gNotificationBox.PRIORITY_WARNING_HIGH,
+ },
+ buttons
+ );
+});
=====================================
browser/base/jar.mn
=====================================
@@ -105,4 +105,5 @@ browser.jar:
content/browser/spotlight.js (content/spotlight.js)
* content/browser/default-bookmarks.html (content/default-bookmarks.html)
+ content/browser/droppedSupportNotification.js (content/droppedSupportNotification.js)
content/browser/languageNotification.js (content/languageNotification.js)
=====================================
mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java
=====================================
@@ -843,7 +843,7 @@ public final class GeckoRuntimeSettings extends RuntimeSettings {
}
}
}
- String acceptLanguages = locale != null ? locale.toString().replace('_', '-') : "en-US";
+ String acceptLanguages = locale != null ? locale.toLanguageTag().replace('_', '-') : "en-US";
if (acceptLanguages.equals("en-US")) {
// For consistency with spoof English.
acceptLanguages += ", en";
=====================================
toolkit/locales/en-US/toolkit/global/base-browser.ftl
=====================================
@@ -166,3 +166,21 @@ security-level-summary-custom = Your custom browser preferences have resulted in
# Button to undo custom changes to the security level and place the user in one of the standard security levels.
# Shown in the security level panel and settings.
security-level-restore-defaults-button = Restore defaults
+
+## Notification for dropped operating system support.
+
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "14.0" refers to the browser versions number: Tor Browser 14.0.
+# "macOS" is a brand name, and 10.15 is the macOS version number.
+dropped-support-notification-macos-version-less-than-10-15 = The next major version of { -brand-short-name } (14.0) will no longer support this version of macOS. Please upgrade to macOS 10.15 or later by October 1st 2024 to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "macOS" is a brand name, and 10.15 is the macOS version number.
+dropped-support-notification-macos-version-less-than-10-15-expired = { -brand-short-name } no longer supports this version of macOS. Please upgrade to macOS 10.15 or later to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "14.0" refers to the browser versions number: Tor Browser 14.0.
+# "Windows" is a brand name, and "Windows 10" is the version.
+dropped-support-notification-win-os-version-less-than-10 = The next major version of { -brand-short-name } (14.0) will no longer support this version of Windows. Please upgrade to Windows 10 or later by October 1st 2024 to continue receiving important security updates.
+# "{ -brand-short-name }" will be replaced with the localized name of the browser, e.g. "Tor Browser".
+# "Windows" is a brand name, and "Windows 10" is the version.
+dropped-support-notification-win-os-version-less-than-10-expired = { -brand-short-name } no longer supports this version of Windows. Please upgrade to Windows 10 or later to continue receiving important security updates.
+dropped-support-notification-dismiss-button = Got it
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/50d371…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/50d371…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch main at The Tor Project / Applications / Tor Browser update responses
Commits:
19bb9e94 by Richard Pospesel at 2024-05-17T09:42:32+00:00
alpha: new version, 13.5a8
- - - - -
30 changed files:
- update_3/alpha/.htaccess
- − update_3/alpha/13.5a4-13.5a7-linux-i686-ALL.xml
- − update_3/alpha/13.5a4-13.5a7-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a4-13.5a7-macos-ALL.xml
- − update_3/alpha/13.5a4-13.5a7-windows-i686-ALL.xml
- − update_3/alpha/13.5a4-13.5a7-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a5-13.5a7-linux-i686-ALL.xml
- − update_3/alpha/13.5a5-13.5a7-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a5-13.5a7-macos-ALL.xml
- − update_3/alpha/13.5a5-13.5a7-windows-i686-ALL.xml
- − update_3/alpha/13.5a5-13.5a7-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a5-13.5a8-linux-i686-ALL.xml
- + update_3/alpha/13.5a5-13.5a8-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a5-13.5a8-macos-ALL.xml
- + update_3/alpha/13.5a5-13.5a8-windows-i686-ALL.xml
- + update_3/alpha/13.5a5-13.5a8-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a6-13.5a7-linux-i686-ALL.xml
- − update_3/alpha/13.5a6-13.5a7-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a6-13.5a7-macos-ALL.xml
- − update_3/alpha/13.5a6-13.5a7-windows-i686-ALL.xml
- − update_3/alpha/13.5a6-13.5a7-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a6-13.5a8-linux-i686-ALL.xml
- + update_3/alpha/13.5a6-13.5a8-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a6-13.5a8-macos-ALL.xml
- + update_3/alpha/13.5a6-13.5a8-windows-i686-ALL.xml
- + update_3/alpha/13.5a6-13.5a8-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a7-13.5a8-linux-i686-ALL.xml
- + update_3/alpha/13.5a7-13.5a8-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a7-13.5a8-macos-ALL.xml
- + update_3/alpha/13.5a7-13.5a8-windows-i686-ALL.xml
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses…
--
This project does not include diff previews in email notifications.
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.