From d8195992e519343d6d8ff7fb17aa98358800d913 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Thu, 16 Jul 2026 23:48:10 -0500 Subject: DomainDig v4.4.1: Consolidate Audit Mode and remove the CLI target - 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 --- DomainDig/RootTabView.swift | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'DomainDig/RootTabView.swift') 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 } @@ -25,6 +25,14 @@ struct RootTabView: View { } .tag(RootTab.dashboard) + NavigationStack { + AuditListView(viewModel: viewModel) + } + .tabItem { + Label("Audit", systemImage: "checklist") + } + .tag(RootTab.audit) + NavigationStack { HistoryView(viewModel: viewModel) } @@ -39,14 +47,6 @@ struct RootTabView: View { } .tag(RootTab.inspect) - NavigationStack { - AuditModeView(viewModel: viewModel) - } - .tabItem { - Label("Audit", systemImage: "checklist") - } - .tag(RootTab.audit) - NavigationStack { SettingsView(viewModel: viewModel) } -- cgit v1.2.3