feat: macOS 13 (Ventura) runtime support#35
Open
crichalchemist wants to merge 8 commits into
Open
Conversation
Lower the minimum macOS version from 14.0 to 13.0 to support Ventura. Changes deploymentTarget, MACOSX_DEPLOYMENT_TARGET, and LSMinimumSystemVersion; Swift 6.0 is unchanged.
4 tasks
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
Adds runtime compatibility for macOS 13 (Ventura) while keeping Swift 6 and the existing universal binary setup unchanged.
Changes:
build: lower deployment target to macOS 13.0— updatesdeploymentTarget,MACOSX_DEPLOYMENT_TARGET, andLSMinimumSystemVersion; noARCHSoverride (universal builds already work)fix: add macOS 13 availability fallbacks—@available(macOS 13, *)guards for APIs unavailable on Venturabuild: add MacPorts support to ghosttykit build script— lets the GhosttyKit build script find Zig via MacPortsbuild: allow zig 0.16.x fallback from MacPorts— extends Zig version probe for 0.16.xbuild: patch ghostty pixel_format for macOS 13 compilation— works around a pixel format API difference on Venturabuild: downgrade sentry-cocoa to 8.37.0 for macOS 13 compilation— newer sentry-cocoa requires macOS 14+fix: shim MainActor.assumeIsolated for macOS 13 compatibility—MainActor.assumeIsolatedwas added in macOS 14fix: backport swift 6 features and wrap macOS 14 APIs for ventura support— convertsCollection.count(where:)tofilter { }.countbackport; wraps macOS 14 APIs with@availableguards; FuzzyMatch stays on SPMordo-one/FuzzyMatchreferenceNot included vs PR #30:
ARCHSoverrideCloses #30.