taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit 66adf65031d27f9e23cc59dd2cf7a31efa717733
parent 52494d6349340e56b0e259d91be37c815c32f6b5
Author: Marc Stibane <marc@taler.net>
Date:   Wed,  3 Jan 2024 17:40:59 +0100

remove about protocols

Diffstat:
MTalerWallet1/Views/Settings/AboutView.swift | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/TalerWallet1/Views/Settings/AboutView.swift b/TalerWallet1/Views/Settings/AboutView.swift @@ -44,7 +44,7 @@ struct AboutView: View { .accessibilityAddTraits(.isLink) .accessibilityRemoveTraits(.isStaticText) .onTapGesture() { - UIApplication.shared.open(URL(string:"https://taler.net")!, options: [:]) + UIApplication.shared.open(URL(string:TALER_NET)!, options: [:]) } SettingsItem(name: "App Version", id1: "app") { @@ -53,15 +53,15 @@ struct AboutView: View { SettingsItem(name: "Wallet Core Version", id1: "wallet-core") { Text(verbatim: "\(walletCore.versionInfo?.version ?? "unknown")") } - SettingsItem(name: "Supported Exchange Versions", id1: "exchange") { - Text(verbatim: "\(walletCore.versionInfo?.exchange ?? "unknown")") - } - SettingsItem(name: "Supported Merchant Versions", id1: "merchant") { - Text(verbatim: "\(walletCore.versionInfo?.merchant ?? "unknown")") - } - SettingsItem(name: "Used Bank", id1: "bank") { - Text(verbatim: "\(walletCore.versionInfo?.bank ?? "unknown")") - } +// SettingsItem(name: "Supported Exchange Versions", id1: "exchange") { +// Text(verbatim: "\(walletCore.versionInfo?.exchange ?? "unknown")") +// } +// SettingsItem(name: "Supported Merchant Versions", id1: "merchant") { +// Text(verbatim: "\(walletCore.versionInfo?.merchant ?? "unknown")") +// } +// SettingsItem(name: "Used Bank", id1: "bank") { +// Text(verbatim: "\(walletCore.versionInfo?.bank ?? "unknown")") +// } } .id(listID) .listStyle(myListStyle.style).anyView