Skip to content

Commit bc1ca40

Browse files
committed
fix: Disable German and Hungarian languages because Windows ISO-s with these languages have networking issues
Should also help with #21
1 parent a3164c9 commit bc1ca40

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "winboat",
3-
"version": "0.6.12",
3+
"version": "0.6.13",
44
"description": "Windows for Penguins",
55
"main": "main/main.js",
66
"scripts": {

src/renderer/views/SetupUI.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,14 @@
164164
:key="language"
165165
:value="language"
166166
:toggled="windowsLanguage === language"
167+
:disabled="['German', 'Hungarian'].includes(language)"
167168
>
168-
<x-label>{{ languageWithBanner }}</x-label>
169+
<x-label>
170+
{{ languageWithBanner }}
171+
<span v-if="['German', 'Hungarian'].includes(language)" class="text-red-400">
172+
(Broken, use Language Pack)
173+
</span>
174+
</x-label>
169175
</x-menuitem>
170176
</x-menu>
171177
</x-select>

0 commit comments

Comments
 (0)