This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit 27aa999a92d3bcc946a0589a51ef682300865f49 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Sep 17 22:18:03 2018 +0200 debian/: add new palemoon.js file with application defaults installed into /etc/palemoon. --- debian/changelog | 2 ++ debian/palemoon.js | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/debian/changelog b/debian/changelog index ffe8049..cfaf4ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -110,6 +110,8 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium (currently only addonsInfo). - New directory "patches" populated with Debian-specific copied patches. - Add new palemoon.desktop file. + - Add new palemoon.js file with application defaults installed into + /etc/palemoon. * debian/changelog: - Change repack-1 in version string to repack1 because a dash denotes the start of a downstream change. diff --git a/debian/palemoon.js b/debian/palemoon.js new file mode 100644 index 0000000..d963a96 --- /dev/null +++ b/debian/palemoon.js @@ -0,0 +1,26 @@ +// This is the Debian specific preferences file for Palemoon +// You can make any change in here, it is the purpose of this file. +// You can, with this file and all files present in the +// /etc/palemoon directory, override any preference you can see in +// about:config. +// +// Note that lockPref is allowed in these preferences files if you +// don't want users to be able to override some preferences. + +pref("extensions.update.enabled", true); + +// Use LANG environment variable to choose locale +pref("intl.locale.matchOS", true); + +// Disable default browser checking. +pref("browser.shell.checkDefaultBrowser", false); + +// Disable openh264. +// N.B.: not supported in Palemoon in the first place, but keep it around. +pref("media.gmp-gmpopenh264.enabled", false); + +// Default to classic view for about:newtab +sticky_pref("browser.newtabpage.enhanced", false); + +// Disable health report upload +pref("datareporting.healthreport.uploadEnabled", false); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git