diff --git a/docs/Changelog.md b/docs/Changelog.md index 614413e..aaf989d 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -9,11 +9,12 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl **References**: - 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 ``` lockPref("browser.promo.focus.enabled", false); +defaultPref("privacy.clearOnShutdown.offlineApps", true); ``` #### Changed preferences @@ -21,6 +22,11 @@ lockPref("browser.promo.focus.enabled", false); defaultPref("security.pki.crlite_mode", 3); // prev 2 ``` +#### Removed preferences +``` +defaultPref("privacy.clearOnShutdown.cookies", false); +``` + # 6.3 **target commit**: e84fc950bfd7c3542cb974e9d545b9b8e18c010d diff --git a/librewolf.cfg b/librewolf.cfg index c3e2bb9..8f07322 100755 --- a/librewolf.cfg +++ b/librewolf.cfg @@ -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. * 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.timeSpan", 0);