From 5087430f02cf9d92e0649390e11e01337b399ef6 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Tue, 13 Aug 2024 16:44:29 -0700 Subject: [PATCH] Bump firmware version, remove outdated ble pairing information for factory reset --- Localizable.xcstrings | 2 +- Meshtastic/Views/Settings/Config/DeviceConfig.swift | 2 +- Meshtastic/Views/Settings/Firmware.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Localizable.xcstrings b/Localizable.xcstrings index b704efe3..6160d6ae 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -709,7 +709,7 @@ "All" : { }, - "All device and app data will be deleted. You will also need to forget your devices under Settings > Bluetooth." : { + "All device and app data will be deleted." : { }, "Allow incoming device control over the insecure legacy admin channel." : { diff --git a/Meshtastic/Views/Settings/Config/DeviceConfig.swift b/Meshtastic/Views/Settings/Config/DeviceConfig.swift index ff23c6e5..106614d2 100644 --- a/Meshtastic/Views/Settings/Config/DeviceConfig.swift +++ b/Meshtastic/Views/Settings/Config/DeviceConfig.swift @@ -183,7 +183,7 @@ struct DeviceConfig: View { .controlSize(.regular) .padding(.trailing) .confirmationDialog( - "All device and app data will be deleted. You will also need to forget your devices under Settings > Bluetooth.", + "All device and app data will be deleted.", isPresented: $isPresentingFactoryResetConfirm, titleVisibility: .visible ) { diff --git a/Meshtastic/Views/Settings/Firmware.swift b/Meshtastic/Views/Settings/Firmware.swift index e591761f..d76b1503 100644 --- a/Meshtastic/Views/Settings/Firmware.swift +++ b/Meshtastic/Views/Settings/Firmware.swift @@ -13,7 +13,7 @@ struct Firmware: View { @Environment(\.managedObjectContext) var context @EnvironmentObject var bleManager: BLEManager var node: NodeInfoEntity? - @State var minimumVersion = "2.4.0" + @State var minimumVersion = "2.4.3" @State var version = "" @State private var currentDevice: DeviceHardware? @State private var latestStable: FirmwareRelease?