Pier Angelo Vendrame pushed to branch tor-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
75ac830c by Henry Wilkes at 2024-05-08T16:05:56+01: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/75ac830…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/75ac830…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
02b5bf73 by hackademix at 2024-05-08T12:48:22+02:00
fixup! Bug 30237: Add v3 onion services client authentication prompt
Bug 42557: Fix regression in Onion Services authentication prompt focus
- - - - -
1 changed file:
- browser/components/onionservices/content/authPrompt.js
Changes:
=====================================
browser/components/onionservices/content/authPrompt.js
=====================================
@@ -356,6 +356,13 @@ var OnionAuthPrompt = {
this._showWarning(undefined);
});
+ // Force back focus on click: tor-browser#41856
+ document
+ .getElementById("tor-clientauth-notification")
+ .addEventListener("click", () => {
+ window.focus();
+ });
+
Services.obs.addObserver(this, this._topics.clientAuthMissing);
Services.obs.addObserver(this, this._topics.clientAuthIncorrect);
},
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/02b5bf7…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/02b5bf7…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch main at The Tor Project / Applications / tor-android-service
Commits:
de1e85a0 by Richard Pospesel at 2024-04-22T19:11:38+00:00
Bug 41111: Use Lyrebird to provide WebTunnel PT Client
Revert "Bug 40800: Add WebTunnel support"
This reverts commit 0438a9a4ce1548be08dd2df891a38987bb313d22.
- - - - -
1 changed file:
- service/src/main/java/org/torproject/android/service/TorService.java
Changes:
=====================================
service/src/main/java/org/torproject/android/service/TorService.java
=====================================
@@ -379,10 +379,8 @@ public final class TorService extends Service implements TorServiceConstants, Or
if(!pluggableTransportSnow.canExecute()) pluggableTransportSnow.setExecutable(true);
File pluggableTransportConjure = new File(nativeDir, "libConjure.so");
if(!pluggableTransportConjure.canExecute()) pluggableTransportConjure.setExecutable(true);
- File pluggableTransportWebtunnel = new File(nativeDir, "libWebtunnel.so");
- if(!pluggableTransportWebtunnel.canExecute()) pluggableTransportWebtunnel.setExecutable(true);
- builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure, pluggableTransportWebtunnel);
+ builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure);
mDataService.updateConfigBuilder(builder);
onionProxyManager.getTorInstaller().updateTorConfigCustom
(builder.asString());
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit…
--
This project does not include diff previews in email notifications.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit…
You're receiving this email because of your account on gitlab.torproject.org.