mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
Merge branch 'next/major' of github.com:Start9Labs/start-os into rebase/feat/domains
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
size="small"
|
||||
shape="round"
|
||||
color="primary"
|
||||
href="https://docs.start9.com/0.3.5.x/user-manual/trust-ca#establishing-trust"
|
||||
href="https://docs.start9.com/0.3.5.x/user-manual/trust-ca"
|
||||
target="_blank"
|
||||
noreferrer
|
||||
>
|
||||
@@ -97,10 +97,4 @@
|
||||
</ng-template>
|
||||
</div>
|
||||
|
||||
<a
|
||||
id="install-cert"
|
||||
href="/eos/local.crt"
|
||||
[download]="
|
||||
config.isLocal() ? document.location.hostname + '.crt' : 'startos.crt'
|
||||
"
|
||||
></a>
|
||||
<a id="install-cert" href="/eos/local.crt"></a>
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
<ion-label>
|
||||
<h2>{{ server.zram ? 'Disable' : 'Enable' }} zram</h2>
|
||||
<p>
|
||||
Enabling zram may improve server performance, especially on low RAM
|
||||
devices
|
||||
Zram creates compressed swap in memory, resulting in faster I/O for
|
||||
low RAM devices
|
||||
</p>
|
||||
</ion-label>
|
||||
</ion-item>
|
||||
|
||||
@@ -59,11 +59,11 @@ export class ExperimentalFeaturesPage {
|
||||
presentAlertZram(enabled: boolean) {
|
||||
this.dialogs
|
||||
.open(TUI_PROMPT, {
|
||||
label: enabled ? 'Confirm' : 'Warning',
|
||||
label: 'Confirm',
|
||||
data: {
|
||||
content: enabled
|
||||
? 'Are you sure you want to disable zram?'
|
||||
: 'zram on StartOS is experimental. It may increase performance of you server, especially if it is a low RAM device.',
|
||||
? 'Are you sure you want to disable zram? It provides significant performance benefits on low RAM devices.'
|
||||
: 'Enable zram? It will only make a difference on lower RAM devices.',
|
||||
yes: enabled ? 'Disable' : 'Enable',
|
||||
no: 'Cancel',
|
||||
},
|
||||
@@ -90,7 +90,7 @@ export class ExperimentalFeaturesPage {
|
||||
|
||||
private async toggleZram(enabled: boolean) {
|
||||
const loader = this.loader
|
||||
.open(enabled ? 'Disabling zram...' : 'Enabling zram')
|
||||
.open(enabled ? 'Disabling zram...' : 'Enabling zram...')
|
||||
.subscribe()
|
||||
|
||||
try {
|
||||
|
||||
@@ -35,10 +35,10 @@ export module Mock {
|
||||
'shutting-down': false,
|
||||
}
|
||||
export const MarketplaceEos: RR.GetMarketplaceEosRes = {
|
||||
version: '0.3.5',
|
||||
version: '0.3.5.1',
|
||||
headline: 'Our biggest release ever.',
|
||||
'release-notes': {
|
||||
'0.3.5': 'Some **Markdown** release _notes_ for 0.3.5',
|
||||
'0.3.5.1': 'Some **Markdown** release _notes_ for 0.3.5.1',
|
||||
'0.3.4.4': 'Some **Markdown** release _notes_ for 0.3.4.4',
|
||||
'0.3.4.3': 'Some **Markdown** release _notes_ for 0.3.4.3',
|
||||
'0.3.4.2': 'Some **Markdown** release _notes_ for 0.3.4.2',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const mockPatchData: DataModel = {
|
||||
},
|
||||
'server-info': {
|
||||
id: 'abcdefgh',
|
||||
version: '0.3.5',
|
||||
version: '0.3.5.1',
|
||||
country: 'us',
|
||||
ui: {
|
||||
lanHostname: 'adjective-noun.local',
|
||||
|
||||
Reference in New Issue
Block a user