From 26c7f8635fc5a831efed6c88f6f930dac570db12 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 20 Jun 2022 22:56:26 -0700 Subject: [PATCH 1/2] Version and warning update --- MeshtasticApple/Views/Bluetooth/Connect.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MeshtasticApple/Views/Bluetooth/Connect.swift b/MeshtasticApple/Views/Bluetooth/Connect.swift index ec6743a3..9c6498d4 100644 --- a/MeshtasticApple/Views/Bluetooth/Connect.swift +++ b/MeshtasticApple/Views/Bluetooth/Connect.swift @@ -24,7 +24,7 @@ struct Connect: View { var body: some View { let firmwareVersion = bleManager.lastConnnectionVersion - let minimumVersion = "1.3.19" + let minimumVersion = "1.3.20" let supportedVersion = firmwareVersion == "0.0.0" || minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedAscending || minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedSame NavigationView { @@ -38,7 +38,7 @@ struct Connect: View { Section(header: Text("Upgrade your Firmware").font(.title)) { - Text("🚨 1.3 ALPHA PREVIEW Your firmware version is unsupported by the preview the minimum firmware version is \(minimumVersion) this is a hard limit.").font(.subheadline).foregroundColor(.red) + Text("🚨 1.3 ALPHA PREVIEW this version of the app supports only version \(minimumVersion).").font(.subheadline).foregroundColor(.red) } .textCase(nil) } From 5e0070a2a6f9d9b0c69166ae052b6387a9ac3a5c Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 20 Jun 2022 22:57:29 -0700 Subject: [PATCH 2/2] Update settings page --- MeshtasticApple/Views/Settings/Settings.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MeshtasticApple/Views/Settings/Settings.swift b/MeshtasticApple/Views/Settings/Settings.swift index 882efb64..c580f17e 100644 --- a/MeshtasticApple/Views/Settings/Settings.swift +++ b/MeshtasticApple/Views/Settings/Settings.swift @@ -43,7 +43,7 @@ struct Settings: View { } } - Section("Radio Configuration (Non-Functional Interaction Previews)") { + Section("Radio Configuration (Non-Functional Interaction Previews except for LoRa Config)") { NavigationLink { DeviceConfig()