From af629e986479a1a2a52580d0599370312161e5e5 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Wed, 15 Jul 2026 00:01:15 +0800 Subject: [PATCH] release: prepare browser extension v2.0.4 --- README.md | 2 +- chromium/manifest.json | 2 +- firefox/manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- scripts/test-firefox-github-release.js | 12 ++++++------ 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ade4d8a..a94aca8 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ for the same Firefox publishing flow. For an explicit version check, pass the current tag after `--`: ```bash -VERSTAK_BROWSER_ENV=/path/to/.env npm run publish:github -- v2.0.3 +VERSTAK_BROWSER_ENV=/path/to/.env npm run publish:github -- v2.0.4 ``` Release output: diff --git a/chromium/manifest.json b/chromium/manifest.json index a9c2647..f15d73a 100644 --- a/chromium/manifest.json +++ b/chromium/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Verstak Bridge", - "version": "2.0.3", + "version": "2.0.4", "description": "Send pages, selections, links, and files to the local Verstak browser inbox.", "author": "Verstak", "homepage_url": "https://github.com/mirivlad/verstak-browser-extension", diff --git a/firefox/manifest.json b/firefox/manifest.json index 46cd9fa..6d92013 100644 --- a/firefox/manifest.json +++ b/firefox/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Verstak Bridge", - "version": "2.0.3", + "version": "2.0.4", "description": "Send pages, selections, links, and files to the local Verstak browser inbox.", "author": "Verstak", "homepage_url": "https://github.com/mirivlad/verstak-browser-extension", diff --git a/package-lock.json b/package-lock.json index f298d4b..a0ee84f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "verstak-browser-extension", - "version": "2.0.3", + "version": "2.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "verstak-browser-extension", - "version": "2.0.3", + "version": "2.0.4", "devDependencies": { "web-ext": "^8.3.0" } diff --git a/package.json b/package.json index 46c524e..7a0bb90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "verstak-browser-extension", - "version": "2.0.3", + "version": "2.0.4", "private": true, "description": "Verstak browser capture extension for Chromium and Firefox", "license": "AGPL-3.0-or-later", diff --git a/scripts/test-firefox-github-release.js b/scripts/test-firefox-github-release.js index 7869574..75f8fc7 100644 --- a/scripts/test-firefox-github-release.js +++ b/scripts/test-firefox-github-release.js @@ -6,23 +6,23 @@ const packageManifest = require('../package.json'); const chromiumManifest = require('../chromium/manifest.json'); const firefoxManifest = require('../firefox/manifest.json'); -const version = '2.0.3'; -const asset = 'verstak-firefox-2.0.3.xpi'; +const version = '2.0.4'; +const asset = 'verstak-firefox-2.0.4.xpi'; assert.equal(packageManifest.version, version); assert.equal(chromiumManifest.version, version); assert.equal(firefoxManifest.version, version); -assert.equal(release.releaseTag(version), 'v2.0.3'); +assert.equal(release.releaseTag(version), 'v2.0.4'); assert.equal( release.releaseAssetURL(version, asset), - 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.3/verstak-firefox-2.0.3.xpi', + 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.4/verstak-firefox-2.0.4.xpi', ); assert.deepEqual(release.updateManifest('verstak-bridge@verstak.app', version, asset), { addons: { 'verstak-bridge@verstak.app': { updates: [{ - version: '2.0.3', - update_link: 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.3/verstak-firefox-2.0.3.xpi', + version: '2.0.4', + update_link: 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.4/verstak-firefox-2.0.4.xpi', }], }, },