Dan Ballard pushed to branch tor-browser-151.0a1-16.0-1 at The Tor Project / Applications / Tor Browser Commits: 11e16f5f by Dan Ballard at 2026-05-26T10:22:18-07:00 fixup! [android] Disable features and functionality TB 44323: Audit prefs 128-140 in android - - - - - 17a120e3 by Dan Ballard at 2026-05-26T10:22:26-07:00 fixup! TB 41972: [android] Disable Mozilla onboarding TB 44323: Audit prefs 128 to 140 - - - - - 641330aa by Dan Ballard at 2026-05-26T10:22:34-07:00 fixup! TB 44027 [android]: Update PBM lockscreen TB 44323: Audit prefs 2128 to 140 - - - - - 2 changed files: - mobile/android/fenix/app/nimbus.fml.yaml - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Changes: ===================================== mobile/android/fenix/app/nimbus.fml.yaml ===================================== @@ -43,27 +43,27 @@ features: type: Map<HomeScreenSection, Boolean> default: { - "top-sites": true, - "jump-back-in": true, + "top-sites": false, + "jump-back-in": false, "bookmarks": true, - "recent-explorations": true, - "pocket": true, - "pocket-sponsored-stories": true, - "synced-tabs": true, - "collections": true, + "recent-explorations": false, + "pocket": false, + "pocket-sponsored-stories": false, + "synced-tabs": false, + "collections": false, "privacy-report": false, } defaults: - channel: nightly value: { "sections-enabled": { - "top-sites": true, - "jump-back-in": true, + "top-sites": false, + "jump-back-in": false, "bookmarks": true, - "recent-explorations": true, - "pocket": true, - "synced-tabs": true, - "collections": true, + "recent-explorations": false, + "pocket": false, + "synced-tabs": false, + "collections": false, "privacy-report": false, } } @@ -221,7 +221,7 @@ features: glean: description: "A feature that provides server-side configurations for Glean metrics (aka Server Knobs)." - allow-coenrollment: true + allow-coenrollment: false variables: gleanMetricConfiguration: description: Configuration for Glean Server Knobs @@ -230,7 +230,7 @@ features: enable-event-timestamps: description: "Enables precise event timestamps for Glean events" type: Boolean - default: true + default: false delay-ping-lifetime-io: description: "Glean will delay io for ping lifetime metrics" type: Boolean @@ -308,7 +308,7 @@ features: defaults: - channel: developer value: - enabled: true + enabled: false template-message: sent_from_firefox_template download-link: "[Download Link]" show-snackbar: true @@ -384,11 +384,11 @@ features: defaults: - channel: developer value: - enabled: true - boost-amp-wiki: true + enabled: false + boost-amp-wiki: false - channel: nightly value: - enabled: true + enabled: false nimbus-is-ready: description: > @@ -455,10 +455,10 @@ features: defaults: - channel: developer value: - enabled: true + enabled: false - channel: nightly value: - enabled: true + enabled: false minimal-addressbar: description: Show a smaller height bottom addressbar with just the URL. @@ -510,7 +510,7 @@ features: show a "close" button for tabs that are currently open on other supported devices in the synced tabs tray. type: Boolean - default: true + default: false fission: description: The feature that controls whether fission is enabled or not in Gecko. @@ -575,7 +575,7 @@ features: description: > Enables / disables fingerprinting protection in private browsing mode. type: Boolean - default: true + default: false overrides: description: > The protection overrides to add or remove fingerprinting protection @@ -629,7 +629,7 @@ features: description: > Enables / disables third-party cookie blocking in private browsing mode. type: Boolean - default: true + default: false safe-browsing-v5: description: Control Safe Browsing V5. @@ -893,7 +893,7 @@ features: description: > Uses search configuration from remote servers . type: Boolean - default: true + default: false same-document-navigation-overrides-load-type: description: Control whether the same document navigation overrides the load type. variables: @@ -914,7 +914,7 @@ features: description: > When `true`, include DoH settings in the settings UI. type: Boolean - default: true + default: false autoselect-enabled: description: > Controls the network.android_doh.autoselect_enabled pref and automatically chooses a DoH provider when Default Protection mode is selected. @@ -928,7 +928,7 @@ features: description: > Whether or not to enable private browsing mode lock. type: Boolean - default: true + default: false app-links: description: Control behavior of app links handling in the browser. ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt ===================================== @@ -552,7 +552,7 @@ class Settings( var privateBrowsingLockedFeatureEnabled by booleanPreference( key = appContext.getPreferenceKey(R.string.pref_key_private_browsing_locked_enabled), - default = { false }, + default = { FxNimbus.features.privateBrowsingLock.value().enabled }, ) var privateBrowsingModeLocked by booleanPreference( @@ -2378,7 +2378,7 @@ class Settings( */ var shouldShowMarketingOnboarding by booleanPreference( appContext.getPreferenceKey(R.string.pref_key_should_show_marketing_onboarding), - default = true, + default = false, ) val shouldUseComposableToolbar = true @@ -2691,7 +2691,7 @@ class Settings( */ var isFirstTimeEngagingWithSignup: Boolean by booleanPreference( appContext.getPreferenceKey(R.string.pref_key_first_time_engage_with_signup), - default = true, + default = false, ) /** View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/3bc02e6... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/3bc02e6... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help