Pier Angelo Vendrame pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
47de2a69 by Henry Wilkes at 2023-09-14T10:34:37+01:00
fixup! Bug 42072: 2023 year end campaign for about:tor.
- - - - -
1 changed file:
- browser/locales/en-US/browser/tor-browser.ftl
Changes:
=====================================
browser/locales/en-US/browser/tor-browser.ftl
=====================================
@@ -53,7 +53,7 @@ yec-2023-please-donate = <span data-l10n-name="attention">This is possible becau
# NOTE: The amount should be shown as USD (United States dollar) currency. In the original English string, the first "$" is the literal USD currency symbol, and this can be changed or removed when translating to whatever is most appropriate for USD currency in the locale. In contrast, the "$" at the start of "$amount" is part of the Fluent format's syntax and should not be changed when translating.
# For example, "${ $amount }" for English would eventually be shown as "$5,000", whilst "{ $amount } US$" for Arabic would be shown as "٥٬٠٠٠ US$".
# Translators: If you need any help or clarification, feel free to ask a question on weblate or in IRC (#tor-l10n).
-yec-2023-matched-donation = From now until December 31, your gift will be matched one-to-one, up to ${ $amount }!
+yec-2023-matched-donation = From now until December 31, donations to the Tor Project will be matched one-to-one, up to ${ $amount }!
yec-2023-close-button =
.title = Close
yec-2023-donate-button = Donate now
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/47de2a6…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/47de2a6…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch base-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
2d9a45a6 by Henry Wilkes at 2023-09-13T17:13:18+02:00
fixup! Bug 42019: Empty browser's clipboard on browser shutdown
Bug 42097: Add comma.
- - - - -
1 changed file:
- browser/components/BrowserGlue.sys.mjs
Changes:
=====================================
browser/components/BrowserGlue.sys.mjs
=====================================
@@ -1912,7 +1912,7 @@ BrowserGlue.prototype = {
lazy.UpdateListener.reset();
}
},
- () => Services.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard) // tor-browser#42019
+ () => Services.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard), // tor-browser#42019
];
for (let task of tasks) {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2d9a45a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2d9a45a…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
e18a0457 by Henry Wilkes at 2023-09-13T12:58:06+01:00
fixup! Bug 40562: Added Tor Browser preferences to 000-tor-browser.js
Bug 41906: Lock network.trr.mode to be explicitly off.
- - - - -
22685798 by Henry Wilkes at 2023-09-13T12:58:06+01:00
Bug 41906: Hide DNS over HTTPS preferences.
- - - - -
2 changed files:
- browser/app/profile/000-tor-browser.js
- browser/components/preferences/privacy.inc.xhtml
Changes:
=====================================
browser/app/profile/000-tor-browser.js
=====================================
@@ -29,6 +29,9 @@ pref("network.proxy.failover_direct", false);
pref("network.security.ports.banned", "", locked);
pref("network.dns.disabled", true); // This should cover the #5741 patch for DNS leaks
pref("network.http.max-persistent-connections-per-proxy", 256);
+// Disable DNS over HTTPS. Set to explicitly off MODE_TRROFF = 5.
+// See tor-browser#41906.
+pref("network.trr.mode", 5, locked);
// Treat .onions as secure
pref("dom.securecontext.allowlist_onions", true);
=====================================
browser/components/preferences/privacy.inc.xhtml
=====================================
@@ -1193,11 +1193,12 @@
<hbox id="DoHCategory"
class="subcategory"
hidden="true"
- data-category="panePrivacy">
+ data-category="panePrivacy"
+ data-hidden-from-search="true">
<html:h1 data-l10n-id="preferences-doh-header"/>
</hbox>
-<groupbox id="dohBox" data-category="panePrivacy" data-subcategory="doh" hidden="true" class="highlighting-group">
+<groupbox id="dohBox" data-category="panePrivacy" data-subcategory="doh" data-hidden-from-search="true" hidden="true" class="highlighting-group">
<label class="search-header" searchkeywords="doh trr" hidden="true"><html:h2 data-l10n-id="preferences-doh-header"/></label>
<vbox flex="1">
<html:span id="dohDescription" class="tail-with-learn-more" data-l10n-id="preferences-doh-description"></html:span>
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/faeaeb…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/faeaeb…
You're receiving this email because of your account on gitlab.torproject.org.