forked from vimperator/vimperator-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix vimperator#566: Extend makefile for signing Still experimental, but I tested it successfully. * Add optional updateURL to XPI and Make * Create update.rdf file
- Loading branch information
1 parent
0c8d13a
commit b3bd807
Showing
7 changed files
with
83 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,6 @@ downloads/ | |
## Generated by StGit | ||
patches-* | ||
.stgit-*.txt | ||
|
||
## Local configuration | ||
private.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
DIRS = muttator vimperator | ||
TARGETS = clean help info xpi | ||
TARGETS = clean help info xpi sign | ||
.SILENT: | ||
|
||
all: xpi ; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> | ||
<RDF:Description about="urn:mozilla:extension:###UUID###"> | ||
<em:updates> | ||
<RDF:Seq> | ||
<RDF:li> | ||
<RDF:Description> | ||
<em:version>###VERSION###</em:version> | ||
<em:targetApplication> | ||
<RDF:Description> | ||
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | ||
<em:minVersion>38.0</em:minVersion> | ||
<em:maxVersion>50.0</em:maxVersion> | ||
<em:updateLink>###UPDATEXPI###</em:updateLink> | ||
</RDF:Description> | ||
</em:targetApplication> | ||
</RDF:Description> | ||
</RDF:li> | ||
</RDF:Seq> | ||
</em:updates> | ||
</RDF:Description> | ||
</RDF:RDF> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
#### configuration | ||
|
||
VERSION = 3.15.0 | ||
NAME = vimperator | ||
VERSION = 3.15.0 | ||
NAME = vimperator | ||
UUID = [email protected] | ||
MIN_VERSION = 38.0 | ||
MAX_VERSION = 50.0 | ||
|
||
-include private.properties | ||
|
||
include ../common/Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:em="http://www.mozilla.org/2004/em-rdf#"> | ||
<Description about="urn:mozilla:install-manifest"> | ||
<em:id>[email protected]</em:id> | ||
<em:id>###UUID###</em:id> | ||
<em:name>Vimperator</em:name> | ||
<em:version>###VERSION###</em:version> | ||
<em:type>2</em:type> <!-- extension --> | ||
|
@@ -13,11 +13,12 @@ | |
<em:homepageURL>http://vimperator.org</em:homepageURL> | ||
<em:iconURL>chrome://vimperator/skin/icon.png</em:iconURL> | ||
<em:optionsURL>chrome://liberator/content/preferences.xul</em:optionsURL> | ||
<em:updateURL>###UPDATEURL###</em:updateURL> | ||
<em:targetApplication> | ||
<Description> | ||
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | ||
<em:minVersion>38.0</em:minVersion> | ||
<em:maxVersion>50.0</em:maxVersion> | ||
<em:minVersion>###MINVERSION###</em:minVersion> | ||
<em:maxVersion>###MAXVERSION###</em:maxVersion> | ||
</Description> | ||
</em:targetApplication> | ||
</Description> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#### private configuration | ||
|
||
################################################################################ | ||
# 1. Register at AMO (addons.mozilla.org) | ||
# 2. Create your API key | ||
# (https://addons.mozilla.org/de/developers/addon/api/key/) | ||
# 3. Manually add your add-on as "unlisted" at AMO | ||
# 4. Copy this file to private.properties | ||
# 5. Edit at least UUID, AMO_API_KEY and AMO_API_SECRET. | ||
################################################################################ | ||
|
||
VERSION := $(VERSION).$(shell date '+%Y%m%d%H%M%S') | ||
UUID = <your UUID> | ||
AMO_API_KEY = <your API key> | ||
AMO_API_SECRET = <your API secret> | ||
UPDATE_URL = <your updateURL if available> | ||
UPDATE_URL_XPI = <link to update XPI> |