Compare commits

...
5 changed files with 12 additions and 9 deletions
+3 -1
View File
@@ -51,7 +51,7 @@ struct ContentView: View {
ForEach(vm.limits) { limit in ForEach(vm.limits) { limit in
VStack(spacing: 0) { VStack(spacing: 0) {
HStack { HStack {
Text(limit.window == .fiveHour ? "5hr Limit" : "7 Day Limit") Text(limit.window == .fiveHour ? "5 Hour Limit" : "7 Day Limit")
.font(.system(size: 11, weight: .semibold)) .font(.system(size: 11, weight: .semibold))
.foregroundColor(.secondary) .foregroundColor(.secondary)
.textCase(.uppercase) .textCase(.uppercase)
@@ -1051,6 +1051,7 @@ struct UpdateBanner: View {
.padding(.vertical, 10) .padding(.vertical, 10)
.background(Color.blue.opacity(0.08)) .background(Color.blue.opacity(0.08))
.overlay(Divider(), alignment: .bottom) .overlay(Divider(), alignment: .bottom)
.onTapGesture { showSheet = true }
} }
} }
@@ -1168,3 +1169,4 @@ struct UpdateSheet: View {
.frame(width: 380) .frame(width: 380)
} }
} }
+2 -2
View File
@@ -15,9 +15,9 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.1.3-beta.1</string> <string>1.1.3-beta.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>35</string> <string>36</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>13.0</string> <string>13.0</string>
<key>LSUIElement</key> <key>LSUIElement</key>
+1 -1
View File
@@ -10,7 +10,7 @@
[![Swift](https://img.shields.io/badge/Swift-5.9-F05138?style=flat&logo=swift&logoColor=white)](https://swift.org) [![Swift](https://img.shields.io/badge/Swift-5.9-F05138?style=flat&logo=swift&logoColor=white)](https://swift.org)
[![Version](https://img.shields.io/badge/version-1.1.2-orange?style=flat)](https://github.com/superdooper86/claudechecker/releases) [![Version](https://img.shields.io/badge/version-1.1.2-orange?style=flat)](https://github.com/superdooper86/claudechecker/releases)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat)](LICENSE) [![License](https://img.shields.io/badge/license-MIT-blue?style=flat)](LICENSE)
<!-- BETA_BADGE --> [![Beta](https://img.shields.io/badge/beta-1.1.3--beta.1-orange?style=flat)](https://github.com/superdooper86/claudechecker/releases/tag/v1.1.3-beta.1) <!-- BETA_BADGE -->
</div> </div>
+3 -2
View File
@@ -1,4 +1,5 @@
## What's new in v1.1.3 ## What's new in v1.1.3
### Compact update banner ### UI polish
The in-app update banner no longer shows full release notes — it now shows a short message and lets you tap Update to read what's new in the install sheet. This prevents the banner from pushing content around when release notes are long. - Limit headers now read "5 Hour Limit" and "7 Day Limit" instead of "5hr"
- Tapping anywhere on the blue update banner now opens the update window (not just the Update button)
+3 -3
View File
@@ -1,5 +1,5 @@
{ {
"version": "1.1.2-beta.7", "version": "1.1.3-beta.1",
"url": "https://github.com/superdooper86/claudechecker/releases/download/v1.1.2-beta.7/ClaudeChecker.zip", "url": "https://github.com/superdooper86/claudechecker/releases/download/v1.1.3-beta.1/ClaudeChecker.zip",
"notes": "## What's new in v1.1.2\n\n### Cleaner card headers\nRemoved the redundant \"5h\" / \"7d\" window labels from each card row — the section headers already make it clear which limit is which." "notes": "## What's new in v1.1.3\n\n### Compact update banner\nThe in-app update banner no longer shows full release notes — it now shows a short message and lets you tap Update to read what's new in the install sheet. This prevents the banner from pushing content around when release notes are long."
} }