fix: add versionAdded to proxy settings for tracking consistency

This commit is contained in:
snomiao
2026-03-28 18:52:41 +09:00
parent 74762c528f
commit 50951b45c8

View File

@@ -1316,7 +1316,8 @@ export const CORE_SETTINGS: SettingParams[] = [
tooltip:
'Proxy URL for all outbound HTTP/HTTPS traffic (e.g. http://127.0.0.1:7890). Applies to model downloads, API calls, git operations, and custom nodes. Requires restart.',
type: 'text',
defaultValue: ''
defaultValue: '',
versionAdded: '1.44.0'
},
{
id: 'Comfy.Network.Proxy.HttpsUrl',
@@ -1325,7 +1326,8 @@ export const CORE_SETTINGS: SettingParams[] = [
tooltip:
'Separate proxy URL for HTTPS traffic only. If empty, the HTTP proxy URL above is used for both HTTP and HTTPS. Requires restart.',
type: 'text',
defaultValue: ''
defaultValue: '',
versionAdded: '1.44.0'
},
{
id: 'Comfy.Network.Proxy.NoProxy',
@@ -1334,6 +1336,7 @@ export const CORE_SETTINGS: SettingParams[] = [
tooltip:
'Comma-separated list of hosts that should bypass the proxy (e.g. localhost,127.0.0.1,*.local). Requires restart.',
type: 'text',
defaultValue: ''
defaultValue: '',
versionAdded: '1.44.0'
}
]