user12
(Jack)
June 21, 2024, 8:44am
1
New version of user.js:
user.js/user.js at 6446d73cf572fcdf631534a5a51276a64eec4a2d · arkenfox/user.js · GitHub
mentions under RFP title:
spoof timezone as Atlantic/Reykjavik (previously FF55+ was UTC)
What that means exactly? I search for it but I could not find anything useful…
UPDATE: My question is not about to learn UTC and time-zone terms. I know the terms. But why it changed today? Why we don’t use any other country which use UTC+0 ? What happened and make a decision?
user12
(Jack)
June 21, 2024, 5:01pm
4
I updated my original post. My question was not about to learn what they are… but why they make a decision today…
Thorin-Oakenpants provided a timely update in this GitHub comment which contains a link to your post:
opened 11:12PM - 06 Jun 24 UTC
closed 08:31AM - 25 Aug 24 UTC
changelog
## :green_square: v126
[FF126 release notes](https://www.mozilla.org/firefox/… 126.0/releasenotes/)
[FF126 for developers](https://developer.mozilla.org/docs/Mozilla/Firefox/Releases/126)
[FF126 security advisories](https://www.mozilla.org/security/advisories/mfsa2024-21/)
---
### NOTE
## ⭐ ⚠️ there is a migration of prefs coming in FF128 for sanitizing (on close and manually), including new ones,
so make sure to add any new corresponding sanitizing prefs to your overrides if required before 128
## ⭐ ⚠️ in FF128 I will also move arkenfox to using FPP not RFP see #1804
if you want to continue to use RFP (4501) and/or LB (4504) and/or disable webgl (4520) then you might as well add them to your overrides as well, so I don't change them on you without warning.
see [this comment below](https://github.com/arkenfox/user.js/issues/1846#issuecomment-2153830049) for my overrides
---
### CHANGELOG
- [all changes](https://github.com/arkenfox/user.js/compare/122.0...126.0)
- ToDo: diffs
- [FF122-FF123](https://github.com/arkenfox/user.js/issues/1814)
- [FF123-FF124](https://github.com/arkenfox/user.js/issues/1820)
- [FF124-FF125.0.1](https://github.com/arkenfox/user.js/issues/1836)
- [FF125.0.1-FF126](https://github.com/arkenfox/user.js/issues/1842)
- v126 PR is at #1816
---
- new and active in user.js 126
- for spoof english see #1827
```js
user_pref("browser.contentanalysis.default_allow", false); // [FF124+] [DEFAULT: false]
user_pref("browser.urlbar.yelp.featureGate", false); // [FF124+] [DEFAULT: false]
user_pref("privacy.spoof_english", 1);
```
- new and inactive in user.js 126
- for GPC see #1818
```js
// user_pref("browser.link.force_default_user_context_id_for_external_opens", true);
// user_pref("browser.urlbar.quicksuggest.enabled", false); // [FF92+] [DEFAULT: false]
// user_pref("privacy.fingerprintingProtection.remoteOverrides.enabled", false); // [FF127+]
// user_pref("privacy.globalprivacycontrol.enabled", true);
```
- new in user.js 126, required for 128
- see #1837
- `clearSiteData` FF128+ = `Privacy & Security>Browser Privacy>Cookies and Site Data>Clear Data`
- `privacy.cpd` old prefs migrate to `clearHistory`
- `privacy.clearOnShutdown` migrates to `clearOnShutdown_v2`
- migration (the prefs are reduced) is documented at [here](https://github.com/arkenfox/user.js/issues/1837#issuecomment-2142704385)
- I have kept the same values as before, so all you need to do is update your overrides to suit
```js
user_pref("privacy.clearHistory.cache", true);
user_pref("privacy.clearHistory.historyFormDataAndDownloads", true);
user_pref("privacy.clearHistory.cookiesAndStorage", false);
// user_pref("privacy.clearHistory.siteSettings", false);
user_pref("privacy.clearOnShutdown_v2.cache", true); // [FF128+] [DEFAULT: true]
user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true); // [FF128+] [DEFAULT: true]
// user_pref("privacy.clearOnShutdown_v2.siteSettings", false); // [FF128+] [DEFAULT: false]
user_pref("privacy.clearOnShutdown_v2.cookiesAndStorage", true) // Cookies, Site Data, Active Logins [FF128+]
user_pref("privacy.clearSiteData.cache", true);
user_pref("privacy.clearSiteData.cookiesAndStorage", false); // keep false until it respects "allow" site exceptions
user_pref("privacy.clearSiteData.historyFormDataAndDownloads", true);
// user_pref("privacy.clearSiteData.siteSettings", false);
```
- made inactive in user.js 126
- they are default false
```
// user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); // [FF95+] [DEFAULT: false]
// user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); // [FF92+] [DEFAULT: false]
```
- moved to `9999: DEPRECATED / REMOVED`
```js
user_pref("browser.messaging-system.whatsNewPanel.enabled", false); // deprecated FF126
user_pref("browser.ping-centre.telemetry", false); // deprecated FF123
```
---
STATS
```
STATS v126: up to and including section 4500, minus the parrots
=========
total: 192
inactive: 50
n/a 9 (FF128+: clearHistory, clearOnShutdown_v2, clearSiteData prefs)
---
active: 133
default: 23 (at least)
n/a: 2 (of the three prefs in 0204, only one will apply)
---
flipped: 108 (at most)
```
4 Likes