mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
- add a patch that's currently being worked upstream which fixes runtime issues when compiled with gcc and lto, - attempt removing "*bgo-925101-force-software-rendering-during-pgo-build.patch" as it's supposed to be fixed by mesa updates, - disable pref "permissions.manager.remote.enabled" by default - can be enabled by corporations managing their browsers via remote-settings, - handle rust-simd by enabling it on supported arches, so unkeyworded arches can probably compile the browser with --disable-rust-simd by default without editing the ebuild, - increase nss, icu and libpng version requirements, - remove our custom patch enabling vaapi on all amd cards since it's merged upstream, - remove our custom system-av1 & system-libvpx patches as they've been merged upstream. Bug: https://bugs.gentoo.org/950229 Bug: https://bugs.gentoo.org/950305 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
14 lines
778 B
JavaScript
14 lines
778 B
JavaScript
pref("general.smoothScroll", true);
|
|
pref("general.autoScroll", false);
|
|
pref("browser.urlbar.hideGoButton", true);
|
|
pref("browser.shell.checkDefaultBrowser", false);
|
|
pref("browser.EULA.override", true);
|
|
pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
|
pref("intl.locale.requested", "");
|
|
/* Disable DoH by default */
|
|
pref("network.trr.mode", 5);
|
|
/* Disable use of Mozilla Normandy service by default */
|
|
pref("app.normandy.enabled", false);
|
|
/* Disable remote-settings from permissions manager by default but don't lock it
|
|
so corporations can easily turn it back on if there's demand for that */
|
|
pref("permissions.manager.remote.enabled", false);
|