henry pushed to branch tor-browser-128.8.0esr-14.5-1 at The Tor Project / Applications / Tor Browser
Commits:
4aeac6bb by Henry Wilkes at 2025-03-20T18:17:26+00:00
fixup! TB 40597: Implement TorSettings module
TB 43488: Skip straight to "FinalError" if we do not get an expected
TorConnectError.
- - - - -
1 changed file:
- toolkit/modules/TorConnect.sys.mjs
Changes:
=====================================
toolkit/modules/TorConnect.sys.mjs
=====================================
@@ -1441,28 +1441,45 @@ export const TorConnect = {
this._signalError(error);
+ let errorStage = TorConnectStage.FinalError;
+
switch (beginStage) {
case TorConnectStage.Start:
case TorConnectStage.Offline:
- this._setStage(TorConnectStage.ChooseRegion);
- return;
+ if (
+ error instanceof TorConnectError &&
+ error.code === TorConnectError.BootstrapError
+ ) {
+ errorStage = TorConnectStage.ChooseRegion;
+ }
+ // Else, some other unexpected error type. Skip straight to the
+ // "FinalError". See tor-browser#43488.
+ break;
case TorConnectStage.ChooseRegion:
- if (regionCode === "automatic") {
+ // TODO: Handle a Moat error of the type
+ // DomainFrontRequestNetworkError to show a different stage. See
+ // tor-browser#43569.
+ if (
+ regionCode === "automatic" &&
+ error instanceof TorConnectError &&
+ (error.code === TorConnectError.AllSettingsFailed ||
+ error.code === TorConnectError.CannotDetermineCountry ||
+ error.code === TorConnectError.NoSettingsForCountry)
+ ) {
// The automatic region failed.
- if (bootstrapAttempt.detectedRegion) {
- this._setStage(TorConnectStage.ConfirmRegion);
- } else {
- this._setStage(TorConnectStage.RegionNotFound);
- }
- return;
+ errorStage = bootstrapAttempt.detectedRegion
+ ? TorConnectStage.ConfirmRegion
+ : TorConnectStage.RegionNotFound;
}
// Else, not automatic. Go straight to the final error since the user
// is unlikely to succeed re-selecting the same region and it would be
// unexpected for the user to select a different region.
// See tor-browser#42550.
+ // Else, some other error type. Skip straight to the "FinalError". See
+ // tor-browser#43488.
break;
}
- this._setStage(TorConnectStage.FinalError);
+ this._setStage(errorStage);
return;
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/4aeac6b…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/4aeac6b…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.8.0esr-14.5-1 at The Tor Project / Applications / Tor Browser
Commits:
e063bf8b by Henry Wilkes at 2025-03-20T17:31:47+00:00
fixup! TB 7494: Create local home page for TBB.
TB 43556: Rename "Not now" to "Dismiss" in the survey banner.
- - - - -
f37f63bc by Henry Wilkes at 2025-03-20T17:31:47+00:00
fixup! Bug 43505 [android]: Add 2025 UX Survey Campaign
TB 43556: Update the "Dismiss" translations in the survey banner.
- - - - -
2 changed files:
- browser/components/abouttor/content/aboutTor.js
- mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/CampaignStrings.kt
Changes:
=====================================
browser/components/abouttor/content/aboutTor.js
=====================================
@@ -238,7 +238,7 @@ const SurveyArea = {
heading: "We’d love your feedback",
body: "Help us improve Tor Browser by completing this 10-minute survey.",
launch: "Launch the survey",
- dismiss: "Not now",
+ dismiss: "Dismiss",
close: "Close",
},
},
@@ -250,7 +250,7 @@ const SurveyArea = {
heading: "Danos tu opinión",
body: "Ayúdanos a mejorar el Navegador Tor completando esta encuesta de 10 minutos.",
launch: "Iniciar la encuesta",
- dismiss: "Más adelante",
+ dismiss: "Descartar",
close: "Cerrar",
},
},
@@ -262,7 +262,7 @@ const SurveyArea = {
heading: "Мы будем рады вашим отзывам",
body: "Помогите нам улучшить браузер Tor, пройдя 10-минутный опрос.",
launch: "Начать опрос",
- dismiss: "Не сейчас",
+ dismiss: "Отклонить",
close: "Закрыть",
},
},
@@ -274,7 +274,7 @@ const SurveyArea = {
heading: "Nous serions ravis d’avoir votre avis !",
body: "Aidez-nous à améliorer le navigateur Tor en répondant à cette enquête de 10 minutes.",
launch: "Lancer l'enquête",
- dismiss: "Pas maintenant",
+ dismiss: "Ignorer",
close: "Fermer",
},
},
@@ -287,7 +287,7 @@ const SurveyArea = {
heading: "Adoraríamos ouvir sua opinião",
body: "Ajude-nos a melhorar o Navegador Tor respondendo a esta pesquisa de 10 minutos.",
launch: "Iniciar a pesquisa",
- dismiss: "Mais tarde",
+ dismiss: "Dispensar",
close: "Fechar",
},
},
=====================================
mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/CampaignStrings.kt
=====================================
@@ -22,21 +22,21 @@ object CampaignStrings {
HeaderKey to "Danos tu opinión",
BodyKey to "Ayúdanos a mejorar el Navegador Tor completando esta encuesta de 10 minutos.",
CTAKey to "Iniciar la encuesta",
- DismissKey to "Cerrar",
+ DismissKey to "Descartar",
CloseKey to "Cerrar",
),
"ru" to hashMapOf(
HeaderKey to "Мы будем рады вашим отзывам",
BodyKey to "Помогите нам улучшить браузер Tor, пройдя 10-минутный опрос.",
CTAKey to "Начать опрос",
- DismissKey to "Закрыть",
+ DismissKey to "Отклонить",
CloseKey to "Закрыть",
),
"fr" to hashMapOf(
HeaderKey to "Nous serions ravis d’avoir votre avis !",
BodyKey to "Aidez-nous à améliorer le navigateur Tor en répondant à cette enquête de 10 minutes.",
CTAKey to "Lancer l'enquête",
- DismissKey to "Fermer",
+ DismissKey to "Ignorer",
CloseKey to "Fermer",
),
"pt" to hashMapOf(
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/3ebeb2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/3ebeb2…
You're receiving this email because of your account on gitlab.torproject.org.