Skip to content

Commit

Permalink
First stable version of 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
frianasoa committed Dec 2, 2023
1 parent fe5ae8b commit b55097b
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 6 deletions.
2 changes: 1 addition & 1 deletion install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:name>ZeNotes</em:name>
<em:version>0.4.2-beta</em:version>
<em:version>0.4.2</em:version>
<em:multiprocessCompatible>true</em:multiprocessCompatible>
<em:updateURL>https://raw.githubusercontent.com/frianasoa/zenotes/main/zenote-update.json</em:updateURL>
<em:homepageURL>https://github.com/frianasoa/zenotes</em:homepageURL>
Expand Down
4 changes: 1 addition & 3 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
import hashlib
import shutil


suffix = "-beta"

suffix = ""
def getver():
description = ET.parse('install.rdf').getroot()[0]
for child in description:
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Ze Notes",
"version": "0.4.2-beta",
"version": "0.4.2",
"description": "Advanced notes manager",
"homepage_url": "https://github.com/frianasoa/zenotes",
"author": "Fanantenana Rianasoa Andriariniaina",
Expand All @@ -12,7 +12,7 @@
"applications": {
"zotero": {
"id": "[email protected]",
"update_url": "https://raw.githubusercontent.com/frianasoa/zenotes/main/zenote-update-beta.json",
"update_url": "https://raw.githubusercontent.com/frianasoa/zenotes/main/zenote-update.json",
"strict_min_version": "6.0",
"strict_max_version": "7.0.*"
}
Expand Down
18 changes: 18 additions & 0 deletions zenote-update.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"addons": {
"[email protected]": {
"updates": [
{
"version": "0.4.2",
"update_link": "https://github.com/frianasoa/Ze-Notes/releases/download/v0.4.2/zenotes-v0.4.2.xpi",
"update_hash": "sha256:8940a73220a150528ebfec40ae01f7c856ca558d75a6776bfaca365cbd843052",
"applications": {
"gecko": {
"strict_min_version": "60.0"
}
}
}
]
}
}
}
32 changes: 32 additions & 0 deletions zenote-update.rdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version='1.0' encoding='utf-8'?>
<rdf:RDF xmlns:ns1="http://www.mozilla.org/2004/em-rdf#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description about="urn:mozilla:extension:[email protected]">
<ns1:updates>
<rdf:Seq>
<rdf:li>
<rdf:Description>
<ns1:version>0.4.2</ns1:version>
<ns1:targetApplication>
<rdf:Description>
<ns1:id>[email protected]</ns1:id>
<ns1:minVersion>5.0.0</ns1:minVersion>
<ns1:maxVersion>6.*</ns1:maxVersion>
<ns1:updateLink>https://github.com/frianasoa/Ze-Notes/releases/download/v0.4.2/zenotes-v0.4.2.xpi</ns1:updateLink>
</rdf:Description>
</ns1:targetApplication>

<ns1:targetApplication>
<rdf:Description>
<ns1:id>[email protected]</ns1:id>
<ns1:minVersion>4.999</ns1:minVersion>
<ns1:maxVersion>6.*</ns1:maxVersion>
<ns1:updateLink>https://github.com/frianasoa/Ze-Notes/releases/download/v0.4.2/zenotes-v0.4.2.xpi</ns1:updateLink>
</rdf:Description>
</ns1:targetApplication>

</rdf:Description>
</rdf:li>
</rdf:Seq>
</ns1:updates>
</rdf:Description>
</rdf:RDF>

0 comments on commit b55097b

Please sign in to comment.