fix: update required service version to 1.0.6

This commit is contained in:
Tunglies 2025-04-28 06:16:14 +08:00
parent f6023dc618
commit 3ce5d3bf2d
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
- Windows 错误的全局快捷键 'Ctrl+Q' 注册 - Windows 错误的全局快捷键 'Ctrl+Q' 注册
- Vless URL 解码时网络类型错误 - Vless URL 解码时网络类型错误
- 切换自定义代理地址导致系统代理状态异常 - 切换自定义代理地址导致系统代理状态异常
- Macos TUN 默认无效网卡名称
#### 新增了: #### 新增了:
- 允许代理主机地址设置为非 127.0.0.1 对 WSL 代理友好 - 允许代理主机地址设置为非 127.0.0.1 对 WSL 代理友好

View File

@ -17,7 +17,7 @@ use tokio::time::Duration;
// Windows only // Windows only
const SERVICE_URL: &str = "http://127.0.0.1:33211"; 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分钟冷却期 const REINSTALL_COOLDOWN_SECS: u64 = 300; // 5分钟冷却期