mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
e43931f075
This includes a new, refined µBlock logo, rendered more coherently and consistently for different sizes and display pixel densities. The Safari build script has been modified to bundle appropriate resolutions. The Firefox build script was slightly changed to adhere to the naming convention. The Chrome manifest was modified/ammended slightly to take advantage of new renderings. README's beginning has been modified to be nicer and more minimal. Other than the logo's slightly refined look and having better resolution on different browsers and setups, this should have no effect on the user experience or further development.
38 lines
854 B
Bash
Executable File
38 lines
854 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock.firefox: Copying files"
|
|
|
|
DES=dist/build/uBlock.firefox
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
cp -R assets $DES/
|
|
rm $DES/assets/*.sh
|
|
cp -R src/css $DES/
|
|
cp -R src/img $DES/
|
|
cp -R src/js $DES/
|
|
cp -R src/lib $DES/
|
|
cp -R src/_locales $DES/
|
|
cp src/*.html $DES/
|
|
mv $DES/img/browsericons/icon128.png $DES/icon.png
|
|
cp platform/firefox/vapi-*.js $DES/js/
|
|
cp platform/firefox/bootstrap.js $DES/
|
|
cp platform/firefox/frame*.js $DES/
|
|
cp platform/firefox/chrome.manifest $DES/
|
|
cp platform/firefox/install.rdf $DES/
|
|
cp LICENSE.txt $DES/
|
|
|
|
echo "*** uBlock.firefox: Generating meta..."
|
|
python tools/make-firefox-meta.py $DES/
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** uBlock.firefox: Creating package..."
|
|
pushd $DES/
|
|
zip ../uBlock.firefox.xpi -qr *
|
|
popd
|
|
fi
|
|
|
|
echo "*** uBlock.firefox: Package done."
|