cookie exceptions are finally fixed
This commit is contained in:
parent
6b9383dc53
commit
7d696d49db
2 changed files with 8 additions and 2 deletions
|
|
@ -9,11 +9,12 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
|
||||||
|
|
||||||
**References**:
|
**References**:
|
||||||
- hide Firefox Focus promo in private tabs.
|
- hide Firefox Focus promo in private tabs.
|
||||||
- double checking revoked certificates with both CRL and OCSP allows to detect false positives and it is also [the default](https://hg.mozilla.org/mozilla-central/rev/a6ba7b4ee178) in v99+.
|
- double checking revoked certificates with both CRL and OCSP allows to detect false positives and it is also [the default](https://hg.mozilla.org/mozilla-central/rev/a6ba7b4ee17](https://github.com/arkenfox/user.js/issues/1441) so we can tick all boxes in that UI as well.
|
||||||
|
|
||||||
#### Added preferences
|
#### Added preferences
|
||||||
```
|
```
|
||||||
lockPref("browser.promo.focus.enabled", false);
|
lockPref("browser.promo.focus.enabled", false);
|
||||||
|
defaultPref("privacy.clearOnShutdown.offlineApps", true);
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Changed preferences
|
#### Changed preferences
|
||||||
|
|
@ -21,6 +22,11 @@ lockPref("browser.promo.focus.enabled", false);
|
||||||
defaultPref("security.pki.crlite_mode", 3); // prev 2
|
defaultPref("security.pki.crlite_mode", 3); // prev 2
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Removed preferences
|
||||||
|
```
|
||||||
|
defaultPref("privacy.clearOnShutdown.cookies", false);
|
||||||
|
```
|
||||||
|
|
||||||
# 6.3
|
# 6.3
|
||||||
|
|
||||||
**target commit**: e84fc950bfd7c3542cb974e9d545b9b8e18c010d
|
**target commit**: e84fc950bfd7c3542cb974e9d545b9b8e18c010d
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ defaultPref("network.cookie.thirdparty.nonsecureSessionOnly", true);
|
||||||
* we disable it but cookies and site data are still cleared per session unless exceptions are set.
|
* we disable it but cookies and site data are still cleared per session unless exceptions are set.
|
||||||
* all the cleaning prefs true by default except for siteSetting and offlineApps, which is what we want.
|
* all the cleaning prefs true by default except for siteSetting and offlineApps, which is what we want.
|
||||||
*/
|
*/
|
||||||
defaultPref("privacy.clearOnShutdown.cookies", false);
|
defaultPref("privacy.clearOnShutdown.offlineApps", true);
|
||||||
defaultPref("privacy.sanitize.sanitizeOnShutdown", true);
|
defaultPref("privacy.sanitize.sanitizeOnShutdown", true);
|
||||||
defaultPref("privacy.sanitize.timeSpan", 0);
|
defaultPref("privacy.sanitize.timeSpan", 0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue