Upgraded Rust to v1.96.1 (#831)

This commit is contained in:
Thorsten Sommer 2026-07-04 14:07:32 +02:00 committed by GitHub
parent 508c7f9701
commit 796855f0ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -3,3 +3,4 @@
- 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.
- Upgraded Rust to v1.96.1

View File

@ -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

View File

@ -402,15 +402,14 @@ fn remove_obsolete_qdrant_sidecar_files<R: tauri::Runtime>(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") {
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"));
}
}
}
}
for path in paths {
remove_obsolete_qdrant_path(&path);