rm firefox extension support
This commit is contained in:
parent
2d5b5318b8
commit
491ffb1c1f
5 changed files with 2 additions and 139 deletions
|
|
@ -1,13 +0,0 @@
|
||||||
System Requirements
|
|
||||||
|
|
||||||
* Download [Add-on SDK](https://addons.mozilla.org/en-US/developers/builder)
|
|
||||||
* Install it. [Mozilla Docs](https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Installation)
|
|
||||||
|
|
||||||
Run
|
|
||||||
|
|
||||||
```
|
|
||||||
$ sh firefox/build.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
- Copy the content of *firefox/firefox-addon* (lib, data, package.json) to your development path.
|
|
||||||
- Compile the XPI file [Mozilla Docs](https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Getting_started)
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
||||||
#! /bin/bash
|
|
||||||
|
|
||||||
# Description: This script compiles and copy the needed files to later package the application for Firefox
|
|
||||||
|
|
||||||
OpenColor="\033["
|
|
||||||
Red="1;31m"
|
|
||||||
Yellow="1;33m"
|
|
||||||
Green="1;32m"
|
|
||||||
CloseColor="\033[0m"
|
|
||||||
|
|
||||||
# Check function OK
|
|
||||||
checkOK() {
|
|
||||||
if [ $? != 0 ]; then
|
|
||||||
echo "${OpenColor}${Red}* ERROR. Exiting...${CloseColor}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Configs
|
|
||||||
BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
||||||
APPDIR="$BUILDDIR/firefox-addon"
|
|
||||||
ZIPFILE="copay-firefox-addon.zip"
|
|
||||||
VERSION=`cut -d '"' -f2 $BUILDDIR/../../version.js|head -n 1`
|
|
||||||
|
|
||||||
|
|
||||||
cfx >/dev/null
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
# Move to the build directory
|
|
||||||
cd $BUILDDIR
|
|
||||||
|
|
||||||
# Create/Clean temp dir
|
|
||||||
echo "${OpenColor}${Green}* Checking temp dir...${CloseColor}"
|
|
||||||
if [ -d $APPDIR ]; then
|
|
||||||
rm -rf $APPDIR
|
|
||||||
fi
|
|
||||||
mkdir -p $APPDIR
|
|
||||||
|
|
||||||
# Re-compile copayBundle.js
|
|
||||||
echo "${OpenColor}${Green}* Generating copay bundle...${CloseColor}"
|
|
||||||
grunt --target=dev shell
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
# Copy all chrome-extension files
|
|
||||||
echo "${OpenColor}${Green}* Copying all firefox-addon files...${CloseColor}"
|
|
||||||
|
|
||||||
sed "s/APP_VERSION/$VERSION/g" "$BUILDDIR/../../package.json" > $APPDIR/package.json
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
INCLUDE=`cat ../include`
|
|
||||||
echo $INCLUDE
|
|
||||||
cd $BUILDDIR/../..
|
|
||||||
LIBS=`cat index.html |grep -o -E 'src="([^"#]+)"' | cut -d'"' -f2|grep lib`
|
|
||||||
echo "LIBS: $LIBS"
|
|
||||||
|
|
||||||
CMD="rsync -rLRv --exclude-from $BUILDDIR/../exclude $INCLUDE $LIBS $APPDIR/data"
|
|
||||||
echo $CMD
|
|
||||||
$CMD
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
rm -Rf $BUILDDIR/data
|
|
||||||
mv $APPDIR/data $BUILDDIR
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cd $BUILDDIR
|
|
||||||
cfx xpi
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
echo "${OpenColor}${Yellow}\nThe Firefox add-on is ready at $BUILDDIR/copay.xpi!${CloseColor}"
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
var { ToggleButton } = require('sdk/ui/button/toggle');
|
|
||||||
var panels = require('sdk/panel');
|
|
||||||
var self = require('sdk/self');
|
|
||||||
|
|
||||||
var panelScript = "window.addEventListener('click', function(event) {" +
|
|
||||||
" var t = event.target;" +
|
|
||||||
" if (t.nodeName == 'A')" +
|
|
||||||
" self.port.emit('click-link');" +
|
|
||||||
"}, false);"
|
|
||||||
|
|
||||||
var button = ToggleButton({
|
|
||||||
id: 'copay-addon',
|
|
||||||
label: 'Copay',
|
|
||||||
icon: {
|
|
||||||
'16': './img/icons/icon-16.png',
|
|
||||||
'32': './img/icons/icon-32.png',
|
|
||||||
'64': './img/icons/icon-64.png'
|
|
||||||
},
|
|
||||||
onChange: handleChange
|
|
||||||
});
|
|
||||||
|
|
||||||
var panel = panels.Panel({
|
|
||||||
contentURL: self.data.url('popup.html'),
|
|
||||||
contentScript: panelScript,
|
|
||||||
onHide: handleHide,
|
|
||||||
height: 150
|
|
||||||
});
|
|
||||||
|
|
||||||
function handleChange(state) {
|
|
||||||
if (state.checked) {
|
|
||||||
panel.show({
|
|
||||||
position: button
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleHide() {
|
|
||||||
button.state('window', {checked: false});
|
|
||||||
}
|
|
||||||
|
|
||||||
panel.port.on('click-link', function(url) {
|
|
||||||
panel.hide();
|
|
||||||
});
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"name": "copay",
|
|
||||||
"title": "Copay",
|
|
||||||
"id": "copay@bitpay",
|
|
||||||
"description": "A multisignature Bitcoin wallet",
|
|
||||||
"icon": "data/img/icons/icon.png",
|
|
||||||
"author": "Mario Colque <mario@bitpay.com>",
|
|
||||||
"license": "MIT",
|
|
||||||
"version": "APP_VERSION"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -36,12 +36,11 @@
|
||||||
"test": "sh test/run.sh",
|
"test": "sh test/run.sh",
|
||||||
"dist": "node shell/scripts/dist.js",
|
"dist": "node shell/scripts/dist.js",
|
||||||
"shell": "node shell/scripts/launch.js",
|
"shell": "node shell/scripts/launch.js",
|
||||||
"firefox": "source browser-extensions/firefox/build.sh",
|
|
||||||
"chrome": "source browser-extensions/chrome/build.sh",
|
"chrome": "source browser-extensions/chrome/build.sh",
|
||||||
"setup-shell": "node shell/scripts/download-atom-shell.js",
|
"setup-shell": "node shell/scripts/download-atom-shell.js",
|
||||||
"postinstall": "./node_modules/.bin/grunt",
|
"postinstall": "./node_modules/.bin/grunt",
|
||||||
"sign": "gpg -u 1112CFA1 --output browser-extensions/firefox/copay.xpi.sig --detach-sig browser-extensions/firefox/copay.xpi; gpg -u 1112CFA1 --output browser-extensions/chrome/copay-chrome-extension.zip.sig --detach-sig browser-extensions/chrome/copay-chrome-extension.zip",
|
"sign": "gpg -u 1112CFA1 --output browser-extensions/chrome/copay-chrome-extension.zip.sig --detach-sig browser-extensions/chrome/copay-chrome-extension.zip",
|
||||||
"verify": "gpg --verify browser-extensions/firefox/copay.xpi.sig browser-extensions/firefox/copay.xpi; gpg --verify browser-extensions/chrome/copay-chrome-extension.zip.sig browser-extensions/chrome/copay-chrome-extension.zip",
|
"verify": "gpg --verify browser-extensions/chrome/copay-chrome-extension.zip.sig browser-extensions/chrome/copay-chrome-extension.zip",
|
||||||
"ios": "cordova/build.sh && cd cordova/project && cordova build ios && open platforms/ios/Copay.xcodeproj"
|
"ios": "cordova/build.sh && cd cordova/project && cordova build ios && open platforms/ios/Copay.xcodeproj"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue