diff --git a/app/MindWork AI Studio/wwwroot/changelog/v26.6.3.md b/app/MindWork AI Studio/wwwroot/changelog/v26.6.3.md index 57497a85..2ca524d4 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v26.6.3.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v26.6.3.md @@ -2,4 +2,5 @@ - Improved all assistants, so running tasks can continue when you leave the assistant and return later. - Improved the assistant overview so it shows which assistants are still running or have a result ready. - Improved the activity indicators for running chats and assistants so they use a consistent blue highlight. -- Improved the chat experience by automatically focusing the message composer again when it becomes available. Thanks, Dominic Neuburg (`donework`), for the contribution. \ No newline at end of file +- Improved the chat experience by automatically focusing the message composer again when it becomes available. Thanks, Dominic Neuburg (`donework`), for the contribution. +- Upgraded Rust to v1.96.1 \ No newline at end of file diff --git a/metadata.txt b/metadata.txt index 6259022c..a2fce27d 100644 --- a/metadata.txt +++ b/metadata.txt @@ -3,7 +3,7 @@ 242 9.0.118 (commit c8cbca4ed1) 9.0.17 (commit f2c8152eed) -1.96.0 (commit ac68faa20) +1.96.1 (commit 31fca3adb) 8.15.0 2.11.2 64e91ff4ffd, release diff --git a/runtime/src/qdrant_edge_database.rs b/runtime/src/qdrant_edge_database.rs index 0c495cb4..26ae04fe 100644 --- a/runtime/src/qdrant_edge_database.rs +++ b/runtime/src/qdrant_edge_database.rs @@ -402,12 +402,11 @@ fn remove_obsolete_qdrant_sidecar_files(app_handle: &tauri::A cfg_if::cfg_if! { if #[cfg(any(target_os = "windows", target_os = "macos"))]{ - if let Ok(current_exe) = std::env::current_exe() && let Some(exe_dir) = current_exe.parent() { - if exe_dir.to_string_lossy().contains("MindWork AI Studio") { - paths.push(exe_dir.join("target").join("databases").join("qdrant")); - paths.push(exe_dir.join("qdrant.exe")); - paths.push(exe_dir.join("qdrant")); - } + if let Ok(current_exe) = std::env::current_exe() && let Some(exe_dir) = current_exe.parent() + && exe_dir.to_string_lossy().contains("MindWork AI Studio") { + paths.push(exe_dir.join("target").join("databases").join("qdrant")); + paths.push(exe_dir.join("qdrant.exe")); + paths.push(exe_dir.join("qdrant")); } } }