bring back fixup

This commit is contained in:
fxbrit 2022-07-18 00:02:34 +02:00
parent 0d631d6872
commit b7cfe5831b
2 changed files with 1 additions and 2 deletions

View file

@ -10,13 +10,11 @@ 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
``` ```
defaultPref("network.cookie.lifetimePolicy", 2); // deprecated defaultPref("network.cookie.lifetimePolicy", 2); // deprecated
defaultPref("network.dns.disableIPv6", true); defaultPref("network.dns.disableIPv6", true);
lockPref("browser.fixup.alternate.enabled", false);
``` ```
# 6.6 # 6.6

View file

@ -143,6 +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+
/** [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.