From 2b785b66b0412891e160e4bf9fdc21d7ce915cf6 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 10 Apr 2024 19:59:35 -0700 Subject: [PATCH] PINK! --- Meshtastic/Views/Messages/UserMessageList.swift | 2 +- Meshtastic/Views/Settings/Channels.swift | 3 +-- Meshtastic/Views/Settings/Firmware.swift | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Meshtastic/Views/Messages/UserMessageList.swift b/Meshtastic/Views/Messages/UserMessageList.swift index c62def59..639ac6d7 100644 --- a/Meshtastic/Views/Messages/UserMessageList.swift +++ b/Meshtastic/Views/Messages/UserMessageList.swift @@ -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 diff --git a/Meshtastic/Views/Settings/Channels.swift b/Meshtastic/Views/Settings/Channels.swift index a00ca073..5f0f44fc 100644 --- a/Meshtastic/Views/Settings/Channels.swift +++ b/Meshtastic/Views/Settings/Channels.swift @@ -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) diff --git a/Meshtastic/Views/Settings/Firmware.swift b/Meshtastic/Views/Settings/Firmware.swift index 3558da1f..42d601e0 100644 --- a/Meshtastic/Views/Settings/Firmware.swift +++ b/Meshtastic/Views/Settings/Firmware.swift @@ -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?