add mfM pref, remove handler prefs
This commit is contained in:
parent
8304e04391
commit
4fd96942aa
2 changed files with 20 additions and 13 deletions
|
|
@ -9,16 +9,33 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
|
||||||
|
|
||||||
**References**:
|
**References**:
|
||||||
- we are going to force history to custom mode and hide the UI for always on PB mode, a bunch of pointers are collected in [this MR](https://gitlab.com/librewolf-community/browser/source/-/merge_requests/21).
|
- we are going to force history to custom mode and hide the UI for always on PB mode, a bunch of pointers are collected in [this MR](https://gitlab.com/librewolf-community/browser/source/-/merge_requests/21).
|
||||||
|
- [handlers prefs are deprecated](https://bugzilla.mozilla.org/show_bug.cgi?id=1733497).
|
||||||
|
|
||||||
#### Added preferences
|
#### Added preferences
|
||||||
```
|
```
|
||||||
pref("privacy.history.custom", true);
|
pref("privacy.history.custom", true);
|
||||||
pref("browser.privatebrowsing.autostart", false);
|
pref("browser.privatebrowsing.autostart", false);
|
||||||
|
defaultPref("browser.preferences.moreFromMozilla", false); // hide about:preferences#moreFromMozilla
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Removed preferences
|
||||||
|
```
|
||||||
|
/** [SECTION] HANDLERS
|
||||||
|
* remove the default handlers for several tipe of files and services.
|
||||||
|
*/
|
||||||
|
lockPref("gecko.handlerService.schemes.mailto.0.uriTemplate", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.mailto.0.name", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.mailto.1.uriTemplate", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.mailto.1.name", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.irc.0.uriTemplate", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.irc.0.name", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.ircs.0.uriTemplate", "");
|
||||||
|
lockPref("gecko.handlerService.schemes.ircs.0.name", "");
|
||||||
```
|
```
|
||||||
|
|
||||||
# 5.5
|
# 5.5
|
||||||
|
|
||||||
**target commit**:
|
**target commit**: 0fc1ff53c99379d9d4625de65ea51287d57a0a3a
|
||||||
|
|
||||||
**base librewolf version**: 97.x
|
**base librewolf version**: 97.x
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -434,18 +434,6 @@ defaultPref("app.releaseNotesURL.aboutDialog", "https://gitlab.com/librewolf-com
|
||||||
defaultPref("app.update.url.details", "https://gitlab.com/librewolf-community/browser");
|
defaultPref("app.update.url.details", "https://gitlab.com/librewolf-community/browser");
|
||||||
defaultPref("app.update.url.manual", "https://gitlab.com/librewolf-community/browser");
|
defaultPref("app.update.url.manual", "https://gitlab.com/librewolf-community/browser");
|
||||||
|
|
||||||
/** [SECTION] HANDLERS
|
|
||||||
* remove the default handlers for several tipe of files and services.
|
|
||||||
*/
|
|
||||||
lockPref("gecko.handlerService.schemes.mailto.0.uriTemplate", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.mailto.0.name", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.mailto.1.uriTemplate", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.mailto.1.name", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.irc.0.uriTemplate", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.irc.0.name", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.ircs.0.uriTemplate", "");
|
|
||||||
lockPref("gecko.handlerService.schemes.ircs.0.name", "");
|
|
||||||
|
|
||||||
/** [SECTION] FIRST LAUNCH
|
/** [SECTION] FIRST LAUNCH
|
||||||
* disable what's new and ui tour on first start and updates. the browser
|
* disable what's new and ui tour on first start and updates. the browser
|
||||||
* should also not stress user about being the default one.
|
* should also not stress user about being the default one.
|
||||||
|
|
@ -496,6 +484,8 @@ defaultPref("lightweightThemes.getMoreURL", ""); // disable button to get more t
|
||||||
defaultPref("browser.topsites.useRemoteSetting", false); // hide sponsored shortcuts button
|
defaultPref("browser.topsites.useRemoteSetting", false); // hide sponsored shortcuts button
|
||||||
// ...and about:config
|
// ...and about:config
|
||||||
defaultPref("browser.aboutConfig.showWarning", false);
|
defaultPref("browser.aboutConfig.showWarning", false);
|
||||||
|
// hide about:preferences#moreFromMozilla
|
||||||
|
defaultPref("browser.preferences.moreFromMozilla", false);
|
||||||
|
|
||||||
/** [SECTION] RECOMMENDED
|
/** [SECTION] RECOMMENDED
|
||||||
* disable all "recommend as you browse" activity.
|
* disable all "recommend as you browse" activity.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue