diff --git a/config/system.php b/config/system.php index f4d4afd..e2e56c2 100644 --- a/config/system.php +++ b/config/system.php @@ -2,7 +2,7 @@ return [ // Application Configuration - 'name' => 'Ktrix', + 'name' => 'Vallarx', 'environment' => 'dev', 'debug' => true, // Database Configuration diff --git a/core/lib/Module/Module.php b/core/lib/Module/Module.php index b68b268..9f85755 100644 --- a/core/lib/Module/Module.php +++ b/core/lib/Module/Module.php @@ -27,7 +27,7 @@ class Module extends ModuleInstanceAbstract implements ModuleConsoleInterface, M public function author(): string { - return 'Ktrix'; + return 'Vallarx'; } public function description(): string diff --git a/core/lib/Server.php b/core/lib/Server.php index 5c200ba..6a6d93b 100644 --- a/core/lib/Server.php +++ b/core/lib/Server.php @@ -78,7 +78,7 @@ class Server $this->kernel()->boot(); $container = $this->container(); - $console = new ConsoleApplication('Ktrix Console', Kernel::VERSION); + $console = new ConsoleApplication('Vallarx Console', Kernel::VERSION); /** @var ModuleManager $moduleManager */ $moduleManager = $container->get(ModuleManager::class); diff --git a/core/src/assets/favicon.svg b/core/src/assets/favicon.svg new file mode 100644 index 0000000..b3f617a --- /dev/null +++ b/core/src/assets/favicon.svg @@ -0,0 +1 @@ + diff --git a/core/src/layouts/logo/LogoDark.vue b/core/src/layouts/logo/LogoDark.vue index f91b360..eb9770b 100644 --- a/core/src/layouts/logo/LogoDark.vue +++ b/core/src/layouts/logo/LogoDark.vue @@ -1,42 +1,36 @@ + diff --git a/core/src/private.html b/core/src/private.html index 253ae3e..a251e44 100644 --- a/core/src/private.html +++ b/core/src/private.html @@ -2,7 +2,7 @@ - + - K-Trix + Vallarx
diff --git a/core/src/public.html b/core/src/public.html index b3d8bdb..d19bed8 100644 --- a/core/src/public.html +++ b/core/src/public.html @@ -2,9 +2,9 @@ - + - Ktrix Cloud + Vallarx
diff --git a/package-lock.json b/package-lock.json index 7224c69..c073137 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "ktrix", + "name": "vallarx", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "ktrix", + "name": "vallarx", "version": "0.0.1", "license": "AGPL-3.0-or-later", "dependencies": { diff --git a/package.json b/package.json index d04ab19..0de9968 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ktrix", + "name": "vallarx", "version": "0.0.1", "private": false, "license": "AGPL-3.0-or-later", diff --git a/vite.config.ts b/vite.config.ts index 528e8e6..d8f1147 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -55,6 +55,11 @@ export default defineConfig(({ mode }) => ({ dest: 'l10n', rename: { stripBase: true }, }, + { + src: path.resolve(__dirname, 'core/src/assets/favicon.svg'), + dest: '.', + rename: { stripBase: true }, + }, ], }), ],