mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-07 08:46:26 +00:00
Upgraded Rust to v1.96.1 (#831)
This commit is contained in:
parent
508c7f9701
commit
796855f0ef
@ -2,4 +2,5 @@
|
|||||||
- Improved all assistants, so running tasks can continue when you leave the assistant and return later.
|
- 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 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 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.
|
- 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
|
||||||
@ -3,7 +3,7 @@
|
|||||||
242
|
242
|
||||||
9.0.118 (commit c8cbca4ed1)
|
9.0.118 (commit c8cbca4ed1)
|
||||||
9.0.17 (commit f2c8152eed)
|
9.0.17 (commit f2c8152eed)
|
||||||
1.96.0 (commit ac68faa20)
|
1.96.1 (commit 31fca3adb)
|
||||||
8.15.0
|
8.15.0
|
||||||
2.11.2
|
2.11.2
|
||||||
64e91ff4ffd, release
|
64e91ff4ffd, release
|
||||||
|
|||||||
@ -402,12 +402,11 @@ fn remove_obsolete_qdrant_sidecar_files<R: tauri::Runtime>(app_handle: &tauri::A
|
|||||||
|
|
||||||
cfg_if::cfg_if! {
|
cfg_if::cfg_if! {
|
||||||
if #[cfg(any(target_os = "windows", target_os = "macos"))]{
|
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 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") {
|
&& exe_dir.to_string_lossy().contains("MindWork AI Studio") {
|
||||||
paths.push(exe_dir.join("target").join("databases").join("qdrant"));
|
paths.push(exe_dir.join("target").join("databases").join("qdrant"));
|
||||||
paths.push(exe_dir.join("qdrant.exe"));
|
paths.push(exe_dir.join("qdrant.exe"));
|
||||||
paths.push(exe_dir.join("qdrant"));
|
paths.push(exe_dir.join("qdrant"));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user