Skip to content
Merged
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
16 changes: 12 additions & 4 deletions Cotabby/UI/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ struct SettingsView: View {
Text("Cotabby")
.font(.system(size: 15, weight: .semibold, design: .rounded))

Text("Local AI Autocomplete")
Text("Local macOS AI Autocomplete")
.font(.system(size: 11, design: .rounded))
.foregroundStyle(.secondary)
}
Expand Down Expand Up @@ -414,10 +414,18 @@ struct SettingsView: View {
private var supportSection: some View {
Section("Support") {
LabeledContent {
Link("Buy Me a Coffee", destination: URL(string: "https://buymeacoffee.com/cotabby")!)
Link(destination: URL(string: "https://buymeacoffee.com/cotabby")!) {
Text("Support Us")
}
.buttonStyle(.borderedProminent)
.tint(.blue)
} label: {
Text("Cotabby is free and open source. If it's useful to you, consider supporting development.")
.foregroundStyle(.secondary)
Text(
"Cotabby is free and open source, maintained by two university students. "
+ "If it's useful to you, consider supporting development."
)
.foregroundStyle(.secondary)
.fixedSize(horizontal: false, vertical: true)
}
}
}
Expand Down
Loading