Pier Angelo Vendrame pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
ed873553 by Henry Wilkes at 2024-09-12T13:56:21+00:00
fixup! Bug 41435: Add a Tor Browser migration function
Bug 43118: Clear user preference for CFR since we have hidden the
settings.
- - - - -
1 changed file:
- browser/components/BrowserGlue.sys.mjs
Changes:
=====================================
browser/components/BrowserGlue.sys.mjs
=====================================
@@ -4862,7 +4862,9 @@ BrowserGlue.prototype = {
// (tor-browser#42283).
// Version 4: Tor Browser 14.0a4 (2024-09-02): Remove Twitter, Yahoo and
// YouTube search engines (tor-browser#41835).
- const TBB_MIGRATION_VERSION = 4;
+ // Version 5: Tor Browser 14.0a5: Clear user preference for CFR settings
+ // since we hid the UI (tor-browser#43118).
+ const TBB_MIGRATION_VERSION = 5;
const MIGRATION_PREF = "torbrowser.migration.version";
// If we decide to force updating users to pass through any version
@@ -4935,6 +4937,14 @@ BrowserGlue.prototype = {
"youtube(a)search.mozilla.org",
]);
}
+ if (currentVersion < 5) {
+ for (const pref of [
+ "browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons",
+ "browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features",
+ ]) {
+ Services.prefs.clearUserPref(pref);
+ }
+ }
Services.prefs.setIntPref(MIGRATION_PREF, TBB_MIGRATION_VERSION);
},
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ed87355…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ed87355…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch mullvad-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
33947bf8 by Henry Wilkes at 2024-09-12T11:08:59+01:00
fixup! MB 34: Hide unsafe and unwanted preferences UI
Bug 43118: Move patch to hide CRF settings to base-browser.
- - - - -
e46bd42a by Henry Wilkes at 2024-09-12T11:28:46+01:00
Bug 43118: Hide feature recommendation (CFR) settings.
- - - - -
0 changed files:
Changes:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/0f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/0f…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
abe6e299 by Nicolas Vigier at 2024-09-12T10:50:05+02:00
Bug 41106: Force rebuild of application-services
As a workaround to avoid a reproducibility issue when application-services
has not been rebuilt in a long time.
- - - - -
1 changed file:
- projects/application-services/config
Changes:
=====================================
projects/application-services/config
=====================================
@@ -16,8 +16,12 @@ var:
steps:
build:
- filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
+ filename: '[% project %]-[% c("version") %]-[% c("var/rebuild_date") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
var:
+ # Due to some issue in application-service causing non matching
+ # builds when build time differ a lot, we need to do periodic rebuilds:
+ # https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/merge_re…
+ rebuild_date: '2024-09-12'
arch_deps:
# Needed to build NSS
- gyp
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/a…
You're receiving this email because of your account on gitlab.torproject.org.