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.
|
- 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.
|
- `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).
|
- 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.
|
**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
|
#### Added preferences
|
||||||
```
|
```
|
||||||
defaultPref("browser.places.speculativeConnect.enabled", false);
|
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
|
#### Changed preferences
|
||||||
|
|
|
||||||
|
|
@ -305,6 +305,7 @@ lockPref("browser.urlbar.quicksuggest.dataCollection.enabled", false); // defaul
|
||||||
defaultPref("browser.download.useDownloadDir", false);
|
defaultPref("browser.download.useDownloadDir", false);
|
||||||
defaultPref("browser.download.autohideButton", false); // do not hide download button automatically
|
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.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
|
/** [SECTION] AUTOPLAY
|
||||||
* block autoplay unless element is clicked, and apply the policy to all elements
|
* block autoplay unless element is clicked, and apply the policy to all elements
|
||||||
|
|
@ -449,22 +450,22 @@ defaultPref("browser.shell.checkDefaultBrowser", false);
|
||||||
/** [SECTION] NEW TAB PAGE
|
/** [SECTION] NEW TAB PAGE
|
||||||
* we want the new tab page to display nothing but the search bar without anything distracting.
|
* we want the new tab page to display nothing but the search bar without anything distracting.
|
||||||
*/
|
*/
|
||||||
defaultPref("browser.newtab.preload", false);
|
defaultPref("browser.newtab.preload", false);
|
||||||
defaultPref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false);
|
defaultPref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false);
|
||||||
defaultPref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
|
defaultPref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
|
||||||
defaultPref("browser.newtabpage.activity-stream.feeds.topsites", false);
|
defaultPref("browser.newtabpage.activity-stream.feeds.topsites", false);
|
||||||
// hide pocket and sponsored content, from new tab page and search bar
|
// hide pocket and sponsored content, from new tab page and search bar
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
|
lockPref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.system.topstories", false);
|
lockPref("browser.newtabpage.activity-stream.feeds.system.topstories", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
lockPref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.section.topstories.options", "{\"hidden\":true}"); // hide buggy pocket section from about:preferences#home
|
lockPref("browser.newtabpage.activity-stream.feeds.section.topstories.options", "{\"hidden\":true}"); // hide buggy pocket section from about:preferences#home
|
||||||
lockPref("browser.newtabpage.activity-stream.showSponsored", false);
|
lockPref("browser.newtabpage.activity-stream.showSponsored", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.showSponsoredTopSites", false);
|
lockPref("browser.newtabpage.activity-stream.showSponsoredTopSites", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.telemetry", false);
|
lockPref("browser.newtabpage.activity-stream.telemetry", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.default.sites", "");
|
lockPref("browser.newtabpage.activity-stream.default.sites", "");
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.discoverystreamfeed", false);
|
lockPref("browser.newtabpage.activity-stream.feeds.discoverystreamfeed", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.discoverystream.enabled", false);
|
lockPref("browser.newtabpage.activity-stream.discoverystream.enabled", false);
|
||||||
lockPref("browser.newtabpage.activity-stream.feeds.snippets", false); // default
|
lockPref("browser.newtabpage.activity-stream.feeds.snippets", false); // default
|
||||||
|
|
||||||
/** [SECTION] ABOUT
|
/** [SECTION] ABOUT
|
||||||
* remove annoying ui elements from the about pages, including about:protections
|
* remove annoying ui elements from the about pages, including about:protections
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue