Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/tb-addon-import.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/website-app-version.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/tb-addon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# postguard-tb-addon

## 0.9.4

### Patch Changes

- 65acbad: Move the auto-update channel to a stable URL. `manifest.json`'s `update_url` pointed at `postguard-tb-addon/releases/latest/download/updates.json`; in the monorepo `releases/latest` is whichever app released most recently, which carries no `updates.json`, so the channel now reads a raw URL on `main` instead.
18 changes: 12 additions & 6 deletions apps/tb-addon/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "0.9.3",
"version": "0.9.4",
"name": "__MSG_appName__",
"description": "End-to-end email encryption using identity-based encryption and Yivi",
"default_locale": "en",
Expand All @@ -12,7 +12,9 @@
}
},
"background": {
"scripts": ["background.js"],
"scripts": [
"background.js"
],
"type": "module"
},
"content_security_policy": {
Expand All @@ -38,9 +40,9 @@
"https://*.yivi.app/*"
],
"icons": {
"64": "icons/icon-64.svg",
"16": "icons/icon-16.svg",
"32": "icons/icon-32.svg",
"16": "icons/icon-16.svg"
"64": "icons/icon-64.svg"
},
"compose_action": {
"default_title": "__MSG_composeActionTitle__",
Expand All @@ -49,8 +51,12 @@
},
"web_accessible_resources": [
{
"resources": ["icons/*"],
"matches": ["<all_urls>"]
"resources": [
"icons/*"
],
"matches": [
"<all_urls>"
]
}
]
}
2 changes: 1 addition & 1 deletion apps/tb-addon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postguard-tb-addon",
"version": "0.9.3",
"version": "0.9.4",
"private": true,
"description": "PostGuard encryption extension for Thunderbird",
"scripts": {
Expand Down
9 changes: 9 additions & 0 deletions apps/tb-addon/updates.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@
"strict_min_version": "128.0"
}
}
},
{
"version": "0.9.4",
"update_link": "https://github.com/encryption4all/postguard-js/releases/download/tb-addon-v0.9.4/postguard-tb-addon-0.9.4.xpi",
"applications": {
"gecko": {
"strict_min_version": "128.0"
}
}
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postguard-website",
"version": "1.8.0",
"version": "1.8.1",
"private": true,
"engines": {
"node": ">=20"
Expand Down