diff options
| author | Christian Cleberg <[email protected]> | 2026-04-25 00:03:59 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-25 00:03:59 -0500 |
| commit | fd34553ab0e63b4d3bc22532b61f4fef32846f34 (patch) | |
| tree | 1317656b64970b113e195dcb29d71e443eb4354d /DomainDig/ContentView.swift | |
| parent | 3f0b7746b1bee4c2f626eb805e3fd13c5f2f5d22 (diff) | |
| download | domain-dig-fd34553ab0e63b4d3bc22532b61f4fef32846f34.tar.gz domain-dig-fd34553ab0e63b4d3bc22532b61f4fef32846f34.tar.bz2 domain-dig-fd34553ab0e63b4d3bc22532b61f4fef32846f34.zip | |
DomainDig v3.9.0 — Portfolio Dashboard
* Portfolio summary cards
* Recent activity feed across tracked domains
* Attention-required queue prioritized by severity
* Certificate expiry visibility and expiring-soon section
* Quick portfolio filters for triage
* Deterministic per-domain health scoring
* Local portfolio search
* Apex-domain grouping for tracked assets
Diffstat (limited to 'DomainDig/ContentView.swift')
| -rw-r--r-- | DomainDig/ContentView.swift | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/DomainDig/ContentView.swift b/DomainDig/ContentView.swift index 5f119ca..754909c 100644 --- a/DomainDig/ContentView.swift +++ b/DomainDig/ContentView.swift @@ -2518,6 +2518,10 @@ struct SettingsView: View { } Section("Preferences") { + NavigationLink("Tracked Domains") { + WatchlistView(viewModel: viewModel) + } + NavigationLink("Workflows") { WorkflowsView(viewModel: viewModel) } @@ -2532,6 +2536,10 @@ struct SettingsView: View { } Section("Services") { + NavigationLink("Monitoring Activity") { + MonitoringView(viewModel: viewModel) + } + NavigationLink("iCloud Sync") { CloudSyncSettingsView() } @@ -2557,7 +2565,7 @@ struct SettingsView: View { } } } - .navigationTitle("More") + .navigationTitle("Settings") } } |
