From ede41868962ffed386b0da694d14cdfe6cfdb34f Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Mon, 20 Oct 2025 22:15:48 -0700 Subject: Cleanup and a bunch of work to fix issues syncing, loading, and general bookmark states in TrackerView. Added search field (substring conjunctive filter on server/bookmark names and descriptions). --- Hotline/Models/ApplicationState.swift | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Hotline/Models/ApplicationState.swift (limited to 'Hotline/Models/ApplicationState.swift') diff --git a/Hotline/Models/ApplicationState.swift b/Hotline/Models/ApplicationState.swift deleted file mode 100644 index 6e077c5..0000000 --- a/Hotline/Models/ApplicationState.swift +++ /dev/null @@ -1,16 +0,0 @@ -import SwiftUI - -@Observable -final class ApplicationState { - static let shared = ApplicationState() - - var activeHotline: Hotline? = nil - var activeServerState: ServerState? = nil - - // Frontmost server window information - var activeServerID: UUID? = nil - var activeServerBanner: NSImage? = nil - var activeServerName: String? = nil - - var cloudKitReady: Bool = false -} -- cgit