From 4814c6e7c20aed81519a1485b45a446eaf89e4fd Mon Sep 17 00:00:00 2001 From: TheAlgorithm476 <algo@thealgorithm476.me> Date: Mon, 28 Apr 2025 12:26:06 +0200 Subject: [PATCH] Fix about dialog: --- Sources/ToolbarView.swift | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Sources/ToolbarView.swift b/Sources/ToolbarView.swift index 1d234a2..461dbe1 100644 --- a/Sources/ToolbarView.swift +++ b/Sources/ToolbarView.swift @@ -27,12 +27,11 @@ struct ToolbarView: View { .tooltip(Loc.mainMenu) .aboutDialog( visible: $about, - app: "AdwaitaTemplate", - developer: "david-swift", - version: "dev", - icon: .custom(name: "io.github.AparokshaUI.AdwaitaTemplate"), - website: .init(string: "https://git.aparoksha.dev/aparoksha/adwaita-template")!, - issues: .init(string: "https://git.aparoksha.dev/aparoksha/adwaita-template/issues")! + app: "PMCalc", + developer: "TheAlgorithm476", + version: "1.0", + icon: .custom(name: "me.thealgorithm476.PMCalc.PMCalc"), + website: .init(string: "https://repo.thealgorithm476.me/Bachelorproef/bap-poc-phase-4")! ) } }