Refine Support section copy and donate button#242
Merged
Conversation
Update the Support blurb to note Cotabby is maintained by two university students, turn the donate link into a prominent blue "Support Us" button, and clarify the header tagline as "Local macOS AI Autocomplete".
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
Polishes the Settings Support section. Updates the blurb to mention Cotabby is maintained by two university students, replaces the plain "Buy Me a Coffee" text link with a prominent blue "Support Us" button, and clarifies the header tagline to "Local macOS AI Autocomplete". The long description now uses
fixedSizeso it wraps and stays vertically aligned next to the button.Validation
UI is copy/styling only within the existing Form
Section.Linked issues
None.
Risk / rollout notes
Cosmetic only — no behavior, settings, or schema changes. The donate URL is unchanged (https://buymeacoffee.com/cotabby).
Greptile Summary
Polishes the Settings Support section with copy and styling updates only — no behavior, settings, or schema changes are introduced.
Linktext with aborderedProminentblue "Support Us" button and adds.fixedSize(horizontal: false, vertical: true)to ensure the label text wraps correctly alongside it.Confidence Score: 5/5
Safe to merge — all changes are confined to display copy and button styling within an existing Form Section.
Both hunks touch only static text values and SwiftUI view modifiers. The donate URL is unchanged and was already force-unwrapped as a compile-time constant before this PR. The
.fixedSizemodifier is applied correctly (vertical only) for multi-line label wrapping inside aLabeledContent. No state, settings, services, or business logic are touched.No files require special attention.
Important Files Changed
borderedProminentblue button, expanded support blurb, and addedfixedSizefor correct text wrapping — no logic or behavior changes.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[SettingsView] --> B[supportSection] B --> C["Section('Support')"] C --> D[LabeledContent] D --> E["label: Text — updated copy + fixedSize(horizontal: false, vertical: true)"] D --> F["content: Link → buymeacoffee.com/cotabby .buttonStyle(.borderedProminent) .tint(.blue)"] F --> G["Opens URL in browser"]Reviews (1): Last reviewed commit: "Refine Support section copy and styling" | Re-trigger Greptile