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
@@ -370,7 +370,7 @@ impl Connection {
}
fn keyring_service() -> &'static str {
"proxmox-desktop"
"clustri"
}
fn keyring_entry(connection_id: &str, field: &str) -> crate::Result<keyring::Entry> {
+3 -3
View File
@@ -129,11 +129,11 @@ struct AppState {
/// Returns the path of the persisted connections file.
///
/// Lives at `{app_config_dir}/proxmoxdesktop/connections.json`; the parent
/// Lives at `{app_config_dir}/clustri/connections.json`; the parent
/// directory is created lazily when the file is first written.
fn connections_file(app: &tauri::AppHandle) -> Result<PathBuf> {
let dir = app.path().app_config_dir()?;
Ok(dir.join("proxmoxdesktop").join("connections.json"))
Ok(dir.join("clustri").join("connections.json"))
}
#[tauri::command]
@@ -939,7 +939,7 @@ pub fn run() {
.build()?;
let _tray = TrayIconBuilder::with_id("main-tray")
.tooltip("ProxmoxDesktop")
.tooltip("Clustri")
.icon(app.default_window_icon().cloned().expect("no default icon"))
.menu(&menu)
.on_menu_event(move |app, event| match event.id.as_ref() {
+1 -1
View File
@@ -1,5 +1,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
proxmox_desktop::run()
clustri::run()
}