v2.0.5 — Fixed window size on open, update banner now clears when up to date

This commit is contained in:
superdooper86
2026-05-07 14:28:33 +02:00
parent 2da3eeaf72
commit ef2cdd8bf3
5 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
// Popover
popover = NSPopover()
popover?.contentSize = NSSize(width: 480, height: 500)
popover?.contentSize = NSSize(width: 480, height: 640)
popover?.behavior = .transient
popover?.animates = true
popover?.contentViewController = NSHostingController(
+2 -2
View File
@@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.4</string>
<string>2.0.5</string>
<key>CFBundleVersion</key>
<string>11</string>
<string>12</string>
<key>LSMinimumSystemVersion</key>
<string>13.0</string>
<key>LSUIElement</key>
+3
View File
@@ -80,6 +80,9 @@ class UpdateManager: ObservableObject {
if !wasAvailable {
NotificationCenter.default.post(name: .updateDetected, object: stable.version)
}
} else {
updateAvailable = false
latestVersion = ""
}
} else {
print("[UpdateManager] Stable fetch returned nil")