Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
daeh committed Oct 29, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 8b82957 commit c454179
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
@@ -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",
12 changes: 10 additions & 2 deletions zotero-plugin.config.ts
Original file line number Diff line number Diff line change
@@ -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)
}
},
},
},

0 comments on commit c454179

Please sign in to comment.