add services.settings.server pref
This commit is contained in:
parent
6e2e56e079
commit
c983fcc8be
2 changed files with 11 additions and 3 deletions
|
|
@ -12,6 +12,12 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
|
||||||
- trimming only applies to http websites so it's very minimal.
|
- trimming only applies to http websites so it's very minimal.
|
||||||
- crlite: https://bugzilla.mozilla.org/show_bug.cgi?id=1773371, we can stick to default 3 till v103, then the value will be changed to 2 which is the best possible if mozilla feels like it's ready usability wise.
|
- crlite: https://bugzilla.mozilla.org/show_bug.cgi?id=1773371, we can stick to default 3 till v103, then the value will be changed to 2 which is the best possible if mozilla feels like it's ready usability wise.
|
||||||
- add more entries to the native query stripping list, to [get in line with brave](https://github.com/brave/brave-core/blob/master/browser/net/brave_site_hacks_network_delegate_helper.cc).
|
- add more entries to the native query stripping list, to [get in line with brave](https://github.com/brave/brave-core/blob/master/browser/net/brave_site_hacks_network_delegate_helper.cc).
|
||||||
|
- `services.settings.server` can now be used as a pref, see: https://gitlab.com/librewolf-community/browser/source/-/merge_requests/37
|
||||||
|
|
||||||
|
#### Added preferences
|
||||||
|
```
|
||||||
|
defaultPref("services.settings.server", "https://%.invalid") // set the remote settings URL (REMOTE_SETTINGS_SERVER_URL in the code)
|
||||||
|
```
|
||||||
|
|
||||||
#### Removed preferences
|
#### Removed preferences
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -399,6 +399,8 @@ defaultPref("devtools.selfxss.count", 0); // required for devtools console to wo
|
||||||
lockPref("browser.translation.engine", ""); // remove translation engine
|
lockPref("browser.translation.engine", ""); // remove translation engine
|
||||||
defaultPref("accessibility.force_disabled", 1); // block accessibility services
|
defaultPref("accessibility.force_disabled", 1); // block accessibility services
|
||||||
defaultPref("webchannel.allowObject.urlWhitelist", ""); // do not receive objects through webchannels
|
defaultPref("webchannel.allowObject.urlWhitelist", ""); // do not receive objects through webchannels
|
||||||
|
// NOTE/TODO: net really the right category/section, probably?
|
||||||
|
defaultPref("services.settings.server", "https://%.invalid") // set the remote settings URL (REMOTE_SETTINGS_SERVER_URL in the code)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue