Update Support section copy and CTA#352
Merged
Merged
Conversation
Acknowledges that Cotabby is built in the maintainers' free time and asks more directly for support. Button becomes a heart-iconed "Support" label so the call to action is recognizable at a glance without leaning on the coffee metaphor.
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
Tweaks the Settings → Support copy to acknowledge that Cotabby is built in our free time and to ask more directly for support. Replaces the "Buy Us a Coffee" button with a heart-iconed "Support" label so the call to action reads as broader than coffee.
Validation
xcodebuild -project Cotabby.xcodeproj -scheme Cotabby -destination 'platform=macOS' build—** BUILD SUCCEEDED **(verified against the same edit before isolating to this branch).swiftlint lint --quiet Cotabby/UI/SettingsView.swift— exit 0.Risk / rollout notes
Copy-only + one SF Symbol swap (
heart.fill, available on all supported macOS versions). No behavior change, no schema or settings migration.Greptile Summary
Updates the Settings → Support section with revised copy and a refreshed call-to-action button. The change is purely cosmetic — no behavior, layout, or data model is affected.
Text(\"Buy Us a Coffee\")button label is replaced withLabel(\"Support\", systemImage: \"heart.fill\"), keeping the same ko-fi destination URL and.borderedProminentstyling.Confidence Score: 5/5
Safe to merge — the change is limited to two lines of UI copy and a SwiftUI label swap with no behavior or layout impact.
The diff touches only the supportSection view builder: one string literal gets two words added and one word inserted, and a plain Text CTA is replaced with a Label using the heart.fill SF Symbol (available since macOS 10.15). The ko-fi URL, button style, tint, and all other properties are unchanged. There is no logic, no data flow, and no new dependencies introduced.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[Settings View] --> B[supportSection] B --> C[Section: Support] C --> D[LabeledContent] D --> E[Label: description text] D --> F[Link: ko-fi.com/cotabby] F --> G[Label: Support + heart.fill icon] G --> H[.borderedProminent .tint .blue]Reviews (1): Last reviewed commit: "Update Support section copy and CTA" | Re-trigger Greptile