firefox: fix branding on debug, svg and privacy icons.
This commit is contained in:
parent
e3d65e6c70
commit
fd9a2ab1d1
7 changed files with 1254 additions and 3 deletions
BIN
helpers/DATA/firefox/debug_brand/PrivateBrowsing_150.png
Normal file
BIN
helpers/DATA/firefox/debug_brand/PrivateBrowsing_150.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
helpers/DATA/firefox/debug_brand/PrivateBrowsing_70.png
Normal file
BIN
helpers/DATA/firefox/debug_brand/PrivateBrowsing_70.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
BIN
helpers/DATA/firefox/debug_brand/about-logo-private.png
Normal file
BIN
helpers/DATA/firefox/debug_brand/about-logo-private.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
BIN
helpers/DATA/firefox/debug_brand/about-logo-private@2x.png
Normal file
BIN
helpers/DATA/firefox/debug_brand/about-logo-private@2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
620
helpers/DATA/firefox/debug_brand/debuglogo.svg
Normal file
620
helpers/DATA/firefox/debug_brand/debuglogo.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 43 KiB |
619
helpers/DATA/firefox/debug_brand/debuglogo_gray.svg
Normal file
619
helpers/DATA/firefox/debug_brand/debuglogo_gray.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 43 KiB |
|
|
@ -19,7 +19,7 @@
|
||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=102
|
VERSION=103
|
||||||
EXTERNAL='deb-src http://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu $UPSTREAM main'
|
EXTERNAL='deb-src http://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu $UPSTREAM main'
|
||||||
REPOKEY=9BDB3D89CE49EC21
|
REPOKEY=9BDB3D89CE49EC21
|
||||||
|
|
||||||
|
|
@ -326,6 +326,7 @@ s|brand-product-name = Firefox|brand-product-name = Abrowser|;
|
||||||
s|Sign in to Firefox|Sign in to Sync|;
|
s|Sign in to Firefox|Sign in to Sync|;
|
||||||
s|Search addons.mozilla.org|Search|g;
|
s|Search addons.mozilla.org|Search|g;
|
||||||
s|firefox.settings.services.mozilla.com|127.0.0.1|g;
|
s|firefox.settings.services.mozilla.com|127.0.0.1|g;
|
||||||
|
s|this-firefox|this-abrowser|g;
|
||||||
"
|
"
|
||||||
|
|
||||||
echo "Running batch replace operation"
|
echo "Running batch replace operation"
|
||||||
|
|
@ -377,9 +378,9 @@ do
|
||||||
done
|
done
|
||||||
##Remove invalid policy for trisquel.
|
##Remove invalid policy for trisquel.
|
||||||
find -name aboutRights.ftl | xargs sed -i '/rights-intro-point-5/,$d'
|
find -name aboutRights.ftl | xargs sed -i '/rights-intro-point-5/,$d'
|
||||||
find -name aboutRights.xhtml |xargs sed -i "/rights-intro-point-5/d"
|
find -name aboutRights.xhtml |xargs sed -i "/rights-intro-point-5/,/<\/li>/d"
|
||||||
find -name aboutRights.xhtml |xargs sed -i "/rights-intro-point-6/d"
|
find -name aboutRights.xhtml |xargs sed -i "/rights-intro-point-6/d"
|
||||||
find -name aboutRights-unbranded.xhtml |xargs sed -i "/rights-intro-point-5/d"
|
find -name aboutRights-unbranded.xhtml |xargs sed -i "/rights-intro-point-5/,/<\/li>/d"
|
||||||
#EO about: mods.
|
#EO about: mods.
|
||||||
|
|
||||||
sed -i 's/<a\ href\=\"http\:\/\/www.mozilla.org\/\">Mozilla\ Project<\/a>/<a\ href\=\"http\:\/\/www.trisquel.info\/\"\>Trisquel\ Project<\/a>/g' browser/base/content/overrides/app-license.html
|
sed -i 's/<a\ href\=\"http\:\/\/www.mozilla.org\/\">Mozilla\ Project<\/a>/<a\ href\=\"http\:\/\/www.trisquel.info\/\"\>Trisquel\ Project<\/a>/g' browser/base/content/overrides/app-license.html
|
||||||
|
|
@ -426,6 +427,17 @@ cp $DATA/android/mobile.ico mobile/android/app/
|
||||||
#cp $DATA/android/images/* mobile/android/themes/core/images/
|
#cp $DATA/android/images/* mobile/android/themes/core/images/
|
||||||
cp -a $DATA/android/res/main/* mobile/android/geckoview/src/main/res
|
cp -a $DATA/android/res/main/* mobile/android/geckoview/src/main/res
|
||||||
|
|
||||||
|
# Rebrand svg & debug tools & privacy logos
|
||||||
|
find devtools/client/themes/images/ -name aboutdebugging-firefox-*.svg | xargs -n1 cp $DATA/debug_brand/debuglogo.svg
|
||||||
|
find devtools/client/themes/images/ -name aboutdebugging-fenix*.svg | xargs -n1 cp $DATA/debug_brand/debuglogo.svg
|
||||||
|
|
||||||
|
find browser/branding/ -name about-logo.svg | xargs -n1 cp $DATA/debug_brand/debuglogo.svg
|
||||||
|
|
||||||
|
find browser/branding/ -name about-logo-private.png | xargs -n1 cp $DATA/debug_brand/about-logo-private.png
|
||||||
|
find browser/branding/ -name about-logo-private@2x.png | xargs -n1 cp $DATA/debug_brand/about-logo-private@2x.png
|
||||||
|
find browser/branding/ -name PrivateBrowsing_70.png | xargs -n1 cp $DATA/debug_brand/PrivateBrowsing_70.png
|
||||||
|
find browser/branding/ -name PrivateBrowsing_150.png | xargs -n1 cp $DATA/debug_brand/PrivateBrowsing_150.png
|
||||||
|
|
||||||
#Fixes by patch on source.
|
#Fixes by patch on source.
|
||||||
##Firefox v100, based on parabola 9004-FSDG-misc.patch
|
##Firefox v100, based on parabola 9004-FSDG-misc.patch
|
||||||
patch --no-backup-if-mismatch -p1 < $DATA/patch_changes/Remove_moreFromMozilla_Focus_and_Klar.patch
|
patch --no-backup-if-mismatch -p1 < $DATA/patch_changes/Remove_moreFromMozilla_Focus_and_Klar.patch
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue