close #262
This commit is contained in:
parent
c2005dad13
commit
2c561ca85d
2 changed files with 24 additions and 2 deletions
|
|
@ -1,9 +1,23 @@
|
||||||
This changelog will be used from now on to document changes in a precise manner, with a list of changes for each setting version.
|
This changelog will be used from now on to document changes in a precise manner, with a list of changes for each setting version.
|
||||||
Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config.
|
Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config.
|
||||||
|
|
||||||
|
# 7.7
|
||||||
|
|
||||||
|
**base librewolf version**: 115.x
|
||||||
|
|
||||||
|
**References**:
|
||||||
|
- https://gitlab.com/librewolf-community/settings/-/issues/262
|
||||||
|
|
||||||
|
#### Added preferences
|
||||||
|
|
||||||
|
```
|
||||||
|
defaultPref("browser.urlbar.suggest.weather", false);
|
||||||
|
defaultPref("extensions.quarantinedDomains.enabled", false);
|
||||||
|
```
|
||||||
|
|
||||||
# 7.6
|
# 7.6
|
||||||
|
|
||||||
**base librewolf version**: 111.x
|
**base librewolf version**: 111.x - 114.x
|
||||||
|
|
||||||
**References**:
|
**References**:
|
||||||
- the prefs added in the `LOGGING` section are off by default in the official Mozilla builds, so we are just acting like Firefox here;
|
- the prefs added in the `LOGGING` section are off by default in the official Mozilla builds, so we are just acting like Firefox here;
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
*
|
*
|
||||||
* WARNING: make sure the first line of this file is empty. this is a known bug.
|
* WARNING: make sure the first line of this file is empty. this is a known bug.
|
||||||
*/
|
*/
|
||||||
lockPref("librewolf.cfg.version", "7.6");
|
lockPref("librewolf.cfg.version", "7.7");
|
||||||
|
|
||||||
|
|
||||||
/** INDEX
|
/** INDEX
|
||||||
|
|
@ -274,6 +274,7 @@ defaultPref("browser.search.update", false);
|
||||||
* this also includes the best match feature, as it is part of firefox suggest.
|
* this also includes the best match feature, as it is part of firefox suggest.
|
||||||
*/
|
*/
|
||||||
pref("browser.urlbar.quicksuggest.enabled", false);
|
pref("browser.urlbar.quicksuggest.enabled", false);
|
||||||
|
defaultPref("browser.urlbar.suggest.weather", false); // disable weather suggestions in urlbar once they are no longer behind feature gate
|
||||||
|
|
||||||
/** [SECTION] DOWNLOADS
|
/** [SECTION] DOWNLOADS
|
||||||
* user interaction should always be required for downloads, as a way to enhance security by asking
|
* user interaction should always be required for downloads, as a way to enhance security by asking
|
||||||
|
|
@ -314,6 +315,13 @@ defaultPref("middlemouse.contentLoadURL", false); // prevent mouse middle click
|
||||||
defaultPref("extensions.webextensions.restrictedDomains", "");
|
defaultPref("extensions.webextensions.restrictedDomains", "");
|
||||||
defaultPref("extensions.enabledScopes", 5); // hidden
|
defaultPref("extensions.enabledScopes", 5); // hidden
|
||||||
defaultPref("extensions.postDownloadThirdPartyPrompt", false);
|
defaultPref("extensions.postDownloadThirdPartyPrompt", false);
|
||||||
|
/**
|
||||||
|
* the pref disables quarantined domains.
|
||||||
|
* this is a security feature, we should remove it with v116 as there will be a UI to control this per-extension.
|
||||||
|
* unless we patch remote settings we rely on static dumps. this means even if we did not flip this pref it would
|
||||||
|
* not make a difference at the moment.
|
||||||
|
*/
|
||||||
|
defaultPref("extensions.quarantinedDomains.enabled", false);
|
||||||
|
|
||||||
/** [SECTION] SYSTEM
|
/** [SECTION] SYSTEM
|
||||||
* built-in extension are not allowed to auto-update. additionally the reporter extension
|
* built-in extension are not allowed to auto-update. additionally the reporter extension
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue