diff --git a/UPDATELOG.md b/UPDATELOG.md index 736ce1048..eecbe606b 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -4,6 +4,14 @@ - 修复系统代理端口不同步问题 +### ✨ 新增功能 + +- sidecar 模式下清理多余的内核进程,防止运行出现异常 + +### 🚀 优化改进 + + - 优化重构订阅切换逻辑,可以随时中断载入过程,防止卡死 + ## v2.3.1 ### 🐞 修复问题 diff --git a/package.json b/package.json index d1ab192ed..6106f1395 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clash-verge", - "version": "2.3.1", + "version": "2.3.2", "license": "GPL-3.0-only", "scripts": { "dev": "cross-env RUST_BACKTRACE=1 tauri dev -f verge-dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b17f5a822..8d363a3e2 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1042,7 +1042,7 @@ dependencies = [ [[package]] name = "clash-verge" -version = "2.3.1" +version = "2.3.2" dependencies = [ "ab_glyph", "aes-gcm", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 080451f87..43f5a2279 100755 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clash-verge" -version = "2.3.1" +version = "2.3.2" description = "clash verge" authors = ["zzzgydi", "wonfen", "MystiPanda"] license = "GPL-3.0-only" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 894d62a28..abd20c7c4 100755 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,5 +1,5 @@ { - "version": "2.3.1", + "version": "2.3.2", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "bundle": { "active": true,