chore: update UPDATELOG

This commit is contained in:
Tunglies 2025-04-20 23:51:05 +08:00
parent 1a9a2ff9e0
commit c7494de0a7
3 changed files with 6 additions and 4 deletions

View File

@ -13,6 +13,7 @@
- Macos 快捷键关闭窗口无法启用自动轻量模式
- 静默启动异常窗口创建和关闭流程
- 使用 tauri window-state 管理窗口,尝试解决各种窗口异常
- Windows 错误的全局快捷键 'Ctrl+Q' 注册
#### 新增了:
- 允许代理主机地址设置为非 127.0.0.1 对 WSL 代理友好

View File

@ -1,10 +1,9 @@
use crate::utils::autostart as startup_shortcut;
use crate::{
config::{Config, IVerge},
core::handle::Handle,
logging, logging_error,
process::AsyncHandler,
utils::logging::Type,
utils::{autostart as startup_shortcut, logging::Type},
};
use anyhow::Result;
use once_cell::sync::OnceCell;

View File

@ -1,7 +1,9 @@
use anyhow::{anyhow, Result};
use log::info;
use std::fs;
use std::path::{Path, PathBuf};
use std::{
fs,
path::{Path, PathBuf},
};
/// Windows 下的开机启动文件夹路径
#[cfg(target_os = "windows")]