mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
* Bump version * update the translations (#1540) update the translations * Don't alert (with sound: .default) when updating Live Activity (#1536) * Fix adding channels (#1532) * Full translation into Spanish (#1529) * tapback with any emoji (#1538) * Call clearStaleNodes at start of sendWantConfig (#1535) * NFC Tag contact (#1537) * Accessorymanager background discovery (#1542) * Don't add new BLE devices to the device list in the backgournd * Bump version * Update Meshtastic/MeshtasticApp.swift Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Meshtastic/MeshtasticApp.swift Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Revert "Full translation into Spanish (#1529)" (#1543) This reverts commitf25fdfb89f. * Revert "update the translations (#1540)" (#1544) This reverts commitcb2fd8cc15. * Revert "NFC Tag contact (#1537)" (#1545) This reverts commit5c22b8b6e0. * Update Meshtastic/Views/Messages/TapbackInputView.swift Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Meshtastic/Helpers/EmojiOnlyTextField.swift Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Revert "Accessorymanager background discovery (#1542)" (#1553) This reverts commit487f24b99a. * Update protobufs * Remove UI Kit code, clean up waypoint form emoji picker * Remove redundant nested Task in tapback emoji handler (#1552) * Initial plan * Remove nested Task block in tapback handler Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Delete empty file * Handle nil for emoji keyboard type extension * Remove UI kit method from waypoint form emoji picker * Remove UI kit emoji picker from tapback * Add Exchange User Info (#1550) * Emoji keyboard (#1559) * Add file missing from project, must have merged badly * Remove ui kit emoji keyboard * Discovery background fixes (#1561) * Make BLE Transport an actor to fix background discovery crashes * Protobufs * Update Meshtastic/Accessory/Transports/Bluetooth Low Energy/BLETransport.swift Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Throw too many retries error again, remove return --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Increase connection timeout * Update protobufs * Revert "Fix adding channels (#1532)" (#1562) This reverts commitbff8ca018b. --------- Co-authored-by: MGJ <62177301+MGJ520@users.noreply.github.com> Co-authored-by: Mike Robbins <mrobbins@alum.mit.edu> Co-authored-by: Benjamin Faershtein <119711889+RCGV1@users.noreply.github.com> Co-authored-by: Alvaro Samudio <alvarosamudio@protonmail.com> Co-authored-by: Mathew Kamkar <578302+matkam@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ben Meadors <benmmeadors@gmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> Co-authored-by: Brian Hardie <777730+bhardie@users.noreply.github.com>
223 lines
6.1 KiB
Swift
223 lines
6.1 KiB
Swift
//
|
|
// UserDefaults.swift
|
|
// Meshtastic
|
|
//
|
|
// Copyright(c) Garth Vander Houwen 4/24/23.
|
|
//
|
|
|
|
import Foundation
|
|
import OSLog
|
|
|
|
@propertyWrapper
|
|
struct UserDefault<T: Decodable> {
|
|
let key: UserDefaults.Keys
|
|
let defaultValue: T
|
|
|
|
init(_ key: UserDefaults.Keys, defaultValue: T) {
|
|
self.key = key
|
|
self.defaultValue = defaultValue
|
|
}
|
|
|
|
var wrappedValue: T {
|
|
get {
|
|
if defaultValue is any RawRepresentable {
|
|
let storedValue = UserDefaults.standard.object(forKey: key.rawValue)
|
|
|
|
guard let storedValue,
|
|
let jsonString = (storedValue is String) ? "\"\(storedValue)\"" : "\(storedValue)",
|
|
let data = jsonString.data(using: .utf8),
|
|
let value = (try? JSONDecoder().decode(T.self, from: data)) else { return defaultValue }
|
|
|
|
return value
|
|
}
|
|
|
|
return UserDefaults.standard.object(forKey: key.rawValue) as? T ?? defaultValue
|
|
}
|
|
set {
|
|
UserDefaults.standard.set((newValue as? any RawRepresentable)?.rawValue ?? newValue, forKey: key.rawValue)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension UserDefaults {
|
|
enum Keys: String, CaseIterable {
|
|
case preferredPeripheralId
|
|
case preferredPeripheralNum
|
|
case provideLocation
|
|
case provideLocationInterval
|
|
case mapLayer
|
|
case meshMapDistance
|
|
case enableMapWaypoints
|
|
case meshMapRecentering
|
|
case meshMapShowNodeHistory
|
|
case meshMapShowRouteLines
|
|
case enableMapConvexHull
|
|
case enableMapRecentering
|
|
case enableMapNodeHistoryPins
|
|
case enableMapRouteLines
|
|
case enableMapTraffic
|
|
case enableMapPointsOfInterest
|
|
case enableOfflineMaps
|
|
case enableMapShowFavorites
|
|
case mapTileServer
|
|
case enableOverlayServer
|
|
case mapOverlayServer
|
|
case mapTilesAboveLabels
|
|
case mapUseLegacy
|
|
case enableDetectionNotifications
|
|
case detectionSensorRole
|
|
case enableSmartPosition
|
|
case newNodeNotifications
|
|
case lowBatteryNotifications
|
|
case channelMessageNotifications
|
|
case modemPreset
|
|
case firmwareVersion
|
|
case hardwareModel
|
|
case environmentEnableWeatherKit
|
|
case enableAdministration
|
|
case mapReportingOptIn
|
|
case firstLaunch
|
|
case showDeviceOnboarding
|
|
case usageDataAndCrashReporting
|
|
case autoconnectOnDiscovery
|
|
case purgeStaleNodeDays
|
|
case manualConnections
|
|
case testIntEnum
|
|
}
|
|
|
|
func reset() {
|
|
Keys.allCases.forEach { removeObject(forKey: $0.rawValue) }
|
|
}
|
|
|
|
@UserDefault(.preferredPeripheralId, defaultValue: "")
|
|
static var preferredPeripheralId: String
|
|
|
|
@UserDefault(.preferredPeripheralNum, defaultValue: 0)
|
|
static var preferredPeripheralNum: Int
|
|
|
|
@UserDefault(.provideLocation, defaultValue: false)
|
|
static var provideLocation: Bool
|
|
|
|
@UserDefault(.provideLocationInterval, defaultValue: 30)
|
|
static var provideLocationInterval: Int
|
|
|
|
@UserDefault(.mapLayer, defaultValue: .standard)
|
|
static var mapLayer: MapLayer
|
|
|
|
@UserDefault(.meshMapDistance, defaultValue: 800000)
|
|
static var meshMapDistance: Double
|
|
|
|
@UserDefault(.enableMapWaypoints, defaultValue: true)
|
|
static var enableMapWaypoints: Bool
|
|
|
|
@UserDefault(.enableMapRecentering, defaultValue: false)
|
|
static var enableMapRecentering: Bool
|
|
|
|
@UserDefault(.enableMapNodeHistoryPins, defaultValue: false)
|
|
static var enableMapNodeHistoryPins: Bool
|
|
|
|
@UserDefault(.enableMapRouteLines, defaultValue: false)
|
|
static var enableMapRouteLines: Bool
|
|
|
|
@UserDefault(.enableMapConvexHull, defaultValue: false)
|
|
static var enableMapConvexHull: Bool
|
|
|
|
@UserDefault(.enableMapTraffic, defaultValue: false)
|
|
static var enableMapTraffic: Bool
|
|
|
|
@UserDefault(.enableMapPointsOfInterest, defaultValue: false)
|
|
static var enableMapPointsOfInterest: Bool
|
|
|
|
@UserDefault(.enableMapShowFavorites, defaultValue: false)
|
|
static var enableMapShowFavorites: Bool
|
|
|
|
@UserDefault(.enableDetectionNotifications, defaultValue: false)
|
|
static var enableDetectionNotifications: Bool
|
|
|
|
@UserDefault(.detectionSensorRole, defaultValue: .sensor)
|
|
static var detectionSensorRole: DetectionSensorRole
|
|
|
|
@UserDefault(.enableSmartPosition, defaultValue: false)
|
|
static var enableSmartPosition: Bool
|
|
|
|
@UserDefault(.channelMessageNotifications, defaultValue: true)
|
|
static var channelMessageNotifications: Bool
|
|
|
|
@UserDefault(.newNodeNotifications, defaultValue: true)
|
|
static var newNodeNotifications: Bool
|
|
|
|
@UserDefault(.lowBatteryNotifications, defaultValue: true)
|
|
static var lowBatteryNotifications: Bool
|
|
|
|
@UserDefault(.modemPreset, defaultValue: 0)
|
|
static var modemPreset: Int
|
|
|
|
@UserDefault(.firmwareVersion, defaultValue: "0.0.0")
|
|
static var firmwareVersion: String
|
|
|
|
@UserDefault(.hardwareModel, defaultValue: "Unset")
|
|
static var hardwareModel: String
|
|
|
|
@UserDefault(.environmentEnableWeatherKit, defaultValue: true)
|
|
static var environmentEnableWeatherKit: Bool
|
|
|
|
@UserDefault(.enableAdministration, defaultValue: false)
|
|
static var enableAdministration: Bool
|
|
|
|
@UserDefault(.mapReportingOptIn, defaultValue: false)
|
|
static var mapReportingOptIn: Bool
|
|
|
|
@UserDefault(.usageDataAndCrashReporting, defaultValue: true)
|
|
static var usageDataAndCrashReporting: Bool
|
|
|
|
@UserDefault(.firstLaunch, defaultValue: true)
|
|
static var firstLaunch: Bool
|
|
|
|
@UserDefault(.showDeviceOnboarding, defaultValue: false)
|
|
static var showDeviceOnboarding: Bool
|
|
|
|
@UserDefault(.autoconnectOnDiscovery, defaultValue: true)
|
|
static var autoconnectOnDiscovery: Bool
|
|
|
|
@UserDefault(.purgeStaleNodeDays, defaultValue: 0)
|
|
static var purgeStaleNodeDays: Double
|
|
|
|
@UserDefault(.testIntEnum, defaultValue: .one)
|
|
static var testIntEnum: TestIntEnum
|
|
|
|
static var manualConnections: [Device] {
|
|
get {
|
|
// Retrieve data from UserDefaults
|
|
guard let data = UserDefaults.standard.data(forKey: Keys.manualConnections.rawValue) else {
|
|
return []
|
|
}
|
|
|
|
// Decode the Data back to [Device]
|
|
do {
|
|
let decoder = JSONDecoder()
|
|
let devices = try decoder.decode([Device].self, from: data)
|
|
return devices
|
|
} catch {
|
|
return []
|
|
}
|
|
}
|
|
set {
|
|
do {
|
|
// Encode the [Device] to Data
|
|
let encoder = JSONEncoder()
|
|
let data = try encoder.encode(newValue)
|
|
|
|
// Store the Data in UserDefaults
|
|
UserDefaults.standard.set(data, forKey: Keys.manualConnections.rawValue)
|
|
} catch {
|
|
Logger.transport.error("💥 Failed to encode manualConnections: \(error, privacy: .public)")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
enum TestIntEnum: Int, Decodable {
|
|
case one = 1
|
|
case two
|
|
case three
|
|
}
|