diff --git a/WebUI/src/assets/i18n/en-US.json b/WebUI/src/assets/i18n/en-US.json index 5bf2cc99..592264a8 100644 --- a/WebUI/src/assets/i18n/en-US.json +++ b/WebUI/src/assets/i18n/en-US.json @@ -34,6 +34,7 @@ "COM_REQUESTING":"Requesting", "COM_DEFAULT":"Default", "COM_STOP":"Stop", + "COM_DEBUG": "Open Developer Logs", "COM_OPEN_LOCATION":"Open Location", "COM_OPEN_PARAMS": "Parameters Info", "COM_LOW": "low", @@ -84,6 +85,9 @@ "SETTINGS_BASIC_LANGUAGE": "Language", "SETTINGS_BASIC_PATHS": "Paths", "SETTINGS_BASIC_LLM_CHECKPOINTS": "LLM Model Path", + "SETTINGS_BASIC_GENERAL": "General Settings", + "SETTINGS_BASIC_DEVICES": "Devices", + "SETTINGS_BASIC_BACKEND": "Backends", "SETTINGS_MODEL_HUGGINGFACE": "Hugging Face", "SETTINGS_MODEL_HUGGINGFACE_API_TOKEN": "API Token", "SETTINGS_MODEL_HUGGINGFACE_INVALID_TOKEN_TEXT": "Please enter a valid token (hf_***).", @@ -97,7 +101,6 @@ "SETTINGS_MODEL_SD_STANDARD_INPAINT_MODEL": "Standard Default Inpaint/OutPaint Model", "SETTINGS_MODEL_SD_HD_MODEL": "HD Default Model", "SETTINGS_MODEL_RAG_MODEL": "Rag Query Model", - "SETTINGS_MODEL_BACKEND": "Inference Backends", "SETTINGS_BACKEND_STATUS": "Backend Status", "SETTINGS_MODEL_MANAGE_BACKEND": "Manage Backend Components", "SETTINGS_MODEL_EXIST": "The model already exist. Repeating the download is unnecessary.", diff --git a/WebUI/src/components/InstallationManagement.vue b/WebUI/src/components/InstallationManagement.vue index 20a44d53..c7c91147 100644 --- a/WebUI/src/components/InstallationManagement.vue +++ b/WebUI/src/components/InstallationManagement.vue @@ -114,6 +114,7 @@ + @@ -228,6 +229,10 @@ function getInfoURL(serviceName: string) { } } +function openDebug() { + window.electronAPI.openDevTools() +} + function CanCloseInstallations() { return components.value.every((i) => i.status === 'running' || !i.isRequired) } diff --git a/WebUI/src/components/SettingsBasic.vue b/WebUI/src/components/SettingsBasic.vue index a858eece..a0bff630 100644 --- a/WebUI/src/components/SettingsBasic.vue +++ b/WebUI/src/components/SettingsBasic.vue @@ -1,5 +1,6 @@