Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MiddleDrag/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>$(MARKETING_VERSION)</string>
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CFBundleVersion is Apple’s build number and is expected to be a monotonically increasing (typically numeric) value; using $(MARKETING_VERSION) can break this expectation (e.g., if the marketing version includes non-numeric suffixes or doesn’t change between builds). Prefer setting CFBundleVersion to $(CURRENT_PROJECT_VERSION) and, if you truly need them to match for Sparkle, set CURRENT_PROJECT_VERSION to the desired value in Build Settings (or configure Sparkle/appcast to compare against the intended key).

Suggested change
<string>$(MARKETING_VERSION)</string>
<string>$(CURRENT_PROJECT_VERSION)</string>

Copilot uses AI. Check for mistakes.
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>LSUIElement</key>
Expand Down
Loading