From 9b2f7a96872c279ce204000f239bbf61405585a9 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Thu, 13 Aug 2026 09:42:39 -0500 Subject: [PATCH] Update version and changelog for 2.4.4 Increase strict_max_version for tbkeys-lite to 153.* to support Thunderbird 153.0. Fixes #251 --- CHANGELOG.md | 4 ++++ Makefile | 2 +- addon/manifest.json | 2 +- package.json | 2 +- updates.json | 7 +++++++ 5 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9c0390..7e14baf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +- 2.4.4: + + - Increase maximum listed version of Thunderbird for tbkeys-lite to 153 + - 2.4.3: - Increase maximum listed version of Thunderbird for tbkeys-lite to 149 diff --git a/Makefile b/Makefile index b48b849..5d26953 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ $(BLDDIR)/tbkeys-lite.xpi: $(SRC_FILES) # Drop update_url sed -i '/update_url/d' $(dir $@)/lite/manifest.json sed -i 's/\( *"strict_min_version".*\),$$/\1,/' $(dir $@)/lite/manifest.json - sed -i 's/\( *"strict_max_version": \)\(.*\),$$/\1"149.*"/' $(dir $@)/lite/manifest.json + sed -i 's/\( *"strict_max_version": \)\(.*\),$$/\1"153.*"/' $(dir $@)/lite/manifest.json # Drop eval() sed -i 's#^\( *\)eval(.*#\1// Do nothing#' $(dir $@)/lite/implementation.js # Change name diff --git a/addon/manifest.json b/addon/manifest.json index a93b8b2..4958992 100644 --- a/addon/manifest.json +++ b/addon/manifest.json @@ -11,7 +11,7 @@ "name": "tbkeys", "description": "Custom Thunderbird keybindings", "author": "Will Shanks", - "version": "2.4.3", + "version": "2.4.4", "background": { "scripts": ["background.js"] }, diff --git a/package.json b/package.json index 7a61257..c7b285d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tbkeys", - "version": "2.4.3", + "version": "2.4.4", "description": "Thunderbird keys", "main": "index.js", "directories": { diff --git a/updates.json b/updates.json index 19dd314..45b86b2 100644 --- a/updates.json +++ b/updates.json @@ -99,6 +99,13 @@ "applications": { "gecko": { "strict_min_version": "128.0" } } + }, + { + "version": "2.4.4", + "update_link": "https://github.com/wshanks/tbkeys/releases/download/v2.4.4/tbkeys.xpi", + "applications": { + "gecko": { "strict_min_version": "128.0" } + } } ] }