Skip to content

Commit 7a483b4

Browse files
committed
v1.4.1
1 parent e11d42a commit 7a483b4

35 files changed

+1490
-110
lines changed

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/app/panel/ModDetailsAdvanced.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ function ModDetailsAdvanced({ modId }: Props) {
131131
},
132132
});
133133
}}
134+
dropdownMatchSelectWidth={false}
134135
>
135136
<Select.Option key="none" value={0}>
136137
{t('modDetails.advanced.debugLogging.none')}

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/app/panel/Settings.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ function Settings() {
212212
},
213213
});
214214
}}
215+
dropdownMatchSelectWidth={false}
215216
>
216217
{appLanguages.map(([languageId, languageDisplayName]) => (
217218
<Select.Option key={languageId} value={languageId}>
@@ -395,6 +396,7 @@ function Settings() {
395396
onChange={(value) => {
396397
setAppLoggingVerbosity(typeof value === 'number' ? value : 0);
397398
}}
399+
dropdownMatchSelectWidth={false}
398400
>
399401
<Select.Option key="none" value={0}>
400402
{t('settings.loggingVerbosity.none')}
@@ -419,6 +421,7 @@ function Settings() {
419421
typeof value === 'number' ? value : 0
420422
);
421423
}}
424+
dropdownMatchSelectWidth={false}
422425
>
423426
<Select.Option key="none" value={0}>
424427
{t('settings.loggingVerbosity.none')}
@@ -526,6 +529,7 @@ function Settings() {
526529
typeof value === 'number' ? value : 0
527530
);
528531
}}
532+
dropdownMatchSelectWidth={false}
529533
>
530534
<Select.Option key="never" value={0}>
531535
{t('settings.loadModsInCriticalSystemProcesses.never')}

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/de/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
205205
"never": "Never",
206206
"onlyExplicitMatch": "Only if targeted explicitly",
207-
"always": "If targeted"
207+
"always": "If targeted explicitly or implicitly (not recommended)"
208208
}
209209
},
210210
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/en/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
213213
"never": "Never",
214214
"onlyExplicitMatch": "Only if targeted explicitly",
215-
"always": "If targeted"
215+
"always": "If targeted explicitly or implicitly (not recommended)"
216216
}
217217
},
218218
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/es/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
213213
"never": "Never",
214214
"onlyExplicitMatch": "Only if targeted explicitly",
215-
"always": "If targeted"
215+
"always": "If targeted explicitly or implicitly (not recommended)"
216216
}
217217
},
218218
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/fr/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
205205
"never": "Never",
206206
"onlyExplicitMatch": "Only if targeted explicitly",
207-
"always": "If targeted"
207+
"always": "If targeted explicitly or implicitly (not recommended)"
208208
}
209209
},
210210
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/it/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
205205
"never": "Never",
206206
"onlyExplicitMatch": "Only if targeted explicitly",
207-
"always": "If targeted"
207+
"always": "If targeted explicitly or implicitly (not recommended)"
208208
}
209209
},
210210
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/ja/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
213213
"never": "Never",
214214
"onlyExplicitMatch": "Only if targeted explicitly",
215-
"always": "If targeted"
215+
"always": "If targeted explicitly or implicitly (not recommended)"
216216
}
217217
},
218218
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/ko/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
213213
"never": "Never",
214214
"onlyExplicitMatch": "Only if targeted explicitly",
215-
"always": "If targeted"
215+
"always": "If targeted explicitly or implicitly (not recommended)"
216216
}
217217
},
218218
"about": {

src/vscode-windhawk-ui/apps/vscode-windhawk-ui/src/locales/pl/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"description": "By default, Windhawk only loads mods in critical system processes if the process is targeted explicitly, i.e. is listed without wildcards in the mod's process inclusion list.",
213213
"never": "Never",
214214
"onlyExplicitMatch": "Only if targeted explicitly",
215-
"always": "If targeted"
215+
"always": "If targeted explicitly or implicitly (not recommended)"
216216
}
217217
},
218218
"about": {

0 commit comments

Comments
 (0)