Skip to content

Commit

Permalink
Maybe publish?
Browse files Browse the repository at this point in the history
  • Loading branch information
dmadisetti committed Jul 3, 2023
1 parent 2571649 commit 5270ea9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: |
cd firefox/add-on
cd firefox/add-on
zip -r ../../addon.xpi .
# Ideally: nix run .#_addon
- uses: trmcnvn/firefox-addon@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ done.txt

# ignore
citation_vim_cache
addon.xpi
6 changes: 3 additions & 3 deletions firefox/add-on/manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{

"description": "Allows scrolling from AirLatex",
"manifest_version": 2,
"name": "AirLatex.vim",
"version": "1.0",
"version": "1.1",
"icons": {
"256": "icons/icon.png"
},

"browser_specific_settings": {
"gecko": {
"id": "firefox@airlatex.vim",
"strict_min_version": "50.0"
"strict_min_version": "50.0",
"update_url": "https://raw.githubusercontent.com/dmadisetti/AirLatex.vim/main/firefox/updates.json"
}
},
"background": {
Expand Down
13 changes: 13 additions & 0 deletions firefox/updates.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"addons": {
"{e15720cc-a2ad-4df0-9616-db0555357675}": {
"updates": [
{
"version": "1.1",
"update_link": "https://github.com/dmadisetti/AirLatex.vim/releases/download/v0.3/addon.xpi"
}
}
]
}
}
}

0 comments on commit 5270ea9

Please sign in to comment.