Lower minimum macOS to 14 (Sonoma)#86
Merged
Merged
Conversation
The app required macOS 26 only because a handful of Tahoe APIs were used ungated; nothing in the core depends on 26. Drop the deployment target to 14 (the floor imposed by @observable, which GhosttyKit's macOS 13 binary otherwise allows) and guard each Tahoe-only path: - .glassEffect on the command palette falls back to .regularMaterial. - NSToolbar.allowsDisplayModeCustomization (macOS 15+) is gated. - The Liquid Glass settings (toggle + style picker) are hidden below macOS 26 via the now-exposed WindowAppearance.glassSupported, since the feature doesn't exist there rather than being temporarily unavailable. Verified on a macOS 14 VM: launches and renders natively; build, lint, and tests pass at the 14.0 target.
Reflect the lowered floor: README badge, CLAUDE.md requirements/UI notes, and the Sparkle appcast minimumSystemVersion (so macOS 14 users are offered updates instead of being filtered out).
This was referenced Jun 13, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Drops Macterm's minimum macOS from 26 (Tahoe) to 14 (Sonoma) by gating the few Tahoe-only APIs that were used ungated. The deployment target,
LSMinimumSystemVersion, Sparkle appcast floor, and docs all move to 14.Why
The app required macOS 26 only incidentally — a handful of Tahoe APIs were called without availability guards. The core (terminal surface, splits, persistence, hotkeys) has no real 26 dependency. macOS 14 is the practical floor:
@Observable, which the entire state layer uses, needs 14, and below that the build fails with ~87 errors. (GhosttyKit's prebuilt binary itself allows 13.)Changes
.glassEffecton the command palette → falls back to.regularMaterialbelow macOS 26.NSToolbar.allowsDisplayModeCustomization(macOS 15+) → gated behind#available.WindowAppearance.glassSupported. Hidden rather than disabled, since the feature doesn't exist on older systems rather than being temporarily off. Blur footnote adjusted to match.project.yml,Info.plist).minimumSystemVersion→ 14 (so 14 users get updates), README badge, CLAUDE.md.Verification
format,lint,testall pass at the 14.0 target.Reviewer notes
macos-26— that's the build host, which needs the 26 SDK to compile the gated glass paths. The deployment target is independent and back-deploys to 14. Downgrading the runner would break the build.WindowAppearanceis gated to 26, so it's a no-op on 14/15 and already works on Tahoe — untested on those VMs only because it doesn't run there.