|
|
@@ -1523,6 +1523,7 @@ final class DashboardView: NSView, NSTextFieldDelegate, NSSharingServicePickerDe
|
|
|
let aboutSection = makeSettingsSection(rows: [
|
|
|
makeSettingsRow(title: "Website", systemImage: "globe", accessory: nil, tapAction: #selector(didTapWebsite)),
|
|
|
makeSettingsRow(title: "Support", systemImage: "questionmark.circle", accessory: nil, tapAction: #selector(didTapSupport)),
|
|
|
+ makeSettingsRow(title: "Contact", systemImage: "envelope", accessory: nil, tapAction: #selector(didTapContact)),
|
|
|
makeSettingsRow(title: "Terms of Use", systemImage: "doc.text", accessory: nil, tapAction: #selector(didTapTermsOfUse)),
|
|
|
makeSettingsRow(title: "Privacy Policy", systemImage: "shield", accessory: nil, tapAction: #selector(didTapPrivacyPolicy))
|
|
|
])
|
|
|
@@ -1884,6 +1885,10 @@ final class DashboardView: NSView, NSTextFieldDelegate, NSSharingServicePickerDe
|
|
|
AppLegalURLs.openInSafari(AppLegalURLs.support)
|
|
|
}
|
|
|
|
|
|
+ @objc private func didTapContact() {
|
|
|
+ AppLegalURLs.openInSafari(AppLegalURLs.contact)
|
|
|
+ }
|
|
|
+
|
|
|
@objc private func didTapTermsOfUse() {
|
|
|
AppLegalURLs.openInSafari(AppLegalURLs.termsOfUse)
|
|
|
}
|