chore: update to 2.0 rc2

This commit is contained in:
wonfen 2024-10-21 03:15:02 +08:00
parent babf5d840c
commit bbd72a79cb
4 changed files with 10 additions and 8 deletions

View File

@ -1,8 +1,13 @@
## v2.0.0 ## v2.0.0
### Notice
- 由于更改了服务安装逻辑Mac/Linux 首次安装需要输入 2 遍系统密码卸载和安装服务,以后可以丝滑使用 tun(虚拟网卡)模式
### Breaking changes ### Breaking changes
- 重大框架升级:使用 Tauri 2.0(巨量改进与性能提升) - 重大框架升级:使用 Tauri 2.0(巨量改进与性能提升)
- 强烈建议完全删除 1.x 老版本再安装此版本
- 敬请测试,出现 bug 到 issues 中提出 - 敬请测试,出现 bug 到 issues 中提出
### Features ### Features
@ -30,13 +35,10 @@
### Bugs Fixes ### Bugs Fixes
- 修复已有多个订阅导入新订阅会跳选订阅的问题 - 修复已有多个订阅导入新订阅会跳选订阅的问题
- 修复多个 Linux 下的 bug, Tun 模式在 Linux 下目前工作正常
- 修复 Linux wayland 下任务栏图标缺失的问题 - 修复 Linux wayland 下任务栏图标缺失的问题
- 移除多余退出变量和钩子 - 移除多余退出变量和钩子
### 已知问题
- 由于[Tauri 底层依赖库 bug](https://github.com/tauri-apps/tauri/issues/10546),在测试节点连通性时关闭窗口会导致程序崩溃;在底层 bug 未修复前,暂时屏蔽窗口关闭功能。
--- ---
## v1.7.7 ## v1.7.7

View File

@ -1,6 +1,6 @@
{ {
"name": "clash-verge", "name": "clash-verge",
"version": "2.0.0-rc.1", "version": "2.0.0-rc.2",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"scripts": { "scripts": {
"dev": "cross-env RUST_BACKTRACE=1 tauri dev", "dev": "cross-env RUST_BACKTRACE=1 tauri dev",

View File

@ -196,7 +196,7 @@ impl Tray {
"Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}", "Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}",
t!("SysProxy", "系统代理", use_zh), t!("SysProxy", "系统代理", use_zh),
switch_map[system_proxy], switch_map[system_proxy],
t!("TUN", "Tun(虚拟网卡)模式", use_zh), t!("TUN", "Tun模式", use_zh),
switch_map[tun_mode], switch_map[tun_mode],
t!("Profile", "当前订阅", use_zh), t!("Profile", "当前订阅", use_zh),
current_profile_name current_profile_name
@ -267,7 +267,7 @@ fn create_tray_menu(
let tun_mode = &CheckMenuItem::with_id( let tun_mode = &CheckMenuItem::with_id(
app_handle, app_handle,
"tun_mode", "tun_mode",
t!("TUN Mode", "Tun(虚拟网卡)模式", use_zh), t!("TUN Mode", "Tun模式", use_zh),
true, true,
tun_mode_enabled, tun_mode_enabled,
None::<&str>, None::<&str>,

View File

@ -25,7 +25,7 @@
"devUrl": "http://localhost:3000/" "devUrl": "http://localhost:3000/"
}, },
"productName": "Clash Verge", "productName": "Clash Verge",
"version": "2.0.0-rc.1", "version": "2.0.0-rc.2",
"identifier": "io.github.clash-verge-rev.clash-verge-rev", "identifier": "io.github.clash-verge-rev.clash-verge-rev",
"plugins": { "plugins": {
"updater": { "updater": {