Skip to content

Commit

Permalink
fix: Update about screen links to reference the new website (#739)
Browse files Browse the repository at this point in the history
This change also includes a drive-by fix to add the version number to
support email subjects.
  • Loading branch information
jbmorley authored Feb 15, 2024
1 parent f88f530 commit 0514c0d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion core/Sources/BookmarksCore/Common/Legal.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,14 @@ public struct Legal {

public static let contents = Contents(repository: "inseven/bookmarks",
copyright: "Copyright © 2020-2024 Jason Morley") {
Action("Support", url: URL(address: "[email protected]", subject: "Bookmarks Support")!)

let subject = "Bookmarks Support (\(Bundle.main.version ?? "Unknown Version"))"

Action("Website", url: URL(string: "https://bookmarks.jbmorley.co.uk")!)
Action("Privacy Policy", url: URL(string: "https://bookmarks.jbmorley.co.uk/privacy-policy")!)
Action("GitHub", url: URL(string: "https://github.com/inseven/bookmarks")!)
Action("Support", url: URL(address: "[email protected]", subject: subject)!)

} acknowledgements: {
Acknowledgements("Developers") {
Credit("Jason Morley", url: URL(string: "https://jbmorley.co.uk"))
Expand Down

0 comments on commit 0514c0d

Please sign in to comment.