-
-
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: Re-enable GitHub about screen links (#240)
This change also includes a drive-by update to link to https://jbmorley.co.uk/about.
- Loading branch information
Showing
1 changed file
with
3 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 |
---|---|---|
|
@@ -158,13 +158,14 @@ class ApplicationModel: ObservableObject { | |
|
||
let title = "Symbolic Support (\(Bundle.main.version ?? "Unknown Version"))" | ||
|
||
return NSWindow(copyright: "Copyright © 2022-2024 Jason Morley") { | ||
return NSWindow(repository: "inseven/symbolic", | ||
copyright: "Copyright © 2022-2024 Jason Morley") { | ||
Action("Website", url: URL(string: "https://symbolic.app")!) | ||
Action("Privacy", url: URL(string: "https://symbolic.app/privacy-policy")!) | ||
Action("Support", url: URL(address: "[email protected]", subject: title)!) | ||
} acknowledgements: { | ||
Acknowledgements("Developers") { | ||
Credit("Jason Morley", url: URL(string: "https://jbmorley.co.uk")) | ||
Credit("Jason Morley", url: URL(string: "https://jbmorley.co.uk/about")) | ||
} | ||
Acknowledgements("Thanks") { | ||
Credit("Lukas Fittl") | ||
|