chore: rename app from ProxmoxDesktop to Clustri

This commit is contained in:
Matt
2026-08-10 00:00:59 +00:00
parent 190fdb2573
commit 27b9aeb45e
26 changed files with 63 additions and 75 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ export function TerminalConsole({ connectionId, node, vmid, onError, onConnected
if (!isTauriMode && !cancelled) {
// Dev mode mock terminal
terminal.writeln('\x1b[1;32m╔══════════════════════════════════════════╗\x1b[0m')
terminal.writeln('\x1b[1;32m║ ProxmoxDesktop - Terminal Console ║\x1b[0m')
terminal.writeln('\x1b[1;32m║ Clustri - Terminal Console ║\x1b[0m')
terminal.writeln('\x1b[1;32m╚══════════════════════════════════════════╝\x1b[0m')
terminal.writeln('')
terminal.writeln(`\x1b[33mNode: ${node} | VMID: ${vmid} | Type: LXC\x1b[0m`)
+1 -1
View File
@@ -43,7 +43,7 @@ export function Sidebar({ onAddConnection, activeView, onNavigate }: SidebarProp
</div>
<div className="min-w-0 leading-tight">
<h1 className="truncate text-sm font-semibold tracking-tight text-foreground">
ProxmoxDesktop
Clustri
</h1>
<p className="text-[10px] font-medium uppercase tracking-[0.14em] text-muted-foreground">
Ops Console
-12
View File
@@ -1,7 +1,6 @@
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { ThemeSwitcher } from '@/components/settings/ThemeSwitcher'
import { ConnectionManager } from '@/components/settings/ConnectionManager'
import { ExternalLink } from 'lucide-react'
export function SettingsPage() {
return (
@@ -59,17 +58,6 @@ export function SettingsPage() {
<span className="text-sm text-muted-foreground">Platform</span>
<span className="font-mono text-sm font-medium">Tauri + React</span>
</div>
<div className="pt-2 border-t">
<a
href="https://github.com/proxmoxdesktop"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-1.5 text-sm text-primary hover:underline"
>
View on GitHub
<ExternalLink className="h-3.5 w-3.5" />
</a>
</div>
</div>
</CardContent>
</Card>
+2 -2
View File
@@ -25,11 +25,11 @@ function applyTheme(theme: Theme) {
root.classList.add(theme)
}
localStorage.setItem('proxmoxdesktop-theme', theme)
localStorage.setItem('clustri-theme', theme)
}
function getInitialTheme(): Theme {
const stored = localStorage.getItem('proxmoxdesktop-theme')
const stored = localStorage.getItem('clustri-theme')
if (stored === 'light' || stored === 'dark' || stored === 'system') {
return stored
}