Bump firmware version, remove outdated ble pairing information for factory reset

This commit is contained in:
Garth Vander Houwen 2024-08-13 16:44:29 -07:00
parent 63b845fd62
commit 5087430f02
3 changed files with 3 additions and 3 deletions

View file

@ -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." : {

View file

@ -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
) {

View file

@ -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?