Revert "feat: update Cargo.toml for 2024 edition and optimize release profiles (#4681)"

This reverts commit 31e3104c7f.
This commit is contained in:
Tunglies
2025-09-08 21:48:09 +08:00
parent 31e3104c7f
commit 55b95a1985
51 changed files with 793 additions and 782 deletions

View File

@@ -1,6 +1,6 @@
use crate::{
config::Config,
core::{CoreManager, handle, sysopt},
core::{handle, sysopt, CoreManager},
ipc::IpcManager,
logging,
utils::logging::Type,
@@ -92,7 +92,7 @@ pub async fn quit() {
}
async fn clean_async() -> bool {
use tokio::time::{Duration, timeout};
use tokio::time::{timeout, Duration};
logging!(info, Type::System, true, "开始执行异步清理操作...");
@@ -252,10 +252,10 @@ pub async fn hide() {
add_light_weight_timer().await;
}
if let Some(window) = handle::Handle::global().get_window()
&& window.is_visible().unwrap_or(false)
{
let _ = window.hide();
if let Some(window) = handle::Handle::global().get_window() {
if window.is_visible().unwrap_or(false) {
let _ = window.hide();
}
}
handle::Handle::global().set_activation_policy_accessory();
}