diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2017-09-01 16:48:31 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2017-09-01 16:48:31 -0400 |
commit | f2a3be07039056c76e3ca4e6040ec900ba64f376 (patch) | |
tree | 5b6c855999cc1db9b7d37050c5937f715c65bbe4 | |
parent | 577babf82549cd64e596792b6171fdad2baa9248 (diff) |
Version bumped to v52.3.0ESR
-rw-r--r-- | data/Changelog.IceCat | 16 | ||||
-rw-r--r-- | makeicecat | 6 |
2 files changed, 18 insertions, 4 deletions
diff --git a/data/Changelog.IceCat b/data/Changelog.IceCat index 8374bf9..28bd0d5 100644 --- a/data/Changelog.IceCat +++ b/data/Changelog.IceCat @@ -1,6 +1,20 @@ +2017-09-01 Ruben Rodriguez <ruben@gnu.org> + * Updated to v52.3.0ESR + * Added extension collection https://addons.mozilla.org/en-US/firefox/collections/NateN1222/librejs-compatibility-add-ons/ + * SpyBlock updated to 2.9.1 + * HTTPS Everywhere updated to 5.2.21 + * Removed Youtube player extension, as Youtube is no longer browsable without javascript + * Fixed OCSP check settings that were impeding captive portal usage + +2017-05-19 Ruben Rodriguez <ruben@gnu.org> + * Updated to v52.1.2ESR + * Added switch to disable spoofed referers on about:home + * Added link to about:config on about:home + 2017-05-04 Ruben Rodriguez <ruben@gnu.org> - * Updated to v52.1.0ESR + * Updated to v52.1.0ESR * Disabled punycode in urls + * Fixed android build errors 2017-04-15 Ruben Rodriguez <ruben@gnu.org> * Updated to v52.0.2ESR @@ -20,7 +20,7 @@ set -e FFMAJOR=52 -FFMINOR=1 +FFMINOR=3 FFSUB=0 GNUVERSION=1 FFVERSION=$FFMAJOR.$FFMINOR.${FFSUB} @@ -414,9 +414,9 @@ cat << EOF >> browser/app/profile/icecat.js // Spoof the useragent to a generic one pref("general.useragent.compatMode.firefox",true); // Spoof the useragent to a generic one -pref("general.useragent.override", "Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0"); +pref("general.useragent.override", "Mozilla/5.0 (Windows NT 6.1; rv:${FFMAJOR}.0) Gecko/20100101 Firefox/${FFMAJOR}.0"); pref("general.appname.override", "Netscape"); -pref("general.appversion.override", "45.0"); +pref("general.appversion.override", "${FFMAJOR}.0"); pref("general.buildID.override", "Gecko/20100101"); pref("general.oscpu.override", "Windows NT 6.1"); pref("general.platform.override", "Win32"); |