summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2019-10-22 21:32:52 +0200
committerThomas Deutschmann <whissi@gentoo.org>2019-10-22 21:32:52 +0200
commitf78d10bfa2ea4adac3bdae9532f68862575c69b5 (patch)
treec93a96d83f27933fb48d6322de1d96309176ac76 /www-client/firefox-bin/files
parentwww-client/firefox-bin: bump to v68.2.0 (diff)
downloadgentoo-f78d10bfa2ea4adac3bdae9532f68862575c69b5.tar.gz
gentoo-f78d10bfa2ea4adac3bdae9532f68862575c69b5.tar.bz2
gentoo-f78d10bfa2ea4adac3bdae9532f68862575c69b5.zip
www-client/firefox-bin: bump to v70.0
Due to privacy concerns (encrypting DNS might be a good thing, sending all DNS traffic to Cloudflare by default is not a good idea and applications should respect OS configured settings), "network.trr.mode" was set to 5 ("Off by choice") by default. Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'www-client/firefox-bin/files')
-rw-r--r--www-client/firefox-bin/files/all-gentoo-3.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/www-client/firefox-bin/files/all-gentoo-3.js b/www-client/firefox-bin/files/all-gentoo-3.js
new file mode 100644
index 000000000000..f6ef7106aeb7
--- /dev/null
+++ b/www-client/firefox-bin/files/all-gentoo-3.js
@@ -0,0 +1,15 @@
+// Ensure preference can't be changed by users
+lockPref("app.update.auto", false);
+lockPref("app.update.enabled", false);
+
+// Allow user to change based on needs
+defaultPref("browser.display.use_system_colors", true);
+defaultPref("spellchecker.dictionary_path", "/usr/share/myspell");
+defaultPref("browser.shell.checkDefaultBrowser", false);
+defaultPref("intl.locale.requested", "");
+
+// Preferences that should be reset every session
+pref("browser.EULA.override", true);
+
+// We believe in user choice - disable DNS-over-HTTPS by default
+pref("network.trr.mode", 5);