zotero-plugin 5.0.33 → 5.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -107,7 +107,7 @@ def unpack():
107
107
 
108
108
  case _:
109
109
  print(Path('logs') / name)
110
- f.extract(name, path='logs')
110
+ zip.extract(name, path='logs')
111
111
 
112
112
  download()
113
113
  unpack()
package/bin/release.js CHANGED
@@ -8448,7 +8448,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
8448
8448
  "package.json"(exports, module) {
8449
8449
  module.exports = {
8450
8450
  name: "zotero-plugin",
8451
- version: "5.0.33",
8451
+ version: "5.0.35",
8452
8452
  description: "Zotero plugin builder",
8453
8453
  homepage: "https://github.com/retorquere/zotero-plugin/wiki",
8454
8454
  bin: {
package/manifest.js CHANGED
@@ -96,8 +96,8 @@ fs.writeFileSync(path.join(root_1.default, 'build/manifest.json'), JSON.stringif
96
96
  zotero: {
97
97
  id: options_and_vars.id,
98
98
  update_url: options_and_vars.updateURL.replace('/update.rdf', '/updates.json'),
99
- strict_min_version: '6.999',
100
- strict_max_version: '7.*',
99
+ strict_min_version: options_and_vars.minVersion,
100
+ strict_max_version: options_and_vars.maxVersion,
101
101
  },
102
102
  },
103
103
  }, null, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zotero-plugin",
3
- "version": "5.0.33",
3
+ "version": "5.0.35",
4
4
  "description": "Zotero plugin builder",
5
5
  "homepage": "https://github.com/retorquere/zotero-plugin/wiki",
6
6
  "bin": {