-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve format in which citations are presented
Show citation count as first item on a line, which makes it easier to see
- Loading branch information
Showing
5 changed files
with
20 additions
and
10 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
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,12 @@ | ||
#!/bin/sh | ||
|
||
version='1.0.0' | ||
version='1.1.0' | ||
|
||
rm -f zotero-citationcounts-${version}.xpi | ||
zip -r zotero-citationcounts-${version}.xpi chrome/* defaults/* chrome.manifest install.rdf | ||
|
||
# To release a new version: | ||
# - increase version number in all files (not just here) | ||
# - run this script to create a new .xpi file | ||
# - commit and push to Github | ||
# - make a release on Github, and manually upload the new .xpi file |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
RDF:about="urn:mozilla:install-manifest" | ||
em:id="[email protected]" | ||
em:name="Zotero Citation Counts Manager" | ||
em:version="1.0.0" | ||
em:version="1.1.0" | ||
em:type="2" | ||
em:creator="Erik Schnetter" | ||
em:description="Automatically fetch and update citation counts" | ||
|
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ | |
<rdf:Seq> | ||
<rdf:li> | ||
<rdf:Description> | ||
<em:version>1.0.0</em:version> | ||
<em:version>1.1.0</em:version> | ||
<em:targetApplication> | ||
<rdf:Description> | ||
<em:id>[email protected]</em:id> | ||
<em:minVersion>5.0</em:minVersion> | ||
<em:maxVersion>5.*</em:maxVersion> | ||
<em:updateLink>https://github.com/eschnett/zotero-citationcounts/releases/download/v1.0.0/zotero-citationcounts-1.0.0.xpi</em:updateLink> | ||
<em:updateLink>https://github.com/eschnett/zotero-citationcounts/releases/download/v1.1.0/zotero-citationcounts-1.1.0.xpi</em:updateLink> | ||
</rdf:Description> | ||
</em:targetApplication> | ||
</rdf:Description> | ||
|