Add macOS 15 (Sequoia) compatibility#21
Open
ajorpheus wants to merge 1 commit into
Open
Conversation
- Lower deployment target from 26.2 to 15.0 across all targets - Update LSMinimumSystemVersion in Info.plist to 15.0 - Add #available(macOS 26.0, *) guard around glassEffect in NowPlayingBarView, falling back to .ultraThinMaterial for macOS 15
Owner
|
Nice! Do you think it's ready? There's one item unchecked but I think it's there. Can you also remove all changes to |
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.
Summary
MACOSX_DEPLOYMENT_TARGETfrom 26.2 to 15.0 across all Xcode targetsLSMinimumSystemVersioninInfo.plistto15.0glassEffect(_:in:)(macOS 26-only API) in#available(macOS 26.0, *), falling back to.ultraThinMaterialon macOS 15Motivation
The app was built against the macOS 26 SDK, making it unlaunchable on macOS 15 Sequoia due to two hard blocks:
LSMinimumSystemVersioncheck rejecting launch before the app opens_TagTraitWritingModifier) causing a dyld crash at launchThis PR makes the app run on macOS 15 while preserving the full Liquid Glass experience on macOS 26+.
Test plan
.ultraThinMaterialcapsule background on macOS 15glassEffecton macOS 26+