From 2a7752c0b831b4e3ce605ab7b297e8abfab62850 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 7 Jul 2024 14:11:29 -0700 Subject: [PATCH] fix app log version discrepancy --- Meshtastic/Views/Nodes/Helpers/Map/MapSettingsForm.swift | 2 +- Meshtastic/Views/Settings/AppLog.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Nodes/Helpers/Map/MapSettingsForm.swift b/Meshtastic/Views/Nodes/Helpers/Map/MapSettingsForm.swift index 2b703506..6ac10848 100644 --- a/Meshtastic/Views/Nodes/Helpers/Map/MapSettingsForm.swift +++ b/Meshtastic/Views/Nodes/Helpers/Map/MapSettingsForm.swift @@ -16,7 +16,7 @@ struct MapSettingsForm: View { @AppStorage("meshMapShowNodeHistory") private var nodeHistory = false @AppStorage("meshMapShowRouteLines") private var routeLines = false @AppStorage("enableMapConvexHull") private var convexHull = false - @AppStorage("enableMapWaypoints") private var waypoints = false + @AppStorage("enableMapWaypoints") private var waypoints = true @Binding var traffic: Bool @Binding var pointsOfInterest: Bool @Binding var mapLayer: MapLayer diff --git a/Meshtastic/Views/Settings/AppLog.swift b/Meshtastic/Views/Settings/AppLog.swift index 9e3a80a0..2ed2b081 100644 --- a/Meshtastic/Views/Settings/AppLog.swift +++ b/Meshtastic/Views/Settings/AppLog.swift @@ -176,7 +176,7 @@ struct AppLog: View { } } -@available(iOS 17.4, *) +@available(iOS 17.4, macOS 14.4, *) extension AppLog { @MainActor private func searchAppLogs() async -> [OSLogEntryLog] {