From d70e18ba8d41a4cb3426fc9da0a3b8f979eb5acf Mon Sep 17 00:00:00 2001 From: wonfen Date: Sun, 15 Sep 2024 00:33:54 +0800 Subject: [PATCH] chore: update change log and texts --- UPDATELOG.md | 10 ++++++++++ src-tauri/src/core/tray.rs | 6 +++--- src/locales/zh.json | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/UPDATELOG.md b/UPDATELOG.md index 3e227bd5..ff9fd682 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -8,6 +8,16 @@ ### Features - Meta(mihomo)内核升级 1.18.8 +- Mac 下可用 URL Scheme 导入订阅 +- 成功导入订阅的提示消息 +- 能自动选中新导入的订阅 +- 改进多处文本表述 + +### Performance + +- 优化内核启动逻辑 +- 优化 TUN 启动逻辑 +- 移除无用的 PID 创建逻辑 ### Bugs Fixes diff --git a/src-tauri/src/core/tray.rs b/src-tauri/src/core/tray.rs index dbd25115..f5e0ed7f 100644 --- a/src-tauri/src/core/tray.rs +++ b/src-tauri/src/core/tray.rs @@ -286,7 +286,7 @@ fn create_tray_menu( let open_app_dir = &MenuItem::with_id( app_handle, "open_app_dir", - t!("App Dir", "应用目录", use_zh), + t!("Conf Dir", "配置目录", use_zh), true, None::<&str>, ) @@ -321,7 +321,7 @@ fn create_tray_menu( let restart_clash = &MenuItem::with_id( app_handle, "restart_clash", - t!("Restart App", "重启 Clash", use_zh), + t!("Restart Clash Core", "重启Clash内核", use_zh), true, None::<&str>, ) @@ -330,7 +330,7 @@ fn create_tray_menu( let restart_app = &MenuItem::with_id( app_handle, "restart_app", - t!("Restart App", "重启应用", use_zh), + t!("Restart App", "重启Verge", use_zh), true, None::<&str>, ) diff --git a/src/locales/zh.json b/src/locales/zh.json index 09622dad..37083933 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -360,7 +360,7 @@ "Invalid Bypass Format": "无效的代理绕过格式", "Clash Port Modified": "Clash 端口已修改", "Port Conflict": "端口冲突", - "Restart Application to Apply Modifications": "重启应用程序以应用修改", + "Restart Application to Apply Modifications": "重启Verge以应用修改", "External Controller Address Modified": "外部控制器监听地址已修改", "Permissions Granted Successfully for _clash Core": "{{core}} 内核授权成功", "Core Version Updated": "内核版本已更新",