forked from pool/MozillaFirefox
83b187e5a4
* MFSA 2014-48/CVE-2014-1533/CVE-2014-1534 (bmo#921622, bmo#967354, bmo#969517, bmo#969549, bmo#973874, bmo#978652, bmo#978811, bmo#988719, bmo#990868, bmo#991981, bmo#992274, bmo#994907, bmo#995679, bmo#995816, bmo#995817, bmo#996536, bmo#996715, bmo#999651, bmo#1000598, bmo#1000960, bmo#1002340, bmo#1005578, bmo#1007223, bmo#1009952, bmo#1011007) Miscellaneous memory safety hazards (rv:30.0) * MFSA 2014-49/CVE-2014-1536/CVE-2014-1537/CVE-2014-1538 (bmo#989994, bmo#999274, bmo#1005584) Use-after-free and out of bounds issues found using Address Sanitizer * MFSA 2014-50/CVE-2014-1539 (bmo#995603) Clickjacking through cursor invisability after Flash interaction * MFSA 2014-51/CVE-2014-1540 (bmo#978862) Use-after-free in Event Listener Manager * MFSA 2014-52/CVE-2014-1541 (bmo#1000185) Use-after-free with SMIL Animation Controller * MFSA 2014-53/CVE-2014-1542 (bmo#991533) Buffer overflow in Web Audio Speex resampler * MFSA 2014-54/CVE-2014-1543 (bmo#1011859) Buffer overflow in Gamepad API - rebased patches - removed obsolete patches * firefox-browser-css.patch * mozilla-aarch64-bmo-962488.patch * mozilla-aarch64-bmo-963023.patch * mozilla-aarch64-bmo-963024.patch * mozilla-aarch64-bmo-963027.patch OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=384
32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
From: Wolfgang Rosenauer <wr@rosenauer.org>
|
|
Subject: use system locale if available
|
|
This setting used to live in the branding-openSUSE package but this is causing too much
|
|
confusion and therefore is currently the only setting we switch in the unbranded
|
|
package unconditionally.
|
|
|
|
# HG changeset patch
|
|
# Parent 5c086bb8e0fa4f1600aced485e6156b0cdcd1755
|
|
|
|
diff --git a/modules/libpref/src/init/all.js b/modules/libpref/src/init/all.js
|
|
--- a/modules/libpref/src/init/all.js
|
|
+++ b/modules/libpref/src/init/all.js
|
|
@@ -1428,17 +1428,17 @@ pref("intl.charsetmenu.mailedit",
|
|
pref("intl.charsetmenu.browser.cache", "");
|
|
pref("intl.charsetmenu.mailview.cache", "");
|
|
pref("intl.charsetmenu.composer.cache", "");
|
|
pref("intl.charsetmenu.browser.cache.size", 5);
|
|
pref("intl.charset.detector", "chrome://global/locale/intl.properties");
|
|
pref("intl.charset.fallback.override", "");
|
|
pref("intl.charset.fallback.tld", true);
|
|
pref("intl.ellipsis", "chrome://global-platform/locale/intl.properties");
|
|
-pref("intl.locale.matchOS", false);
|
|
+pref("intl.locale.matchOS", true);
|
|
// fallback charset list for Unicode conversion (converting from Unicode)
|
|
// currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
|
|
// for ISO-8859-1
|
|
pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
|
|
pref("font.language.group", "chrome://global/locale/intl.properties");
|
|
|
|
// these locales have right-to-left UI
|
|
pref("intl.uidirection.ar", "rtl");
|