1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-22 04:00:37 +12:00

ability to create a dev build for Firefox

This commit is contained in:
gorhill 2015-08-27 13:12:34 -04:00
parent 12c5acd287
commit 99225e1688
2 changed files with 25 additions and 13 deletions

View file

@ -74,6 +74,11 @@ chromium_manifest = pj(proj_dir, 'platform', 'chromium', 'manifest.json')
with open(chromium_manifest, encoding='utf-8') as m:
manifest = json.load(m)
# https://developer.mozilla.org/en-US/Add-ons/AMO/Policy/Maintenance#How_do_I_submit_a_Beta_add-on.3F
# "To create a beta channel [...] '(a|alpha|b|beta|pre|rc)\d*$' "
if sys.argv[2]:
manifest['version'] += sys.argv[2]
manifest['homepage'] = 'https://github.com/gorhill/uMatrix'
manifest['description'] = escape(descriptions['en'])
del descriptions['en']

View file

@ -8,21 +8,28 @@ DES=dist/build/uMatrix.firefox
rm -rf $DES
mkdir -p $DES
cp -R ./assets $DES/
cp -R ./src/* $DES/
mv $DES/img/icon_128.png $DES/icon.png
cp ./platform/firefox/vapi-*.js $DES/js/
cp ./platform/firefox/bootstrap.js $DES/
cp ./platform/firefox/frame*.js $DES/
cp -R ./platform/chromium/img $DES/
cp ./platform/firefox/css/* $DES/css/
cp ./platform/firefox/chrome.manifest $DES/
cp ./platform/firefox/install.rdf $DES/
cp ./platform/firefox/*.xul $DES/
cp ./LICENSE.txt $DES/
cp -R assets $DES/
cp -R src/* $DES/
mv $DES/img/icon_128.png $DES/icon.png
cp platform/firefox/css/* $DES/css/
cp platform/firefox/vapi-*.js $DES/js/
cp platform/firefox/bootstrap.js $DES/
cp platform/firefox/frame*.js $DES/
cp -R platform/chromium/img $DES/
cp platform/firefox/chrome.manifest $DES/
cp platform/firefox/install.rdf $DES/
cp platform/firefox/*.xul $DES/
cp LICENSE.txt $DES/
echo "*** uMatrix.firefox: Generating meta..."
python tools/make-firefox-meta.py $DES/
python tools/make-firefox-meta.py $DES/ "$2"
if [ "$1" = all ]; then
echo "*** uMatrix.firefox: Creating package..."