From f045a5d339a796f40a9e958436ebc6f5314bdab8 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Thu, 23 Apr 2026 22:15:20 -0500 Subject: feat(v3.4.0): add backup, restore, and data portability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • introduce versioned DomainDig backup format • add full backup export/import with merge and replace modes • implement data validation and conflict handling • add partial exports for tracked domains, workflows, and history • add Data Portability settings section • support Files/iCloud Drive import and export • harden migrations for evolving local models • extend CLI with backup export and validation --- DomainDig/RootTabView.swift | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'DomainDig/RootTabView.swift') diff --git a/DomainDig/RootTabView.swift b/DomainDig/RootTabView.swift index 2d2b8ed..adf5702 100644 --- a/DomainDig/RootTabView.swift +++ b/DomainDig/RootTabView.swift @@ -20,6 +20,13 @@ struct RootTabView: View { Label("Watchlist", systemImage: "eye") } + NavigationStack { + MonitoringView(viewModel: viewModel) + } + .tabItem { + Label("Monitoring", systemImage: "waveform.path.ecg") + } + NavigationStack { HistoryView(viewModel: viewModel) } -- cgit v1.2.3