💫 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

@@ -1,10 +1,10 @@
# EmbassyOS Frontend
# embassyOS Frontend
EmbassyOS has three user interfaces and a shared library, all written in Ionic/Angular/Typescript using an Angular workspace environment:
embassyOS has three user interfaces and a shared library, all written in Ionic/Angular/Typescript using an Angular workspace environment:
1. **ui**: the main user interface
1. **setup-wizard**: used to facilitate initial setup
1. **diagnostic-ui**: used to display certain diagnostic information in the event EmbassyOS fails to initialize
1. **diagnostic-ui**: used to display certain diagnostic information in the event embassyOS fails to initialize
1. **marketplace**: abstracted ui elements to search for, list and display details for packages and their dependencies
1. **shared**: contains components, types, and functions shared amongst all of the UIs.

View File

@@ -5,7 +5,7 @@
class="ion-text-center"
style="padding-bottom: 36px; font-size: calc(2vw + 14px)"
>
EmbassyOS - Diagnostic Mode
embassyOS - Diagnostic Mode
</h1>
<h2
style="
@@ -14,7 +14,7 @@
font-weight: bold;
"
>
EmbassyOS launch error:
embassyOS launch error:
</h2>
<div class="code-block">
<code>

View File

@@ -41,7 +41,7 @@ export class HomePage {
code: 20,
problem: 'Storage drive not found',
solution:
'Insert your EmbassyOS storage drive and click RESTART EMBASSY below.',
'Insert your embassyOS storage drive and click RESTART EMBASSY below.',
details: error.data?.details,
}
// drive corrupted

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>EmbassyOS Diagnostic UI</title>
<title>embassyOS Diagnostic UI</title>
<base href="/" />

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,
},
}