diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2314f5af..f6e062b8 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,4 +1,5 @@ { + "$schema": "../node_modules/@tauri-apps/cli/schema.json", "package": { "productName": "Clash Verge", "version": "1.5.11" diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json index d5d75455..40933e7d 100644 --- a/src-tauri/tauri.linux.conf.json +++ b/src-tauri/tauri.linux.conf.json @@ -1,9 +1,11 @@ { + "$schema": "../node_modules/@tauri-apps/cli/schema.json", "tauri": { "systemTray": { "iconPath": "icons/tray-icon.png" }, "bundle": { + "identifier": "io.github.clash-verge-rev.clash-verge-rev", "targets": ["deb", "appimage", "updater"], "deb": { "depends": ["openssl"], diff --git a/src-tauri/tauri.macos.conf.json b/src-tauri/tauri.macos.conf.json index 81dda7d5..4654e581 100644 --- a/src-tauri/tauri.macos.conf.json +++ b/src-tauri/tauri.macos.conf.json @@ -1,10 +1,12 @@ { + "$schema": "../node_modules/@tauri-apps/cli/schema.json", "tauri": { "systemTray": { "iconPath": "icons/mac-tray-icon.png", "iconAsTemplate": true }, "bundle": { + "identifier": "io.github.clash-verge-rev.clash-verge-rev", "targets": ["app", "dmg", "updater"], "macOS": { "frameworks": [], diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index bd2ac51c..bde28281 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -1,9 +1,11 @@ { + "$schema": "../node_modules/@tauri-apps/cli/schema.json", "tauri": { "systemTray": { "iconPath": "icons/tray-icon.png" }, "bundle": { + "identifier": "io.github.clash-verge-rev.clash-verge-rev", "targets": ["nsis", "updater"], "windows": { "certificateThumbprint": null, diff --git a/src/components/proxy/proxy-groups.tsx b/src/components/proxy/proxy-groups.tsx index ab747515..9d01d74b 100644 --- a/src/components/proxy/proxy-groups.tsx +++ b/src/components/proxy/proxy-groups.tsx @@ -8,7 +8,6 @@ import { deleteConnection, getGroupProxyDelays, } from "@/services/api"; -import { Box } from "@mui/material"; import { useProfiles } from "@/hooks/use-profiles"; import { useVerge } from "@/hooks/use-verge"; import { BaseEmpty } from "../base"; diff --git a/src/components/proxy/proxy-item-mini.tsx b/src/components/proxy/proxy-item-mini.tsx index ae232940..d605c8df 100644 --- a/src/components/proxy/proxy-item-mini.tsx +++ b/src/components/proxy/proxy-item-mini.tsx @@ -86,7 +86,10 @@ export const ProxyItemMini = (props: Props) => { }, ]} > - + { }} > { const { clientX, clientY } = event; setPosition({ top: clientY, left: clientX }); diff --git a/src/locales/en.json b/src/locales/en.json index 52342984..c5e66fe5 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -18,6 +18,8 @@ "direct": "direct", "script": "script", + "Create Test": "Create Test", + "Edit Test": "Edit Test", "Edit": "Edit", "Icon": "Icon", "Test URL": "Test URL", diff --git a/src/locales/ru.json b/src/locales/ru.json index 9d57d074..07ac938e 100644 --- a/src/locales/ru.json +++ b/src/locales/ru.json @@ -18,6 +18,8 @@ "direct": "прямой", "script": "скриптовый", + "Create Test": "Создать тест", + "Edit Test": "Редактировать тест", "Edit": "Редактировать", "Icon": "Икона", "Test URL": "Тестовый URL", diff --git a/src/locales/zh.json b/src/locales/zh.json index d23ccb6a..ba6f6739 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -18,6 +18,8 @@ "direct": "直连", "script": "脚本", + "Create Test": "新建测试", + "Edit Test": "编辑测试", "Edit": "编辑", "Icon": "图标", "Test URL": "测试地址",