richard pushed to branch tor-browser-115.8.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
-
ba957be4
by Henry Wilkes at 2024-03-06T18:40:27+00:00
-
cba03e79
by Henry Wilkes at 2024-03-06T18:40:27+00:00
-
f44e1549
by Henry Wilkes at 2024-03-06T18:40:27+00:00
3 changed files:
- browser/app/profile/000-tor-browser.js
- browser/components/abouttor/AboutTorMessage.sys.mjs
- tbb-tests/browser_tor_TB4.js
Changes:
| ... | ... | @@ -46,8 +46,6 @@ pref("network.http.http3.enable", false); |
| 46 | 46 | // 0 = do not use a second connection, see all.js and #7656
|
| 47 | 47 | pref("network.http.connection-retry-timeout", 0);
|
| 48 | 48 | |
| 49 | -#expand pref("torbrowser.version", __BASE_BROWSER_VERSION_QUOTED__);
|
|
| 50 | - |
|
| 51 | 49 | // Tor Browser used to be compatible with non-Tor proxies. This feature is not
|
| 52 | 50 | // available anymore, but this legacy preference can be still used to disable
|
| 53 | 51 | // first-party domain circuit isolation.
|
| ... | ... | @@ -27,7 +27,9 @@ export const AboutTorMessage = { |
| 27 | 27 | if (Services.prefs.getBoolPref(shouldNotifyPref, false)) {
|
| 28 | 28 | Services.prefs.clearUserPref(shouldNotifyPref);
|
| 29 | 29 | return {
|
| 30 | - updateVersion: Services.prefs.getCharPref("torbrowser.version"),
|
|
| 30 | + updateVersion: Services.prefs.getCharPref(
|
|
| 31 | + "browser.startup.homepage_override.torbrowser.version"
|
|
| 32 | + ),
|
|
| 31 | 33 | updateURL:
|
| 32 | 34 | Services.prefs.getCharPref("torbrowser.post_update.url", "") ||
|
| 33 | 35 | Services.urlFormatter.formatURLPref("startup.homepage_override_url"),
|
| ... | ... | @@ -11,9 +11,6 @@ let expectedPrefs = [ |
| 11 | 11 | |
| 12 | 12 | // Disable the "Refresh" prompt that is displayed for stale profiles.
|
| 13 | 13 | ["browser.disableResetPrompt", true],
|
| 14 | - |
|
| 15 | - // Version placeholder
|
|
| 16 | - ["torbrowser.version", "dev-build"],
|
|
| 17 | 14 | ];
|
| 18 | 15 | |
| 19 | 16 | let getPref = function (prefName) {
|