This commit is contained in:
Garth Vander Houwen 2024-04-10 19:59:35 -07:00
parent a36289f214
commit 2b785b66b0
3 changed files with 3 additions and 4 deletions

View file

@ -73,7 +73,7 @@ struct UserMessageList: View {
if message.realACK {
Text("\(ackErrorVal?.display ?? "Empty Ack Error")").font(.caption2).foregroundColor(.gray)
} else {
Text("Acknowledged by another node").font(.caption2).foregroundColor(.orange)
Text("Acknowledged by another node").font(.caption2).foregroundColor(.pink)
}
} else if currentUser && message.ackError == 0 {
// Empty Error

View file

@ -231,9 +231,8 @@ struct Channels: View {
Button {
goBack()
} label: {
Label("close me", systemImage: "xmark")
Label("close", systemImage: "xmark")
}
.keyboardShortcut("w")
.buttonStyle(.bordered)
.buttonBorderShape(.capsule)
.controlSize(.large)

View file

@ -12,7 +12,7 @@ struct Firmware: View {
@Environment(\.managedObjectContext) var context
@EnvironmentObject var bleManager: BLEManager
var node: NodeInfoEntity?
@State var minimumVersion = "2.3.2"
@State var minimumVersion = "2.3.4"
@State var version = ""
@State private var currentDevice: DeviceHardware?
@State private var latestStable: FirmwareRelease?