-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 🔒 Update about screen privacy policy link (#103)
This change also includes a drive-by fix to use the extended version in support emails.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ import Interact | |
@main | ||
struct ThoughtsApp: App { | ||
|
||
static let title = "Thoughts Support (\(Bundle.main.version ?? "Unknown Version"))" | ||
static let title = "Thoughts Support (\(Bundle.main.extendedVersion ?? "Unknown Version"))" | ||
|
||
var applicationModel: ApplicationModel | ||
let hotKey: HotKey | ||
|
@@ -63,7 +63,7 @@ struct ThoughtsApp: App { | |
|
||
About(repository: "inseven/thoughts", copyright: "Copyright © 2024 Jason Morley") { | ||
Action("Website", url: URL(string: "https://thoughts.jbmorley.co.uk")!) | ||
Action("Privacy Policy", url: URL(string: "https://thoughts.jbmorley.co.uk/#privacy-policy")!) | ||
Action("Privacy Policy", url: URL(string: "https://thoughts.jbmorley.co.uk/privacy-policy")!) | ||
Action("GitHub", url: URL(string: "https://github.com/inseven/thoughts")!) | ||
Action("Support", url: URL(address: "[email protected]", subject: Self.title)!) | ||
} acknowledgements: { | ||
|