unlock fixup

This commit is contained in:
fxbrit 2022-07-18 00:25:21 +02:00
parent b7cfe5831b
commit 249041a8e7
2 changed files with 7 additions and 1 deletions

View file

@ -10,6 +10,7 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
**References**: **References**:
- the cookie lifetime policy pref has been deprecated, see https://gitlab.com/librewolf-community/settings/-/issues/199; - the cookie lifetime policy pref has been deprecated, see https://gitlab.com/librewolf-community/settings/-/issues/199;
- stop disabling IPv6, see https://gitlab.com/librewolf-community/settings/-/issues/96; - stop disabling IPv6, see https://gitlab.com/librewolf-community/settings/-/issues/96;
- discussion about domain guessing is available at https://gitlab.com/librewolf-community/settings/-/issues/197.
#### Removed preferences #### Removed preferences
``` ```
@ -17,6 +18,11 @@ defaultPref("network.cookie.lifetimePolicy", 2); // deprecated
defaultPref("network.dns.disableIPv6", true); defaultPref("network.dns.disableIPv6", true);
``` ```
#### Unlocked preferences
```
defaultPref("browser.fixup.alternate.enabled", false); // default v104+
```
# 6.6 # 6.6
**target commit**: from bc16f4f14185e8791d819a69b7d798082ace67f8 to c983fcc8bea8fab31265bc345217b59ce5128de2 **target commit**: from bc16f4f14185e8791d819a69b7d798082ace67f8 to c983fcc8bea8fab31265bc345217b59ce5128de2

View file

@ -143,7 +143,7 @@ defaultPref("browser.places.speculativeConnect.enabled", false);
// disable speculative connections and domain guessing from the urlbar // disable speculative connections and domain guessing from the urlbar
defaultPref("browser.urlbar.dnsResolveSingleWordsAfterSearch", 0); defaultPref("browser.urlbar.dnsResolveSingleWordsAfterSearch", 0);
defaultPref("browser.urlbar.speculativeConnect.enabled", false); defaultPref("browser.urlbar.speculativeConnect.enabled", false);
lockPref("browser.fixup.alternate.enabled", false); // default v104+ defaultPref("browser.fixup.alternate.enabled", false); // default v104+
/** [SECTION] OFFLINE /** [SECTION] OFFLINE
* let users set the browser as offline, without the browser trying to guess. * let users set the browser as offline, without the browser trying to guess.