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