Skip to content

Commit c5d607c

Browse files
committed
chore: release v3.1.3
1 parent e07784e commit c5d607c

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
22
"applications": {
33
"zotero": {
4-
"id": "fulltext-attach-api-v3@local.dev",
5-
"strict_max_version": "8.0.*",
4+
"id": "fulltext-attach@dzackgarza.com",
65
"strict_min_version": "7.0",
76
"update_url": "https://raw.githubusercontent.com/dzackgarza/zotero-attachment-plugin/main/fulltext-attach-plugin/updates.json"
87
}
98
},
9+
"author": "D. Zack Garza",
1010
"description": "Provides local HTTP endpoints for Zotero attachments and OpenCode item writes.",
1111
"homepage_url": "https://github.com/dzackgarza/zotero-attachment-plugin",
12+
"icons": {
13+
"48": "icons/favicon@0.5x.png",
14+
"96": "icons/favicon.png"
15+
},
1216
"manifest_version": 2,
1317
"name": "Fulltext Attachment API",
14-
"version": "3.1.1"
18+
"version": "3.1.3"
1519
}

fulltext-attach-plugin/updates.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
22
"addons": {
3-
"fulltext-attach-api-v3@local.dev": {
3+
"fulltext-attach@dzackgarza.com": {
44
"updates": [
55
{
66
"applications": {
77
"zotero": {
8-
"strict_max_version": "8.0.*",
98
"strict_min_version": "7.0"
109
}
1110
},
12-
"update_hash": "sha256:4c096ea0ccc5347d1d7aced576b94a106bef0f9a6f6a4f2f9e47a207c2712c1c",
13-
"update_link": "https://github.com/dzackgarza/zotero-attachment-plugin/releases/download/v3.1.1/fulltext-attach-plugin-3.1.1.xpi",
14-
"version": "3.1.1"
11+
"update_hash": "sha256:1ba4df1a82076a387efa96f06ec3be49f31a7b20d9be9024a82c39009f458963",
12+
"update_link": "https://github.com/dzackgarza/zotero-attachment-plugin/releases/download/v3.1.3/fulltext-attach-plugin-3.1.3.xpi",
13+
"version": "3.1.3"
1514
}
1615
]
1716
}

fulltext-attach-plugin/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
#!/usr/bin/env python3
22
"""Canonical release metadata for the Zotero attachment plugin."""
33

4-
VERSION = "3.1.1"
4+
VERSION = "3.1.3"
55

66
REPO_OWNER = "dzackgarza"
77
REPO_NAME = "zotero-attachment-plugin"
88
REPO_BRANCH = "main"
99

10-
ADDON_ID = "fulltext-attach-api-v3@local.dev"
10+
ADDON_ID = "fulltext-attach@dzackgarza.com"
1111
ADDON_SLUG = "fulltext-attach-plugin"
1212
ADDON_NAME = "Fulltext Attachment API"
13+
ADDON_AUTHOR = "D. Zack Garza"
1314
ADDON_DESCRIPTION = (
1415
"Provides local HTTP endpoints for Zotero attachments and OpenCode item writes."
1516
)
1617

1718
STRICT_MIN_VERSION = "7.0"
18-
STRICT_MAX_VERSION = "8.0.*"
1919
TESTED_ZOTERO_VERSION = "8.0.1"
2020

2121
FULLTEXT_ATTACH_PATH = "/fulltext-attach"

0 commit comments

Comments
 (0)