From 3ce5d3bf2dcb14f5e44430f1e7bd78f9a0664ec0 Mon Sep 17 00:00:00 2001 From: Tunglies Date: Mon, 28 Apr 2025 06:16:14 +0800 Subject: [PATCH] fix: update required service version to 1.0.6 --- UPDATELOG.md | 1 + src-tauri/src/core/service.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/UPDATELOG.md b/UPDATELOG.md index a3970989..217f6b58 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -16,6 +16,7 @@ - Windows 错误的全局快捷键 'Ctrl+Q' 注册 - Vless URL 解码时网络类型错误 - 切换自定义代理地址导致系统代理状态异常 + - Macos TUN 默认无效网卡名称 #### 新增了: - 允许代理主机地址设置为非 127.0.0.1 对 WSL 代理友好 diff --git a/src-tauri/src/core/service.rs b/src-tauri/src/core/service.rs index bc9df585..03e69939 100644 --- a/src-tauri/src/core/service.rs +++ b/src-tauri/src/core/service.rs @@ -17,7 +17,7 @@ use tokio::time::Duration; // Windows only const SERVICE_URL: &str = "http://127.0.0.1:33211"; -const REQUIRED_SERVICE_VERSION: &str = "1.0.5"; // 定义所需的服务版本号 +const REQUIRED_SERVICE_VERSION: &str = "1.0.6"; // 定义所需的服务版本号 // 限制重装时间和次数的常量 const REINSTALL_COOLDOWN_SECS: u64 = 300; // 5分钟冷却期