diff --git a/UPDATELOG.md b/UPDATELOG.md index 93d9da6..4640b49 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -1,3 +1,28 @@ +## v1.7.4 + +### Features + +- 展示局域网 IP 地址信息 +- 在设置页面直接复制环境变量 +- 优化服务模式安装逻辑 + +### Performance + +- 优化切换订阅速度 +- 优化更改端口速度 + +### Bugs Fixes + +- 调整 MacOS 托盘图标大小 +- Trojan URI 解析错误 +- 卡片拖动显示层级错误 +- 代理绕过格式检查错误 +- MacOS 下编辑器最大化失败 +- MacOS 服务安装失败 +- 更改窗口大小导致闪退的问题 + +--- + ## v1.7.3 ### Features diff --git a/package.json b/package.json index e736201..f8c61b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clash-verge", - "version": "1.7.3", + "version": "1.7.4", "license": "GPL-3.0-only", "scripts": { "dev": "tauri dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 83a6f3d..8b07e81 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -790,7 +790,7 @@ dependencies = [ [[package]] name = "clash-verge" -version = "1.7.3" +version = "1.7.4" dependencies = [ "anyhow", "auto-launch", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a1de09f..397ecd6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clash-verge" -version = "1.7.3" +version = "1.7.4" 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 ad5b936..36de767 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.3" + "version": "1.7.4" }, "build": { "distDir": "../dist",