diff --git a/frontend/projects/ui/src/app/apps/ui/pages/apps-routes/app-show/components/app-show-additional/app-show-additional.component.html b/frontend/projects/ui/src/app/apps/ui/pages/apps-routes/app-show/components/app-show-additional/app-show-additional.component.html index acea37992..4fc0eea32 100644 --- a/frontend/projects/ui/src/app/apps/ui/pages/apps-routes/app-show/components/app-show-additional/app-show-additional.component.html +++ b/frontend/projects/ui/src/app/apps/ui/pages/apps-routes/app-show/components/app-show-additional/app-show-additional.component.html @@ -5,8 +5,8 @@ -

Version

-

{{ manifest.version | displayEmver }}

+

Installed

+

{{ pkg.installed?.['installed-at'] | date : 'medium' }}

Web Addresses - +

Tor

-

{{ server['tor-address'] }}

+

{{ torAddress }}

- - - +
+ + + + + + +
- +

LAN

-

{{ server['lan-address'] }}

+

{{ lanAddress }}

- - - +
+ + + + + + +
diff --git a/frontend/projects/ui/src/app/apps/ui/pages/server-routes/server-specs/server-specs.page.ts b/frontend/projects/ui/src/app/apps/ui/pages/server-routes/server-specs/server-specs.page.ts index 316b8c4fc..d4efca83d 100644 --- a/frontend/projects/ui/src/app/apps/ui/pages/server-routes/server-specs/server-specs.page.ts +++ b/frontend/projects/ui/src/app/apps/ui/pages/server-routes/server-specs/server-specs.page.ts @@ -24,6 +24,10 @@ export class ServerSpecsPage { return this.config.gitHash } + launch(url: string): void { + window.open(url, '_blank', 'noreferrer') + } + async copy(address: string) { let message = '' await copyToClipboard(address || '').then(success => { diff --git a/frontend/projects/ui/src/app/services/api/api.fixures.ts b/frontend/projects/ui/src/app/services/api/api.fixures.ts index 9920ff1fb..800eb6914 100644 --- a/frontend/projects/ui/src/app/services/api/api.fixures.ts +++ b/frontend/projects/ui/src/app/services/api/api.fixures.ts @@ -1224,6 +1224,7 @@ export module Mock { manifest: MockManifestBitcoind, installed: { 'last-backup': null, + 'installed-at': new Date().toISOString(), status: { configured: true, main: { @@ -1326,6 +1327,7 @@ export module Mock { manifest: MockManifestBitcoinProxy, installed: { 'last-backup': null, + 'installed-at': new Date().toISOString(), status: { configured: false, main: { @@ -1368,6 +1370,7 @@ export module Mock { manifest: MockManifestLnd, installed: { 'last-backup': null, + 'installed-at': new Date().toISOString(), status: { configured: true, main: { diff --git a/frontend/projects/ui/src/app/services/patch-db/data-model.ts b/frontend/projects/ui/src/app/services/patch-db/data-model.ts index d73581e72..01629667b 100644 --- a/frontend/projects/ui/src/app/services/patch-db/data-model.ts +++ b/frontend/projects/ui/src/app/services/patch-db/data-model.ts @@ -155,6 +155,7 @@ export enum PackageState { export interface InstalledPackageInfo { status: Status 'last-backup': string | null + 'installed-at': string 'current-dependencies': Record 'dependency-info': Record 'address-info': Record