From 2c044e32b0d9f7c9ff8eb581fee96f60bac42b54 Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Tue, 18 Nov 2025 12:30:27 +0800 Subject: [PATCH] perf: add more connection options --- i18n/locales/en.json | 7 ++ i18n/locales/zh.json | 7 ++ ui/components/BasePage/basePage.vue | 24 +++++- ui/composables/useAssetAction.ts | 36 +++++++-- ui/composables/useSettingManager.ts | 54 ++++++++++++- ui/composables/useSettingStorage.ts | 18 ++++- ui/pages/setting/general.vue | 116 +++++++++++++++++++++++++++- ui/types/index.ts | 13 +++- 8 files changed, 259 insertions(+), 16 deletions(-) diff --git a/i18n/locales/en.json b/i18n/locales/en.json index 5c0157d67..6888159d6 100644 --- a/i18n/locales/en.json +++ b/i18n/locales/en.json @@ -138,6 +138,13 @@ "FileTransfer": "File Transfer", "RemoteDesktop": "Remote Desktop", "Database": "Database", + "Charset": "Charset", + "TerminalBackspace": "Terminal Backspace As Ctrl + H", + "Resolution": "Resolution", + "Default": "Default", + "Auto": "Auto", + "Enable": "Enable", + "Disable": "Disable", "DownloadApplication": "Download Application" }, "ConnectError": { diff --git a/i18n/locales/zh.json b/i18n/locales/zh.json index ac5f4165a..84922c2f0 100644 --- a/i18n/locales/zh.json +++ b/i18n/locales/zh.json @@ -142,6 +142,13 @@ "FileTransfer": "文件传输", "RemoteDesktop": "远程桌面", "Database": "数据库", + "Charset": "字符集", + "TerminalBackspace": "字符终端 Backspace As Ctrl + H", + "Resolution": "分辨率", + "Default": "默认", + "Auto": "自动", + "Enable": "启用", + "Disable": "禁用", "DownloadApplication": "下载应用" }, "ConnectError": { diff --git a/ui/components/BasePage/basePage.vue b/ui/components/BasePage/basePage.vue index 89c7fc8c2..5e5ac5279 100644 --- a/ui/components/BasePage/basePage.vue +++ b/ui/components/BasePage/basePage.vue @@ -1,6 +1,6 @@