Skip to content

Commit

Permalink
2.5 is now a beta
Browse files Browse the repository at this point in the history
  • Loading branch information
garthvh committed Oct 5, 2024
1 parent 4a5c728 commit 691fcad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Meshtastic/Views/Settings/Config/DeviceConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct DeviceConfig: View {
Label("Time Zone", systemImage: "clock.badge.exclamationmark")
TextField("Time Zone", text: $tzdef, axis: .vertical)
.foregroundColor(.gray)
.onChange(of: tzdef, perform: { _ in
.onChange(of: tzdef) { _ in
var totalBytes = tzdef.utf8.count
// Only mess with the value if it is too big
while totalBytes > 63 {
Expand All @@ -114,7 +114,7 @@ struct DeviceConfig: View {
.disableAutocorrection(true)
Text("Time zone for dates on the device screen and log.")
.foregroundColor(.gray)
.font(.callout)
.font(.callout)
}
}
Section(header: Text("GPIO")) {
Expand Down
2 changes: 1 addition & 1 deletion Meshtastic/Views/Settings/Firmware.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct Firmware: View {
@Environment(\.managedObjectContext) var context
@EnvironmentObject var bleManager: BLEManager
var node: NodeInfoEntity?
@State var minimumVersion = "2.4.2"
@State var minimumVersion = "2.5.4"
@State var version = ""
@State private var currentDevice: DeviceHardware?
@State private var latestStable: FirmwareRelease?
Expand Down

0 comments on commit 691fcad

Please sign in to comment.