Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
84eaa764 by Henry Wilkes at 2024-08-08T10:30:14+01:00
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
Bug 42663: Add tooltip text to the "Connection" category.
- - - - -
1208a39d by Henry Wilkes at 2024-08-08T10:35:05+01:00
fixup! Tor Browser strings
Bug 42663: Add tooltip text to the "Connection" category.
- - - - -
2 changed files:
- browser/components/torpreferences/content/connectionCategory.inc.xhtml
- toolkit/locales/en-US/toolkit/global/tor-browser.ftl
Changes:
=====================================
browser/components/torpreferences/content/connectionCategory.inc.xhtml
=====================================
@@ -2,6 +2,8 @@
class="category"
value="paneConnection"
helpTopic="prefs-connection"
+ data-l10n-id="tor-connection-settings-category"
+ data-l10n-attrs="tooltiptext"
align="center"
hidden="true">
<image class="category-icon"/>
=====================================
toolkit/locales/en-US/toolkit/global/tor-browser.ftl
=====================================
@@ -49,6 +49,10 @@ home-mode-choice-tor =
# "Connection" refers to the Tor Browser's connection to the Tor network.
tor-connection-settings-heading = Connection
+# The tooltip text for the "Connection" settings, shown in the preferences side bar.
+# Likely should just be "{ tor-connection-settings-heading }", which will match the displayed text exactly.
+tor-connection-settings-category =
+ .tooltiptext = { tor-connection-settings-heading }
# -brand-short-name refers to 'Tor Browser', localized.
tor-connection-overview = { -brand-short-name } routes your traffic over the Tor Network, run by thousands of volunteers around the world.
tor-connection-browser-learn-more-link = Learn more
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/5a97c2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/5a97c2…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch base-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
6da32b42 by Pier Angelo Vendrame at 2024-08-08T11:16:04+02:00
fixup! Bug 42347: Add a notification for dropped OS version support.
Bug 43021: Revert "Bug 42347: Add a notification for dropped OS version support."
This reverts commit d92ee42bf0523425b33583006fc94c787dca55cb.
- - - - -
562aeca5 by Pier Angelo Vendrame at 2024-08-08T11:16:05+02:00
fixup! Base Browser strings
This reverts commit 900fb923a95ec97a9c843085759fa08d961bd92c.
- - - - -
4 changed files:
- browser/base/content/browser.xhtml
- − browser/base/content/droppedSupportNotification.js
- browser/base/jar.mn
- toolkit/locales/en-US/toolkit/global/base-browser.ftl
Changes:
=====================================
browser/base/content/browser.xhtml
=====================================
@@ -129,7 +129,6 @@
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/shopping/shopping-sidebar.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 deleted
=====================================
@@ -1,69 +0,0 @@
-"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
=====================================
@@ -99,5 +99,4 @@ 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)
=====================================
toolkit/locales/en-US/toolkit/global/base-browser.ftl
=====================================
@@ -166,21 +166,3 @@ 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/a67e45…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/a67e45…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch mullvad-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
82a0c757 by Pier Angelo Vendrame at 2024-08-08T11:12:20+02:00
fixup! Bug 42347: Add a notification for dropped OS version support.
Bug 43021: Revert "Bug 42347: Add a notification for dropped OS version support."
This reverts commit d92ee42bf0523425b33583006fc94c787dca55cb.
- - - - -
cf53e4fd by Pier Angelo Vendrame at 2024-08-08T11:12:22+02:00
fixup! Base Browser strings
This reverts commit 900fb923a95ec97a9c843085759fa08d961bd92c.
- - - - -
4 changed files:
- browser/base/content/browser.xhtml
- − browser/base/content/droppedSupportNotification.js
- browser/base/jar.mn
- toolkit/locales/en-US/toolkit/global/base-browser.ftl
Changes:
=====================================
browser/base/content/browser.xhtml
=====================================
@@ -129,7 +129,6 @@
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/shopping/shopping-sidebar.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 deleted
=====================================
@@ -1,69 +0,0 @@
-"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
=====================================
@@ -99,5 +99,4 @@ 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)
=====================================
toolkit/locales/en-US/toolkit/global/base-browser.ftl
=====================================
@@ -166,21 +166,3 @@ 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/65…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/65…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
be034bda by Pier Angelo Vendrame at 2024-08-08T11:06:16+02:00
fixup! Bug 42347: Add a notification for dropped OS version support.
Bug 43021: Revert "Bug 42347: Add a notification for dropped OS version support."
This reverts commit d92ee42bf0523425b33583006fc94c787dca55cb.
- - - - -
5a97c2df by Pier Angelo Vendrame at 2024-08-08T11:06:19+02:00
fixup! Base Browser strings
This reverts commit 900fb923a95ec97a9c843085759fa08d961bd92c.
- - - - -
4 changed files:
- browser/base/content/browser.xhtml
- − browser/base/content/droppedSupportNotification.js
- browser/base/jar.mn
- toolkit/locales/en-US/toolkit/global/base-browser.ftl
Changes:
=====================================
browser/base/content/browser.xhtml
=====================================
@@ -138,7 +138,6 @@
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/shopping/shopping-sidebar.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 deleted
=====================================
@@ -1,69 +0,0 @@
-"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,5 +105,4 @@ 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)
=====================================
toolkit/locales/en-US/toolkit/global/base-browser.ftl
=====================================
@@ -166,21 +166,3 @@ 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/4f0cf0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/4f0cf0…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
00062f02 by meskio at 2024-08-07T23:03:10+00:00
Bump lyrebird version to 0.3.0
- - - - -
1 changed file:
- projects/lyrebird/config
Changes:
=====================================
projects/lyrebird/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: 0.2.0
+version: 0.3.0
git_url: https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyre…
git_hash: 'lyrebird-[% c("version") %]'
tag_gpg_id: 1
@@ -9,7 +9,7 @@ container:
use_container: 1
var:
- go_vendor_sha256sum: dc6b2671250f4ffd0caff3ef020bd60f99207f519f6f5f1be47243677a13c695
+ go_vendor_sha256sum: 71abc8063f2913e74e87a2a5c9262c4fad6ce4ed98b28b7603b50382724baba4
targets:
nightly:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
732e4181 by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 7494: Create local home page for TBB.
Bug 42713: Use `--link-color` rather than `--in-content-link-color`.
- - - - -
fbf19afe by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
Bug 42713: Use `--text-color-error` instead of
`--in-content-error-text-color`.
- - - - -
da08e423 by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser
Bug 42713: Use `--text-color-error` instead of
`--in-content-error-text-color`.
- - - - -
3 changed files:
- browser/components/abouttor/content/aboutTor.css
- browser/components/torpreferences/content/torPreferences.css
- toolkit/components/torconnect/content/aboutTorConnect.css
Changes:
=====================================
browser/components/abouttor/content/aboutTor.css
=====================================
@@ -194,14 +194,14 @@ body:not(.show-tor-check) #tor-check {
--in-content-page-color: #fbfbfe;
--in-content-text-color: #fbfbfe;
color: var(--in-content-text-color);
- --in-content-link-color: var(--purple-30);
+ --link-color: var(--purple-30);
/* FIXME: Since we have a dark background, the color should get lighter on
* hover, but --purple-40 and --pruple-50 are darker than --purple-30.
* However, we do not have a standard lighter purple in our current set of
* Photon colors.
* See tor-browser#42025 */
- --in-content-link-color-hover: var(--purple-40);
- --in-content-link-color-active: var(--purple-50);
+ --link-color-hover: var(--purple-40);
+ --link-color-active: var(--purple-50);
}
#search-form {
=====================================
browser/components/torpreferences/content/torPreferences.css
=====================================
@@ -913,7 +913,7 @@ dialog#torPreferences-requestBridge-dialog > hbox {
}
#lox-invite-dialog-error-message {
- color: var(--in-content-error-text-color);
+ color: var(--text-color-error);
}
#lox-invite-dialog-generate-area:not(.show-error) #lox-invite-dialog-error-message {
@@ -1049,7 +1049,7 @@ groupbox#torPreferences-bridges-group textarea {
}
#user-provide-bridge-error-message {
- color: var(--in-content-error-text-color);
+ color: var(--text-color-error);
}
#user-provide-bridge-dialog:not(.show-error) #user-provide-bridge-error-message {
=====================================
toolkit/components/torconnect/content/aboutTorConnect.css
=====================================
@@ -154,7 +154,7 @@ button {
}
#locationDropdownLabel.error {
- color: var(--in-content-error-text-color)
+ color: var(--text-color-error)
}
#tryBridgeButton.danger-button {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/fdad7c…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/fdad7c…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
4d4e1380 by Nicolas Vigier at 2024-08-06T15:43:19+02:00
Bug 41202: Remove restricted entitlements
Remove the following restricted entitlements:
* com.apple.application-identifier
* com.apple.developer.web-browser.public-key-credential
https://searchfox.org/mozilla-central/source/tools/signing/macos/mach_comma…
- - - - -
1 changed file:
- tools/signing/macos-entitlements/firefox.browser.xml
Changes:
=====================================
tools/signing/macos-entitlements/firefox.browser.xml
=====================================
@@ -23,12 +23,5 @@
<!-- For SmartCardServices(7) -->
<key>com.apple.security.smartcard</key><true/>
-
- <!-- Required for com.apple.developer.web-browser.public-key-credential -->
- <key>com.apple.application-identifier</key>
- <string>43AQ936H96.org.mozilla.firefox</string>
-
- <!-- For platform passkey (webauthn) support -->
- <key>com.apple.developer.web-browser.public-key-credential</key><true/>
</dict>
</plist>
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.
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
95ec0dcc by Henry Wilkes at 2024-08-07T21:39:39+00:00
fixup! Bug 41600: Add a tor circuit display panel.
Bug 42488: Remove redundant role="code" from ip address <code> element.
After ESR 128, the <code> element has an implicit "code" accessible
role.
- - - - -
1 changed file:
- browser/components/torcircuit/content/torCircuitPanel.js
Changes:
=====================================
browser/components/torcircuit/content/torCircuitPanel.js
=====================================
@@ -617,19 +617,10 @@ var gTorCircuitPanel = {
} else {
addressesEl.append(", ");
}
+ // Use semantic <code> block for the ip addresses, so the content
+ // (especially punctuation) can be better interpreted by screen readers,
+ // if they support this.
const ipEl = document.createElement("code");
- // TODO: Current HTML-aam 1.0 specs map the <code> element to the "code"
- // role.
- // However, mozilla-central commented out this mapping in
- // accessible/base/HTMLMarkupMap.h because the HTML-aam specs at the
- // time did not do this.
- // See hg.mozilla.org/mozilla-central/rev/51eebe7d6199#l2.12
- //
- // This was updated in mozilla bug 1834931, for ESR 128
- //
- // For now we explicitly add the role="code", but once this is fixed
- // from mozilla-central we should remove this.
- ipEl.setAttribute("role", "code");
ipEl.classList.add("tor-circuit-ip-address");
ipEl.textContent = ip;
addressesEl.append(ipEl);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
bbeec728 by Henry Wilkes at 2024-08-07T12:06:58+01:00
fixup! Add CI for Tor Browser
Bug 42759: Remove localization file names that were removed in 13.5.
- - - - -
1 changed file:
- .gitlab/ci/update-translations.yml
Changes:
=====================================
.gitlab/ci/update-translations.yml
=====================================
@@ -18,22 +18,14 @@ combine-en-US-translations:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
TRANSLATION_FILES: '
tor-browser:tor-browser.ftl
- tor-browser:aboutDialog.dtd
tor-browser:aboutTBUpdate.dtd
- tor-browser:aboutTor.dtd
tor-browser:torbutton.dtd
- tor-browser:browserOnboarding.properties
- tor-browser:cryptoSafetyPrompt.properties
- tor-browser:onboarding.properties
tor-browser:onionLocation.properties
- tor-browser:rulesets.properties
tor-browser:settings.properties
tor-browser:torbutton.properties
tor-browser:torConnect.properties
tor-browser:torlauncher.properties
base-browser:base-browser.ftl
- base-browser:newIdentity.properties
- base-browser:securityLevel.properties
'
cache:
paths:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
9506e131 by Henry Wilkes at 2024-08-07T10:21:51+01:00
fixup! Bug 7494: Create local home page for TBB.
Bug 42629: Add "about:tor" to `newTabUrls` instead of checking the
scheme and path individually.
- - - - -
1 changed file:
- browser/base/content/browser-places.js
Changes:
=====================================
browser/base/content/browser-places.js
=====================================
@@ -1409,14 +1409,6 @@ var BookmarkingUI = {
if (!uri) {
return false;
}
- // If uri is "about:tor" then we return true. See tor-browser#41717.
- // NOTE: "about:newtab", "about:welcome", "about:home" and
- // "about:privatebrowsing" can also redirect to "about:tor".
- // NOTE: We do not simply add "about:tor" to newTabURLs below because this
- // would also match "about:torconnect".
- if (uri.scheme === "about" && uri.filePath === "tor") {
- return true;
- }
// Prevent loading AboutNewTab.sys.mjs during startup path if it
// is only the newTabURL getter we are interested in.
let newTabURL = Cu.isESModuleLoaded(
@@ -1435,6 +1427,10 @@ var BookmarkingUI = {
newTabURL,
"about:home",
"chrome://browser/content/blanktab.html",
+ // Add the "about:tor" uri. See tor-browser#41717.
+ // NOTE: "about:newtab", "about:welcome", "about:home" and
+ // "about:privatebrowsing" can also redirect to "about:tor".
+ "about:tor",
];
if (PrivateBrowsingUtils.isWindowPrivate(window)) {
newTabURLs.push("about:privatebrowsing");
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13…
You're receiving this email because of your account on gitlab.torproject.org.