Pier Angelo Vendrame pushed to branch tor-browser-102.5.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
fdfd2b97 by Henry Wilkes at 2022-12-16T07:50:43+00:00
fixup! Bug 4234: Use the Firefox Update Process for Tor Browser.
- - - - -
1 changed file:
- browser/components/preferences/main.js
Changes:
=====================================
browser/components/preferences/main.js
=====================================
@@ -554,7 +554,7 @@ var gMainPane = {
.setAttribute("style", "display: none !important");
}
// Initialize the Firefox Updates section.
- let version = AppConstants.MOZ_APP_VERSION_DISPLAY;
+ let version = AppConstants.TOR_BROWSER_VERSION;
// Include the build ID if this is an "a#" (nightly) build
if (/a\d+$/.test(version)) {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fdfd2b9…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fdfd2b9…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-102.5.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
afa37f60 by Pier Angelo Vendrame at 2022-12-16T07:31:13+00:00
fixup! Firefox preference overrides.
Bug 41503: Disable restart in case of reboot and restore in case of crash
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -52,6 +52,9 @@ pref("browser.sessionstore.privacy_level", 2);
// Use the in-memory media cache and increase its maximum size (#29120)
pref("browser.privatebrowsing.forceMediaMemoryCache", true);
pref("media.memory_cache_max_size", 16384);
+// Disable restore in case of crash (tor-browser#41503)
+// This should not be needed in PBM, but we added it anyway like other options.
+pref("browser.sessionstore.resume_from_crash", false);
// Enable HTTPS-Only mode (tor-browser#19850)
pref("dom.security.https_only_mode", true);
@@ -454,8 +457,8 @@ pref("browser.onboarding.newtour", "welcome,privacy,tor-network-9.0,circuit-disp
pref("browser.onboarding.updatetour", "learn-more");
pref("browser.onboarding.skip-tour-button.hide", true);
-// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
#ifdef XP_WIN
+// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
// this pref changes the app's set AUMID to be dependent on the profile path, rather than
// attempting to read it from the registry; this is necessary so that the file generated
// by the jumplist system can be properly deleted if it is disabled
@@ -464,6 +467,10 @@ pref("browser.taskbar.lists.enabled", false);
pref("browser.taskbar.lists.frequent.enabled", false);
pref("browser.taskbar.lists.tasks.enabled", false);
pref("browser.taskbar.lists.recent.enabled", false);
+
+// Do not re-open Tor Browser automatically after reboots when "Restart apps" is
+// enabled (tor-browser#41503)
+pref("toolkit.winRegisterApplicationRestart", false);
#endif
// If we are bundling fonts, whitelist those bundled fonts, and restrict system fonts to a selection.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/afa37f6…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/afa37f6…
You're receiving this email because of your account on gitlab.torproject.org.