Lower deployment target to macOS 13, fix local build tooling - #4
Open
gundeep-dialpad wants to merge 2 commits into
Open
Lower deployment target to macOS 13, fix local build tooling#4gundeep-dialpad wants to merge 2 commits into
gundeep-dialpad wants to merge 2 commits into
Conversation
- Drop MACOSX_DEPLOYMENT_TARGET from 26.0/26.4 to 13.0 so the app builds and runs on macOS 13 (Ventura) through macOS 15 (Sequoia) - Replace Task.sleep(for: .seconds(...)) with Task.sleep(nanoseconds:) in MarqueeLabel.swift — the only API that required macOS 13+ - Add just build/run recipes with CODE_SIGNING_REQUIRED=NO so the app builds without the original developer's signing certificates; switch from -scheme/-destination to -target to avoid the empty-platform scheme warning that prevented artifacts from being produced - Add .gitignore covering build/, xcuserdata/, .DS_Store, and SPM dirs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Builds a Release-configuration unsigned app, ad-hoc signs it, packages
it into a DMG with an /Applications symlink, and publishes a pre-release
on the fork's releases page tagged v{MARKETING_VERSION}-{short-sha}.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.0/26.4 → 13.0, making the app build and run on macOS 13 (Ventura) through macOS 15 (Sequoia) and beyondTask.sleep(for: .seconds(...))withTask.sleep(nanoseconds:)inMarqueeLabel.swift— the only API gating the minimum at macOS 13 (theDuration-based overload requires macOS 13+; nanoseconds variant is available from macOS 12)just build/just runrecipes withCODE_SIGNING_REQUIRED=NOso contributors can build without the original developer's signing certificates; switch from-scheme/-destination "platform=macOS"to-targetto avoid the empty-platform scheme warning that silently skipped producing build artifacts.gitignorecoveringbuild/,xcuserdata/,.DS_Store, SPM dirs, and crash logsTest plan
just buildsucceeds on macOS 13+just runlaunches the status-bar app🤖 Generated with Claude Code