Skip to content

Commit

Permalink
fix: Re-enable GitHub about screen links (#240)
Browse files Browse the repository at this point in the history
This change also includes a drive-by update to link to
https://jbmorley.co.uk/about.
  • Loading branch information
jbmorley authored Sep 27, 2024
1 parent de5a1ff commit 31db571
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Symbolic/Models/ApplicationModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 31db571

Please sign in to comment.