Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
daeh committed Oct 29, 2024
1 parent 8b82957 commit c454179
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions update-beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"[email protected]": {
"updates": [
{
"version": "0.1.3",
"update_link": "https://github.com/daeh/zotero-markdb-connect/releases/latest/download/markdb-connect.xpi",
"version": "0.1.4-beta.1",
"update_link": "https://github.com/daeh/zotero-markdb-connect/releases/download/v0.1.4-beta.1/mark-db-connect.xpi",
"applications": {
"zotero": {
"strict_min_version": "6.999",
Expand Down
12 changes: 10 additions & 2 deletions zotero-plugin.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,16 @@ export default defineConfig({
},
hooks: {
'build:makeUpdateJSON': (ctx) => {
copyFileSync('build/update.json', 'update_gitignore.json')
copyFileSync('build/update-beta.json', 'update-beta_gitignore.json')
try{
copyFileSync('build/update.json', 'update_gitignore.json')
} catch (err) {
console.log("Some Error: ", err)
}
try{
copyFileSync('build/update-beta.json', 'update-beta_gitignore.json')
} catch (err) {
console.log("Some Error: ", err)
}
},
},
},
Expand Down

0 comments on commit c454179

Please sign in to comment.