diff options
| author | Christian Cleberg <[email protected]> | 2026-07-16 23:48:10 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-16 23:48:10 -0500 |
| commit | d8195992e519343d6d8ff7fb17aa98358800d913 (patch) | |
| tree | 09ef08c1c06ac55c84299d5fd1251755fe0cac4f /DomainDig/RootTabView.swift | |
| parent | 1edf5bc83c0dcc07246908af341f37e2c871edd7 (diff) | |
| download | domain-dig-d8195992e519343d6d8ff7fb17aa98358800d913.tar.gz domain-dig-d8195992e519343d6d8ff7fb17aa98358800d913.tar.bz2 domain-dig-d8195992e519343d6d8ff7fb17aa98358800d913.zip | |
DomainDig v4.4.1: Consolidate Audit Mode and remove the CLI targetv4.4.1
- Make DomainDig/DomainDig/Audit* the single active Audit Mode implementation
(models, views, exporter) with an Audit tab and session/export UI
- Include audit sessions in backup/restore lifecycle counts, summaries, and
merge behavior via DomainDataPortabilityService
- Remove the DomainDigCLI target, source file, scheme, and all project
references; keep the shared inspection/report pipeline for the app
- Align AppVersion.current to 4.4.1 and refresh README/architecture docs
- Add RELEASE_ROADMAP.md
Diffstat (limited to 'DomainDig/RootTabView.swift')
| -rw-r--r-- | DomainDig/RootTabView.swift | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/DomainDig/RootTabView.swift b/DomainDig/RootTabView.swift index 524e8e9..f2c9f6c 100644 --- a/DomainDig/RootTabView.swift +++ b/DomainDig/RootTabView.swift @@ -2,9 +2,9 @@ import SwiftUI private enum RootTab: Hashable { case dashboard + case audit case history case inspect - case audit case settings } @@ -26,6 +26,14 @@ struct RootTabView: View { .tag(RootTab.dashboard) NavigationStack { + AuditListView(viewModel: viewModel) + } + .tabItem { + Label("Audit", systemImage: "checklist") + } + .tag(RootTab.audit) + + NavigationStack { HistoryView(viewModel: viewModel) } .tabItem { @@ -40,14 +48,6 @@ struct RootTabView: View { .tag(RootTab.inspect) NavigationStack { - AuditModeView(viewModel: viewModel) - } - .tabItem { - Label("Audit", systemImage: "checklist") - } - .tag(RootTab.audit) - - NavigationStack { SettingsView(viewModel: viewModel) } .tabItem { |
