Skip to content

Commit

Permalink
fix: 🔒 Update about screen privacy policy link (#103)
Browse files Browse the repository at this point in the history
This change also includes a drive-by fix to use the extended version in
support emails.
  • Loading branch information
jbmorley authored Jun 18, 2024
1 parent 37f9153 commit 796a5b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Thoughts/ThoughtsApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: {
Expand Down

0 comments on commit 796a5b6

Please sign in to comment.