feat: host manager bug fixes, i18n improvements, general tab fixes

This commit is contained in:
LukeGus
2026-05-20 13:13:56 -05:00
parent a966cc930b
commit d3fa8c4420
18 changed files with 998 additions and 2739 deletions
+3 -1
View File
@@ -12,6 +12,7 @@ export type Host = {
tags?: string[];
authType: "password" | "key" | "credential" | "none" | "opkssh";
credentialId?: string;
overrideCredentialUsername?: boolean;
password?: string;
key?: string;
keyPassword?: string;
@@ -45,6 +46,7 @@ export type Host = {
keepaliveInterval?: number;
keepaliveCountMax?: number;
environmentVariables: { key: string; value: string }[];
startupSnippetId?: number | null;
};
useSocks5?: boolean;
@@ -55,7 +57,7 @@ export type Host = {
socks5ProxyChain?: {
host: string;
port: number;
type: 4 | 5 | "http";
type: 4 | 5 | "http" | string;
username?: string;
password?: string;
}[];