From 1078951c43f3fff6f8c7a30daa6bd055210dc39a Mon Sep 17 00:00:00 2001 From: superdooper86 Date: Thu, 7 May 2026 17:55:04 +0200 Subject: [PATCH] =?UTF-8?q?Release=20v1.0.9=20=E2=80=94=20fix=20update=20n?= =?UTF-8?q?otification=20popup=20showing=20raw=20markdown?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sync UpdateNotificationWindow.swift: showUpdate now always uses the static subtitle "Tap to view release notes & update now!" instead of passing the full release notes text to the popup. --- ClaudeChecker/Info.plist | 4 ++-- ClaudeChecker/UpdateNotificationWindow.swift | 2 +- RELEASE_NOTES.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ClaudeChecker/Info.plist b/ClaudeChecker/Info.plist index 2ab0651..db4726a 100644 --- a/ClaudeChecker/Info.plist +++ b/ClaudeChecker/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.8 + 1.0.9 CFBundleVersion - 27 + 28 LSMinimumSystemVersion 13.0 LSUIElement diff --git a/ClaudeChecker/UpdateNotificationWindow.swift b/ClaudeChecker/UpdateNotificationWindow.swift index 85babd0..09a4555 100644 --- a/ClaudeChecker/UpdateNotificationWindow.swift +++ b/ClaudeChecker/UpdateNotificationWindow.swift @@ -14,7 +14,7 @@ class UpdateNotificationWindowController: NSWindowController { // Called when a new update is detected while running static func showUpdate(version: String, notes: String, near statusItem: NSStatusItem?) { - showWindow(version: version, subtitle: notes.isEmpty ? "Tap to update now." : notes, near: statusItem, isUpdate: true) + showWindow(version: version, subtitle: "Tap to view release notes & update now!", near: statusItem, isUpdate: true) } static func showLimitWarning(windowName: String, percent: Int, near statusItem: NSStatusItem?) { diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6dd974a..3816579 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -## What's new in v1.0.8 +## What's new in v1.0.9 -### Release notes now render correctly -Fixed markdown rendering in the update banner and update sheet — headers, **bold text**, and bullet points now display properly instead of showing raw `##` and `**` characters. +### Fixed update notification popup +The notification popup now correctly shows **"Tap to view release notes & update now!"** instead of the raw markdown release notes text.