diff options
| author | Christian Cleberg <[email protected]> | 2026-04-13 22:37:22 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-13 22:37:22 -0500 |
| commit | 5dcfe0f147c7871eaf5f3a88bd9e9fded38d4633 (patch) | |
| tree | 6bcbda4f02a131d3e3b870a3904ccd42f4af2f26 /Rune/App/RuneApp.swift | |
| parent | fcf864a15b70e4ecb5bd789b1db3116221c34394 (diff) | |
| download | rune-1.2.0.tar.gz rune-1.2.0.tar.bz2 rune-1.2.0.zip | |
v1.2.0 domain management and wallet expansionv1.2.0
Complete v1.1-aligned domain flows with forwards and glue CRUD, improve API payload resilience, and add wallet transaction/payment views.
Harden error handling and UX states across domain screens, remove out-of-scope DNSSEC/renewal record flows for now, and keep auth/session behavior aligned with token-based usage.
Diffstat (limited to 'Rune/App/RuneApp.swift')
| -rw-r--r-- | Rune/App/RuneApp.swift | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Rune/App/RuneApp.swift b/Rune/App/RuneApp.swift index 1709532..c826363 100644 --- a/Rune/App/RuneApp.swift +++ b/Rune/App/RuneApp.swift @@ -13,6 +13,7 @@ private struct RootView: View { @StateObject private var settingsViewModel = SettingsViewModel() @StateObject private var domainViewModel = DomainViewModel() @StateObject private var tokenViewModel = TokenViewModel() + @StateObject private var walletViewModel = WalletViewModel() @State private var selectedTab = 0 var body: some View { @@ -38,9 +39,10 @@ private struct RootView: View { } .tag(1) - SettingsView(viewModel: settingsViewModel) { + SettingsView(viewModel: settingsViewModel, walletViewModel: walletViewModel) { domainViewModel.reset() tokenViewModel.reset() + walletViewModel.reset() selectedTab = 0 } .tabItem { @@ -66,6 +68,7 @@ private struct RootView: View { guard let client = settingsViewModel.client else { domainViewModel.reset() tokenViewModel.reset() + walletViewModel.reset() selectedTab = 0 return } |
