Merge branch '7.2' into 'master'
7.2 See merge request librewolf-community/settings!48
This commit is contained in:
commit
a2f170447f
2 changed files with 28 additions and 6 deletions
|
|
@ -1,11 +1,33 @@
|
|||
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.
|
||||
|
||||
# 7.1
|
||||
# 7.2
|
||||
|
||||
**target commit**:
|
||||
|
||||
**base librewolf version**:
|
||||
**base librewolf version**: 106.x
|
||||
|
||||
**References**:
|
||||
|
||||
- hide Firefox View til reviewed, see https://gitlab.com/librewolf-community/browser/source/-/issues/78;
|
||||
|
||||
#### Removed preferences
|
||||
|
||||
```
|
||||
defaultPref("browser.ssl_override_behavior", 1); // deprecated
|
||||
```
|
||||
|
||||
#### Added preferences
|
||||
|
||||
```
|
||||
defaultPref("browser.tabs.firefox-view", false);
|
||||
```
|
||||
|
||||
# 7.1
|
||||
|
||||
**target commit**: 33e1ec1cb97d1f16a696057fe9007ae8391def6b
|
||||
|
||||
**base librewolf version**: 106.x
|
||||
|
||||
**References**:
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* WARNING: make sure the first line of this file is empty. this is a known bug.
|
||||
*/
|
||||
lockpref("librewolf.cfg.version", "7.1");
|
||||
lockpref("librewolf.cfg.version", "7.2");
|
||||
|
||||
|
||||
/** INDEX
|
||||
|
|
@ -193,9 +193,7 @@ defaultPref("security.OCSP.require", true); // set to hard-fail, might cause SEC
|
|||
/** [SECTION] TLS/SSL */
|
||||
pref("security.tls.enable_0rtt_data", false); // disable 0 RTT to improve tls 1.3 security
|
||||
pref("security.tls.version.enable-deprecated", false); // make TLS downgrades session only by enforcing it with pref()
|
||||
// show relevant and advanced issues on warnings and error screens
|
||||
defaultPref("browser.ssl_override_behavior", 1);
|
||||
defaultPref("browser.xul.error_pages.expert_bad_cert", true);
|
||||
defaultPref("browser.xul.error_pages.expert_bad_cert", true); // show relevant and advanced issues on warnings and error screens
|
||||
|
||||
/** [SECTION] PERMISSIONS */
|
||||
pref("permissions.delegation.enabled", false); // force permission request to show real origin
|
||||
|
|
@ -424,6 +422,8 @@ lockPref("browser.newtabpage.activity-stream.telemetry", false);
|
|||
// hide stories UI in about:preferences#home, empty highlights list
|
||||
lockPref("browser.newtabpage.activity-stream.feeds.section.topstories.options", "{\"hidden\":true}");
|
||||
lockPref("browser.newtabpage.activity-stream.default.sites", "");
|
||||
// hide Firefox View til reviewed, see https://gitlab.com/librewolf-community/browser/source/-/issues/78
|
||||
defaultPref("browser.tabs.firefox-view", false);
|
||||
|
||||
/** [SECTION] ABOUT
|
||||
* remove annoying ui elements from the about pages, including about:protections
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue