diff --git a/src/app/system-apps/cheetah/cheetah.component.html b/src/app/system-apps/cheetah/cheetah.component.html index ca6ce98..7ba99f4 100644 --- a/src/app/system-apps/cheetah/cheetah.component.html +++ b/src/app/system-apps/cheetah/cheetah.component.html @@ -23,8 +23,8 @@

-

CheetahOS

-

Version: 2.10.27

+

{{name}}

+

{{version}}

{{year}}

diff --git a/src/app/system-apps/cheetah/cheetah.component.ts b/src/app/system-apps/cheetah/cheetah.component.ts index edcb182..9c53aac 100644 --- a/src/app/system-apps/cheetah/cheetah.component.ts +++ b/src/app/system-apps/cheetah/cheetah.component.ts @@ -17,15 +17,15 @@ export class CheetahComponent implements BaseComponent { hasWindow = true; icon = `${this._consts.IMAGE_BASE_PATH}cheetah.png`; cheetahIcon = `${this._consts.IMAGE_BASE_PATH}cheetah-midsprint-dash.jpg`; - processId = 0; + processId = 11000; type = ComponentType.System; displayName = 'CheetahOS'; name = 'CheetahOS'; + version = 'Version: 2.10.27'; year = `\u00A9 ${new Date().getFullYear()}`; constructor( menuService:MenuService) { this._menuService = menuService; - this.processId = 11000; } onClosePropertyView():void{ diff --git a/src/app/system-apps/terminal/terminal.commands.ts b/src/app/system-apps/terminal/terminal.commands.ts index cf1f39a..3f9e335 100644 --- a/src/app/system-apps/terminal/terminal.commands.ts +++ b/src/app/system-apps/terminal/terminal.commands.ts @@ -125,7 +125,18 @@ All commands: } version(arg:string):string{ - return `Terminal version: ${arg}`; + + const banner = ` +███████ ██ ███ ███ ██████ ██ ███████ ████████ ███████ ██████ ███ ███ ██ ███ ██ █████ ██ +██ ██ ████ ████ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██ ████ ██ ██ ██ ██ +███████ ██ ██ ████ ██ ██████ ██ █████ ██ █████ ██████ ██ ████ ██ ██ ██ ██ ██ ███████ ██ + ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ +███████ ██ ██ ██ ██ ███████ ███████ ██ ███████ ██ ██ ██ ██ ██ ██ ████ ██ ██ ███████ + + [Version ${arg}] \u00A9 ${new Date().getFullYear()} + ` + + return banner; } list(arg1:string, arg2:string):string{ diff --git a/src/osdrive/Users/Pictures/cheetah-midsprint-dash.jpg b/src/osdrive/Users/Pictures/cheetah-midsprint-dash.jpg deleted file mode 100644 index beb8eb2..0000000 Binary files a/src/osdrive/Users/Pictures/cheetah-midsprint-dash.jpg and /dev/null differ