Skip to content

Commit 331b9e8

Browse files
committed
Release v1.4.3: drop redundant Support window button from Settings
Support/feedback remain inline in Settings; menu bar Support… still opens the detachable window. Bump CFBundleShortVersionString to 1.4.3 (build 20) for the GitHub release train.
1 parent 2f9465d commit 331b9e8

5 files changed

Lines changed: 19 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v1.4.3
4+
5+
### Fixed
6+
- **Settings no longer duplicates Support** — removed the redundant “Open Support in Its Own Window” button; support/feedback stay inline via MillerKit’s `SupportSection`. The detachable support window remains available from the menu bar **Support…** item.
7+
8+
## v1.4.2
9+
10+
### Changed
11+
- **MillerKit 1.1.0** — real version display, working privacy link, and shared About presentation
12+
313
## v1.4.1
414

515
### Icon

Glint/Resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.4.2</string>
20+
<string>1.4.3</string>
2121
<key>CFBundleVersion</key>
22-
<string>19</string>
22+
<string>20</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>LSUIElement</key>

Glint/Sources/Views/SettingsView.swift

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -97,21 +97,14 @@ struct SettingsView: View {
9797
.foregroundStyle(.red)
9898
}
9999

100+
// Support is already fully usable inline via SupportSection above —
101+
// no second "open in its own window" control (menu bar still has
102+
// Support… → SupportWindowController for a detachable window).
100103
SupportSection(app: .glint)
101104
LoveThisAppSection(app: .glint)
102105
// The version had been a raw `Bundle.main` Info.plist read that fell
103106
// back to "?", and there was no privacy row. AboutSection owns both.
104107
AboutSection(app: .glint)
105-
106-
Section {
107-
Button {
108-
SupportWindowController.shared.show()
109-
} label: {
110-
Label("Open Support in Its Own Window", systemImage: "macwindow")
111-
}
112-
} footer: {
113-
Text("The same support and feedback options, in a window you can keep around while writing.")
114-
}
115108
}
116109
.formStyle(.grouped)
117110
.frame(width: 400, height: 500)

appstore-metadata.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ ddc,brightness,monitor,display,volume,external,menu bar,media keys,backlight,con
3131
Your brightness and volume keys, finally working with your external monitor.
3232

3333
## whats_new
34-
Initial release.
34+
• Settings cleanup: support options stay inline (no redundant second window button)
35+
• Polish and stability improvements
3536

3637
## marketing_url
3738
https://wemiller.com/apps/glint

project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ targets:
3737
properties:
3838
CFBundleName: Glint
3939
CFBundleIconName: AppIcon
40-
CFBundleShortVersionString: "1.4.2"
41-
CFBundleVersion: "19"
40+
CFBundleShortVersionString: "1.4.3"
41+
CFBundleVersion: "20"
4242
LSUIElement: true
4343
NSHumanReadableCopyright: "Copyright © 2026 Blaine Miller. MIT License."
4444
LSMinimumSystemVersion: $(MACOSX_DEPLOYMENT_TARGET)

0 commit comments

Comments
 (0)