From 8c90e010160db86a5a79c417d78e50768a48087a Mon Sep 17 00:00:00 2001
From: Matt Hill
Date: Thu, 15 Jun 2023 13:20:37 -0600
Subject: [PATCH] hide range ip addresses, update release notes
---
.../badge-menu.component.module.ts | 3 +-
.../modals/os-welcome/os-welcome.page.html | 4 ++-
.../server-specs/server-specs.module.ts | 2 ++
.../server-specs/server-specs.page.html | 31 ++++++++++++-------
.../src/app/pages/widgets/widgets.module.ts | 2 --
5 files changed, 25 insertions(+), 17 deletions(-)
diff --git a/frontend/projects/ui/src/app/components/badge-menu-button/badge-menu.component.module.ts b/frontend/projects/ui/src/app/components/badge-menu-button/badge-menu.component.module.ts
index 04cc6b8c6..1ad6c0e93 100644
--- a/frontend/projects/ui/src/app/components/badge-menu-button/badge-menu.component.module.ts
+++ b/frontend/projects/ui/src/app/components/badge-menu-button/badge-menu.component.module.ts
@@ -2,10 +2,9 @@ import { NgModule } from '@angular/core'
import { CommonModule } from '@angular/common'
import { IonicModule } from '@ionic/angular'
import { BadgeMenuComponent } from './badge-menu.component'
-import { TuiLetModule } from '@taiga-ui/cdk'
@NgModule({
- imports: [CommonModule, IonicModule, TuiLetModule],
+ imports: [CommonModule, IonicModule],
declarations: [BadgeMenuComponent],
exports: [BadgeMenuComponent],
})
diff --git a/frontend/projects/ui/src/app/modals/os-welcome/os-welcome.page.html b/frontend/projects/ui/src/app/modals/os-welcome/os-welcome.page.html
index 4880d5544..cddf37d15 100644
--- a/frontend/projects/ui/src/app/modals/os-welcome/os-welcome.page.html
+++ b/frontend/projects/ui/src/app/modals/os-welcome/os-welcome.page.html
@@ -26,8 +26,10 @@
Highlights
+ - Improved Tor reliability
+ - Experimental features tab
+ - multiple bugfixes and general performance enhancements
- Update branding
- - Miscellaneous bugfixes and performance enhancements
Previous Releases
diff --git a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.module.ts b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.module.ts
index 4cb7db15e..2393527ac 100644
--- a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.module.ts
+++ b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.module.ts
@@ -4,6 +4,7 @@ import { Routes, RouterModule } from '@angular/router'
import { IonicModule } from '@ionic/angular'
import { ServerSpecsPage } from './server-specs.page'
import { EmverPipesModule } from '@start9labs/shared'
+import { TuiLetModule } from '@taiga-ui/cdk'
const routes: Routes = [
{
@@ -18,6 +19,7 @@ const routes: Routes = [
IonicModule,
RouterModule.forChild(routes),
EmverPipesModule,
+ TuiLetModule,
],
declarations: [ServerSpecsPage],
})
diff --git a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
index ab4618820..581e8592f 100644
--- a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
+++ b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
@@ -45,18 +45,25 @@
-
-
-
-
- {{ ip.key }} ({{ entry.key }})
- {{ address }}
-
-
-
-
-
-
+
+
+
+ {{ iface.key }} (IPv4)
+ {{ ipv4 || 'n/a' }}
+
+
+
+
+
+
+
+ {{ iface.key }} (IPv6)
+ {{ ipv6 || 'n/a' }}
+
+
+
+
+
Device Credentials
diff --git a/frontend/projects/ui/src/app/pages/widgets/widgets.module.ts b/frontend/projects/ui/src/app/pages/widgets/widgets.module.ts
index 53291587a..de8f92c3f 100644
--- a/frontend/projects/ui/src/app/pages/widgets/widgets.module.ts
+++ b/frontend/projects/ui/src/app/pages/widgets/widgets.module.ts
@@ -2,7 +2,6 @@ import { NgModule } from '@angular/core'
import { CommonModule } from '@angular/common'
import { IonicModule } from '@ionic/angular'
import { RouterModule, Routes } from '@angular/router'
-import { TuiLetModule } from '@taiga-ui/cdk'
import { TuiLoaderModule } from '@taiga-ui/core'
import { TuiTilesModule } from '@taiga-ui/kit'
@@ -26,7 +25,6 @@ const routes: Routes = [
CommonModule,
IonicModule,
TuiTilesModule,
- TuiLetModule,
AddWidgetModule,
FavoritesModule,
HealthModule,