This commit is contained in:
parent
54f2f968ab
commit
79f5ec4b40
2 changed files with 20 additions and 17 deletions
|
|
@ -11,6 +11,7 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
|
|||
- showing the insecure connection text is redundant as there's already the lock UI for http websites.
|
||||
- `browser.places.speculativeConnect.enabled` controls speculative connections for bookmarks and will be fully effective only once we hit v98.
|
||||
- we will no longer disable history but we'll clear it on close. [reasoning](https://gitlab.com/librewolf-community/settings/-/issues/135).
|
||||
- [download annoyances](https://gitlab.com/librewolf-community/settings/-/issues/144).
|
||||
|
||||
**Notes**: the settings have been re-organized and they should also be documented a bit better now.
|
||||
|
||||
|
|
@ -23,6 +24,7 @@ defaultPref("places.history.enabled", true);
|
|||
#### Added preferences
|
||||
```
|
||||
defaultPref("browser.places.speculativeConnect.enabled", false);
|
||||
defaultPref("browser.download.alwaysOpenPanel", false); // do not expand toolbar menu for every download, we already have enough interaction
|
||||
```
|
||||
|
||||
#### Changed preferences
|
||||
|
|
|
|||
|
|
@ -305,6 +305,7 @@ lockPref("browser.urlbar.quicksuggest.dataCollection.enabled", false); // defaul
|
|||
defaultPref("browser.download.useDownloadDir", false);
|
||||
defaultPref("browser.download.autohideButton", false); // do not hide download button automatically
|
||||
defaultPref("browser.download.manager.addToRecentDocs", false); // do not add downloads to recents
|
||||
defaultPref("browser.download.alwaysOpenPanel", false); // do not expand toolbar menu for every download, we already have enough interaction
|
||||
|
||||
/** [SECTION] AUTOPLAY
|
||||
* block autoplay unless element is clicked, and apply the policy to all elements
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue