Replace all instances of the legacy product names "Kon" and "Corbie" with "Magnotia" across user-facing copy, code identifiers, package names, bundle ids, file paths, and documentation. Preserves the unrelated "konsole" (KDE terminal) reference and the parent CORBEL company name. - Renames 10 Rust crates (kon-* → magnotia-*) and the tauri binary - Updates package.json, tauri.conf.json (productName + identifier) - Renames CSS classes (kon-rh-* → magnotia-rh-*) and animations - Renames brand and roadmap docs - Regenerates Cargo.lock and package-lock.json Verified: svelte-check passes; pure-rust crates compile under new names.
34 lines
1.1 KiB
Svelte
34 lines
1.1 KiB
Svelte
<script>
|
|
import { page } from "$lib/stores/page.svelte.js";
|
|
import DictationPage from "$lib/pages/DictationPage.svelte";
|
|
import FilesPage from "$lib/pages/FilesPage.svelte";
|
|
import TasksPage from "$lib/pages/TasksPage.svelte";
|
|
import HistoryPage from "$lib/pages/HistoryPage.svelte";
|
|
import SettingsPage from "$lib/pages/SettingsPage.svelte";
|
|
import FirstRunPage from "$lib/pages/FirstRunPage.svelte";
|
|
import ShutdownRitualPage from "$lib/pages/ShutdownRitualPage.svelte";
|
|
|
|
// Redirect legacy "profiles" page to settings
|
|
$effect(() => {
|
|
if (page.current === "profiles") page.current = "settings";
|
|
});
|
|
</script>
|
|
|
|
<main class="h-full overflow-hidden" aria-label="Magnotia application content">
|
|
{#if page.current === "first-run"}
|
|
<FirstRunPage />
|
|
{:else if page.current === "dictation"}
|
|
<DictationPage />
|
|
{:else if page.current === "files"}
|
|
<FilesPage />
|
|
{:else if page.current === "tasks"}
|
|
<TasksPage />
|
|
{:else if page.current === "history"}
|
|
<HistoryPage />
|
|
{:else if page.current === "settings"}
|
|
<SettingsPage />
|
|
{:else if page.current === "shutdown"}
|
|
<ShutdownRitualPage />
|
|
{/if}
|
|
</main>
|