Compare commits

..

3 Commits

7 changed files with 17 additions and 8 deletions

View File

@@ -1,3 +1,12 @@
## v1.7.7
### Bugs Fixes
- 修复导入订阅没有自动重载(不显示节点)的问题
- 英语状态下修复 Windows 工具栏提示文本超过限制的问题
---
## v1.7.6
### Notice

View File

@@ -1,6 +1,6 @@
{
"name": "clash-verge",
"version": "1.7.6",
"version": "1.7.7",
"license": "GPL-3.0-only",
"scripts": {
"dev": "tauri dev",

2
src-tauri/Cargo.lock generated
View File

@@ -790,7 +790,7 @@ dependencies = [
[[package]]
name = "clash-verge"
version = "1.7.6"
version = "1.7.7"
dependencies = [
"anyhow",
"auto-launch",

View File

@@ -1,6 +1,6 @@
[package]
name = "clash-verge"
version = "1.7.6"
version = "1.7.7"
description = "clash verge"
authors = ["zzzgydi", "wonfen", "MystiPanda"]
license = "GPL-3.0-only"

View File

@@ -297,11 +297,11 @@ impl Tray {
};
let _ = tray.set_tooltip(&format!(
"Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}",
t!("System Proxy", "系统代理"),
t!("SysProxy", "系统代理"),
switch_map[system_proxy],
t!("TUN Mode", "Tun 模式"),
t!("TUN", "Tun模式"),
switch_map[tun_mode],
t!("Curent Profile", "当前订阅"),
t!("Profile", "当前订阅"),
current_profile_name
));

View File

@@ -2,7 +2,7 @@
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"package": {
"productName": "Clash Verge",
"version": "1.7.6"
"version": "1.7.7"
},
"build": {
"distDir": "../dist",

View File

@@ -137,7 +137,7 @@ const ProfilePage = () => {
mutate("getProfiles", newProfiles);
const remoteItem = newProfiles.items?.find((e) => e.type === "remote");
if (!newProfiles.current && remoteItem) {
if (newProfiles.current && remoteItem) {
const current = remoteItem.uid;
await patchProfiles({ current });
mutateLogs();