diff --git a/UPDATELOG.md b/UPDATELOG.md index 36f83a75..471109b7 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -18,6 +18,7 @@ - 修复 MacOS 无法使用快捷键粘贴/选择/复制订阅地址。 - 修复 代理端口设置同步问题。 - 修复 Linux 无法与 Mihomo 核心 和 ClashVergeRev 服务通信。 + - 增加 服务器模式下启动mihomo内核的时候查找并停止其他已经存在的内核进程,防止内核假死等问题带来的通信失败。 3. **界面** - 修复 连接详情卡没有跟随主题色 diff --git a/src-tauri/src/core/service.rs b/src-tauri/src/core/service.rs index 19ea1a69..d7b3883c 100644 --- a/src-tauri/src/core/service.rs +++ b/src-tauri/src/core/service.rs @@ -7,7 +7,7 @@ use tokio::time::Duration; // Windows only const SERVICE_URL: &str = "http://127.0.0.1:33211"; -const REQUIRED_SERVICE_VERSION: &str = "1.0.2"; // 定义所需的服务版本号 +const REQUIRED_SERVICE_VERSION: &str = "1.0.3"; // 定义所需的服务版本号 #[derive(Debug, Deserialize, Serialize, Clone)] pub struct ResponseBody {