Merge branch 'v7.3' into 'master'
v7.3 See merge request librewolf-community/settings!51
This commit is contained in:
commit
ef88112135
2 changed files with 25 additions and 5 deletions
|
|
@ -3,7 +3,30 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
|
|||
|
||||
# 7.2
|
||||
|
||||
**target commit**:
|
||||
**target commit**: from 9395f5c0e061250acbcbcb523d2270d57136d411 to
|
||||
|
||||
**base librewolf version**: 107.x
|
||||
|
||||
**References**:
|
||||
|
||||
- mixed content is already covered by HTTPS-only-mode;
|
||||
- [dom.disable_beforeunload is no longer necessary](https://github.com/arkenfox/user.js/issues/1575);
|
||||
- [beacon API is fine](https://gitlab.com/librewolf-community/settings/-/issues/229);
|
||||
- [Firefox Vew pref was removed in previous commit](https://gitlab.com/librewolf-community/settings/-/commit/9395f5c0e061250acbcbcb523d2270d57136d411), adding reference to the changelog;
|
||||
|
||||
#### Removed preferences
|
||||
|
||||
```
|
||||
defaultPref("security.mixed_content.block_display_content", true); // block insecure passive content
|
||||
defaultPref("dom.disable_beforeunload", true);
|
||||
defaultPref("dom.disable_open_during_load", true); // default
|
||||
defaultPref("browser.tabs.firefox-view", false);
|
||||
pref("beacon.enabled", false);
|
||||
```
|
||||
|
||||
# 7.2
|
||||
|
||||
**target commit**: from 7211e954b82da3cde5c5cf2d613fe1f84288e635 to eb51b4785e5b67fc388bcbd06a8324d5a54f5850
|
||||
|
||||
**base librewolf version**: 106.x
|
||||
|
||||
|
|
|
|||
|
|
@ -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.2");
|
||||
lockPref("librewolf.cfg.version", "7.3");
|
||||
|
||||
|
||||
/** INDEX
|
||||
|
|
@ -92,7 +92,6 @@ defaultPref("librewolf.uBO.assetsBootstrapLocation", "https://gitlab.com/librewo
|
|||
/** [SECTION] HTTPS */
|
||||
defaultPref("dom.security.https_only_mode", true); // only allow https in all windows, including private browsing
|
||||
defaultPref("network.auth.subresource-http-auth-allow", 1); // block HTTP authentication credential dialogs
|
||||
defaultPref("security.mixed_content.block_display_content", true); // block insecure passive content
|
||||
|
||||
/** [SECTION] REFERERS
|
||||
* to enhance privacy but keep a certain level of usability we trim cross-origin
|
||||
|
|
@ -292,8 +291,6 @@ defaultPref("media.autoplay.default", 5);
|
|||
/** [SECTION] POP-UPS AND WINDOWS
|
||||
* disable annoyin pop-ups and limit events that can trigger them.
|
||||
*/
|
||||
defaultPref("dom.disable_beforeunload", true); // disable "confirm you want to leave" pop-ups
|
||||
defaultPref("dom.disable_open_during_load", true); // block pop-ups windows
|
||||
defaultPref("dom.popup_allowed_events", "click dblclick mousedown pointerdown");
|
||||
/**
|
||||
* prevent scripts from resizing existing windows and opening new ones, by forcing them into
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue