add services.settings.server pref

This commit is contained in:
ohfp 2022-07-01 17:01:21 +02:00
parent 6e2e56e079
commit c983fcc8be
2 changed files with 11 additions and 3 deletions

View file

@ -3,7 +3,7 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl
# 6.6 # 6.6
**target commit**: **target commit**:
**base librewolf version**: 102.x **base librewolf version**: 102.x
@ -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
``` ```
@ -573,7 +579,7 @@ pref("browser.urlbar.quicksuggest.scenario", ""); // disable firefox suggests an
#### Commented preferences #### Commented preferences
``` ```
// pref("network.trr.mode", 2); // previously uncommented defaultPref with value 5 // pref("network.trr.mode", 2); // previously uncommented defaultPref with value 5
// pref("network.trr.uri", "https://dns.quad9.net/dns-query"); // previously uncommented defaultPref with empty value // pref("network.trr.uri", "https://dns.quad9.net/dns-query"); // previously uncommented defaultPref with empty value
``` ```
@ -744,5 +750,5 @@ lockPref("privacy.override_rfp_for_color_scheme", false);
**base librewolf version**: 89.x **base librewolf version**: 89.x
This is the initial release from which we start tagging and versioning settings. For previous changes see This is the initial release from which we start tagging and versioning settings. For previous changes see
[here](https://gitlab.com/librewolf-community/settings/-/blob/master/docs/changelog-legacy.md). [here](https://gitlab.com/librewolf-community/settings/-/blob/master/docs/changelog-legacy.md).

View file

@ -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)