morgan pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
cac6c9f2 by cypherpunks1 at 2024-10-21T19:15:36+00:00
fixup! [android] Rename as Tor Browser
Bug 43228: Fix the What's new text
- - - - -
c7d2cb7f by cypherpunks1 at 2024-10-21T19:15:36+00:00
fixup! Bug 42195: [android] Fix "Whats new URL"
Bug 43228: Fix the What's new URL
- - - - -
2 changed files:
- mobile/android/fenix/app/src/main/java/org/mozilla/fenix/settings/SupportUtils.kt
- mobile/android/fenix/app/src/main/res/values/static_strings.xml
Changes:
=====================================
mobile/android/fenix/app/src/main/java/org/mozilla/fenix/settings/SupportUtils.kt
=====================================
@@ -110,14 +110,10 @@ object SupportUtils {
}
fun getTorWhatsNewUrl(): String {
- val fullVersionName: String = BuildConfig.VERSION_NAME // e.g. "115.2.1-beta (13.5a5)"
- if (!fullVersionName.contains('(') || !fullVersionName.contains(')')) {
+ val versionNumber = BuildConfig.VERSION_NAME.substringBefore(' ') // e.g. "13.5a5"
+ if (versionNumber.isEmpty()) {
return "https://blog.torproject.org/"
}
- val versionNumber: String = fullVersionName.substring(
- fullVersionName.indexOf('(') + 1,
- fullVersionName.indexOf(')'),
- ) // e.g. "13.5a5"
val alpha: String = if (versionNumber.contains('a')) "alpha-" else ""
val versionNumberNoDecimals: String =
versionNumber.split('.').joinToString("") // e.g. "135a5"
=====================================
mobile/android/fenix/app/src/main/res/values/static_strings.xml
=====================================
@@ -5,7 +5,7 @@
<resources>
<!-- Name of the application -->
<string name="app_name" translatable="false">Tor Browser Dev</string>
- <string name="firefox" translatable="false">Firefox</string>
+ <string name="firefox" translatable="false">Tor Browser</string>
<!-- Preference for developers -->
<string name="preference_leakcanary" translatable="false">LeakCanary</string>
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/903795…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/903795…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
1370d5e6 by Henry Wilkes at 2024-10-21T16:52:05+01:00
fixup! Bug 30237: Add v3 onion services client authentication prompt
Bug 43218: Switch to browser.reload, since "Browser:Reload" signal was
dropped upstream.
- - - - -
1 changed file:
- browser/components/onionservices/content/authPrompt.js
Changes:
=====================================
browser/components/onionservices/content/authPrompt.js
=====================================
@@ -227,7 +227,7 @@ var OnionAuthPrompt = {
notification.remove();
// Success! Reload the page.
- browser.sendMessageToActor("Browser:Reload", {}, "BrowserTab");
+ browser.reload();
},
/**
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1370d5e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1370d5e…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
43b3ff4d by Dan Ballard at 2024-10-21T15:20:38+00:00
Bug 43006: Disable RFP for Font Visibility on Android
- - - - -
1 changed file:
- dom/base/Document.cpp
Changes:
=====================================
dom/base/Document.cpp
=====================================
@@ -16403,6 +16403,12 @@ bool Document::RecomputeResistFingerprinting() {
}
bool Document::ShouldResistFingerprinting(RFPTarget aTarget) const {
+#ifdef ANDROID
+ if (aTarget == RFPTarget::FontVisibilityBaseSystem ||
+ aTarget == RFPTarget::FontVisibilityLangPack) {
+ return false;
+ }
+#endif
return mShouldResistFingerprinting &&
nsRFPService::IsRFPEnabledFor(this->IsInPrivateBrowsing(), aTarget,
mOverriddenFingerprintingSettings);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/43b3ff4…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/43b3ff4…
You're receiving this email because of your account on gitlab.torproject.org.