From b79a253b8046328a236dd46cca11c40b77314bd9 Mon Sep 17 00:00:00 2001 From: DocNR Date: Sat, 13 Jun 2026 16:55:11 -0400 Subject: [PATCH] fix(whats-new): re-bump to 26.12.1 so the corrected note actually shows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The What's-new dialog only shows release entries NEWER than the user's stored lastSeenReleaseVersion, and requires an entry whose version === APP_VERSION (src/lib/release-notes.ts). #5 corrected the 26.12.0 copy in place without a version bump, so every user who had already dismissed the 26.12.0 dialog (lastSeen === current) — and first-run users, who never see the dialog at all — never received the correction. Move the corrected entry to 26.12.1 and bump package.json to match. Verified: getUnseenReleaseNotes('26.12.0','26.12.1',NOTES) => ['26.12.1']. Co-Authored-By: Claude Opus 4.8 (1M context) --- package.json | 2 +- src/release-notes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a206fbe..a824cb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jank", - "version": "26.12.0", + "version": "26.12.1", "description": "A TweetDeck-style multi-column deck for Nostr — just another nostr klient", "type": "module", "author": "DocNR", diff --git a/src/release-notes.ts b/src/release-notes.ts index 3f1bcca..65c61fa 100644 --- a/src/release-notes.ts +++ b/src/release-notes.ts @@ -15,7 +15,7 @@ export type ReleaseNote = { export const RELEASE_NOTES: ReleaseNote[] = [ { - version: '26.12.0', + version: '26.12.1', date: '2026-06-13', highlights: [ "Your Home columns now remember whether you're viewing Notes or Notes and replies. Switch to Notes and replies and it stays that way after a reload, instead of resetting to Notes every time.",