mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* add clearnet functionality to frontend * add pattern and add sync db on rpcs * add domain pattern * show acme name instead of url if known * dont blow up if domain not present after delete * use common name for letsencrypt * normalize urls * refactor start-os ui net service * backend migration and rpcs for serverInfo.host * fix cors * implement clearnet for main startos ui * ability to add and remove tor addresses, including vanity * add guard to prevent duplicate addresses * misc bugfixes * better heuristics for launching UIs * fix ipv6 mocks * fix ipv6 display bug * rewrite url selection for launch ui --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button defaultHref="system"></ion-back-button>
|
|
</ion-buttons>
|
|
<ion-title>About</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="with-widgets">
|
|
<ion-item-group *ngIf="server$ | async as server">
|
|
<ion-item-divider>StartOS Info</ion-item-divider>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h2>Version</h2>
|
|
<p>{{ server.version }}</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h2>Git Hash</h2>
|
|
<p>{{ gitHash }}</p>
|
|
</ion-label>
|
|
<ion-button slot="end" fill="clear" (click)="copy(gitHash)">
|
|
<ion-icon slot="icon-only" name="copy-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-item>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h2>CA fingerprint</h2>
|
|
<p>{{ server.caFingerprint }}</p>
|
|
</ion-label>
|
|
<ion-button slot="end" fill="clear" (click)="copy(server.caFingerprint)">
|
|
<ion-icon slot="icon-only" name="copy-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-item>
|
|
|
|
<ion-item-divider>Web Addresses</ion-item-divider>
|
|
|
|
<interface-info *ngIf="ui$ | async as ui" [iFace]="ui"></interface-info>
|
|
</ion-item-group>
|
|
</ion-content>
|