diff --git a/UPDATELOG.md b/UPDATELOG.md index 75a03aa..ca03011 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -1,3 +1,27 @@ +## v1.7.6 + +### Notice + +- Clash Verge Rev 目前已进入稳定周期,日后更新将着重于 bug 修复与内核常规升级 + +### Features + +- Meta(mihomo)内核升级 1.18.7 +- 界面细节调整 +- 优化服务模式安装逻辑 +- 移除无用的 console log +- 能自动选择第一个订阅 + +### Bugs Fixes + +- 修复服务模式安装问题 +- 修复 Mac 下的代理绕过 CIDR 写法过滤 +- 修复 32 位升级 URL +- 修复不同分组 URL 测试地址配置无效的问题 +- 修复 Web UI 下的一处 hostname 参数 + +--- + ## v1.7.5 ### Features diff --git a/package.json b/package.json index b984a8d..9776f62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clash-verge", - "version": "1.7.5", + "version": "1.7.6", "license": "GPL-3.0-only", "scripts": { "dev": "tauri dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 2e16fdd..bccce15 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -790,7 +790,7 @@ dependencies = [ [[package]] name = "clash-verge" -version = "1.7.5" +version = "1.7.6" dependencies = [ "anyhow", "auto-launch", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 677d76b..b91bb90 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clash-verge" -version = "1.7.5" +version = "1.7.6" 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 04d4f49..cea474c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "../node_modules/@tauri-apps/cli/schema.json", "package": { "productName": "Clash Verge", - "version": "1.7.5" + "version": "1.7.6" }, "build": { "distDir": "../dist",