💫 Rebranding to embassyOS (#1851)

* name change to embassyOS

* filename change

* motd ASCII update

* some leftovers
This commit is contained in:
Mariusz Kogen
2022-10-03 20:13:48 +02:00
committed by GitHub
parent 719cd5512c
commit 2000a8f3ed
24 changed files with 52 additions and 52 deletions

View File

@@ -33,7 +33,7 @@
</p>
<p *ngIf="option['newer-eos']">
<ion-text color="danger">
Unavailable. Backup was made on a newer version of EmbassyOS.
Unavailable. Backup was made on a newer version of embassyOS.
</ion-text>
</p>
</ion-label>

View File

@@ -2,7 +2,7 @@
<ion-toolbar>
<div style="padding: 10px 0">
<ion-title style="font-size: 32px"
>EmbassyOS {{ versions[0].version }}</ion-title
>embassyOS {{ versions[0].version }}</ion-title
>
<div class="underline"></div>
<ion-title>

View File

@@ -46,7 +46,7 @@ export function getBasicInfoSpec(devData: DevProjectData): ConfigSpec {
type: 'string',
name: 'Service Version',
description:
'Service version - accepts up to four digits, where the last confirms to revisions necessary for EmbassyOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service',
'Service version - accepts up to four digits, where the last confirms to revisions necessary for embassyOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service',
placeholder: 'e.g. 0.1.2.3',
nullable: false,
masked: false,

View File

@@ -63,7 +63,7 @@ export class ServerShowPage {
const alert = await this.alertCtrl.create({
header: 'Cannot Update',
message:
'You cannot update EmbassyOS when you have unresolved recovered services.',
'You cannot update embassyOS when you have unresolved recovered services.',
buttons: ['OK'],
})
await alert.present()
@@ -283,7 +283,7 @@ export class ServerShowPage {
private async presentAlertLatest() {
const alert = await this.alertCtrl.create({
header: 'Up to date!',
message: 'You are on the latest version of EmbassyOS.',
message: 'You are on the latest version of embassyOS.',
buttons: [
{
text: 'OK',
@@ -335,7 +335,7 @@ export class ServerShowPage {
Settings: [
{
title: 'Software Update',
description: 'Get the latest version of EmbassyOS',
description: 'Get the latest version of embassyOS',
icon: 'cog-outline',
action: () =>
this.eosService.updateAvailable$.getValue()

View File

@@ -13,7 +13,7 @@
<ion-item-group *ngIf="server$ | async as server">
<ion-item>
<ion-label>
<h2>EmbassyOS Version</h2>
<h2>embassyOS Version</h2>
<p>{{ server.version | displayEmver }}</p>
</ion-label>
</ion-item>

View File

@@ -131,7 +131,7 @@ export class LiveApiService extends ApiService {
return this.rpcRequest({ method: 'server.update', params })
// const res = await this.updateServer(params)
// if (res.response === 'no-updates') {
// throw new Error('Could not find a newer version of EmbassyOS')
// throw new Error('Could not find a newer version of embassyOS')
// }
// return res
}

View File

@@ -113,7 +113,7 @@ export const serverConfig: ConfigSpec = {
type: 'boolean',
name: 'Auto Check for Updates',
description:
'If enabled, EmbassyOS will automatically check for updates of itself and installed services. Updating will still require your approval and action. Updates will never be performed automatically.',
'If enabled, embassyOS will automatically check for updates of itself and installed services. Updating will still require your approval and action. Updates will never be performed automatically.',
default: true,
},
}