diff options
-rw-r--r-- | data/Changelog.IceCat | 3 | ||||
-rw-r--r-- | makeicecat | 14 |
2 files changed, 15 insertions, 2 deletions
diff --git a/data/Changelog.IceCat b/data/Changelog.IceCat index dff6891..687115a 100644 --- a/data/Changelog.IceCat +++ b/data/Changelog.IceCat @@ -1,3 +1,6 @@ +2017-03-04 Ruben Rodriguez <ruben@gnu.org> + * Updated to v45.7.0ESR + 2016-12-01 Ruben Rodriguez <ruben@gnu.org> * Updated to v45.5.1ESR @@ -20,8 +20,8 @@ set -e FFMAJOR=45 -FFMINOR=5 -FFSUB=1 +FFMINOR=7 +FFSUB=0 GNUVERSION=1 FFVERSION=$FFMAJOR.$FFMINOR.${FFSUB} ICECATVERSION=$FFVERSION-gnu$GNUVERSION @@ -102,6 +102,14 @@ cd .. mv l10n $SOURCEDIR +hg clone http://hg.mozilla.org/build/compare-locales/ +cd compare-locales/ +hg checkout FIREFOX_45_2_0esr_RELEASE +hg checkout FIREFOX_${FFMAJOR}_${FFMINOR}_${FFSUB}esr_RELEASE || true +cd .. +rm compare-locales/.hg* compare-locales/.git* -rf +mv compare-locales $SOURCEDIR/l10n + ####################################################### cd $SOURCEDIR @@ -374,6 +382,8 @@ s|www.gnu.org/software/gnuzilla/icecat-help|libreplanet.org/wiki/Group:IceCat/He " find . -type f -not -iregex '.*changelog.*' -not -iregex '.*copyright.*' -execdir /bin/sed --follow-symlinks -i "$SEDSCRIPT" '{}' ';' +find l10n -type f -execdir /bin/sed --follow-symlinks -i "s/from GNU/from Mozilla/g" '{}' ';' + SEDSCRIPT=" s/free and open source software/Free Software/g; s/free and open source/Free Software/g; |