diff options
| author | Christian Cleberg <[email protected]> | 2026-04-21 21:53:16 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-21 21:53:16 -0500 |
| commit | 1f58092dcb67cded75a850db364f3b46d86181f3 (patch) | |
| tree | 662731251ed1022b4a1585ec74379f233ca6705a /DomainDig/DomainDigApp.swift | |
| parent | 2e90ee4ceca73d5126118920b486149cb227c4e9 (diff) | |
| download | domain-dig-1f58092dcb67cded75a850db364f3b46d86181f3.tar.gz domain-dig-1f58092dcb67cded75a850db364f3b46d86181f3.tar.bz2 domain-dig-1f58092dcb67cded75a850db364f3b46d86181f3.zip | |
feat(v2.2.0): add foreground monitoring, notifications, and smarter diffs
- implement “Check All” sweep for tracked domains
- add local notifications for changes and certificate expiration
- introduce change severity filtering (low/medium/high)
- enhance change summaries and diff readability
- add certificate expiration tracking and alerts
- improve watchlist indicators for changes
- add sweep summary screen
- optimize performance for larger watchlists
Diffstat (limited to 'DomainDig/DomainDigApp.swift')
| -rw-r--r-- | DomainDig/DomainDigApp.swift | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/DomainDig/DomainDigApp.swift b/DomainDig/DomainDigApp.swift index 9c881d8..a34eb12 100644 --- a/DomainDig/DomainDigApp.swift +++ b/DomainDig/DomainDigApp.swift @@ -9,6 +9,10 @@ import SwiftUI @main struct DomainDigApp: App { + init() { + LocalNotificationService.shared.configureForegroundPresentation() + } + var body: some Scene { WindowGroup { ContentView() |
