diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-26 10:48:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-26 10:48:39 -0400 |
| commit | b4fbaf233f6e190001cb40f4f0cc87cc5365e622 (patch) | |
| tree | d240de1320d880e9955a589e93728ec29043d462 | |
| parent | c6ae060757a2f19f60681639b4f73a6bd075f5d7 (diff) | |
| parent | 7950c2c227c387b0063c52db575eb493ad992e30 (diff) | |
| download | decky-lsfg-vk-b4fbaf233f6e190001cb40f4f0cc87cc5365e622.tar.gz decky-lsfg-vk-b4fbaf233f6e190001cb40f4f0cc87cc5365e622.zip | |
Merge pull request #94 from xXJSONDeruloXx/default-wsiv0.7.3
feat: Default wsi disable toggle on and bump to top of workarounds drawer
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | py_modules/lsfg_vk/config_schema_generated.py | 2 | ||||
| -rw-r--r-- | shared_config.py | 2 | ||||
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 18 | ||||
| -rw-r--r-- | src/config/generatedConfigSchema.ts | 4 |
5 files changed, 14 insertions, 14 deletions
diff --git a/package.json b/package.json index cf66a03..a798f8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-lossless-scaling-vk", - "version": "0.7.2", + "version": "0.7.3", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", "scripts": { diff --git a/py_modules/lsfg_vk/config_schema_generated.py b/py_modules/lsfg_vk/config_schema_generated.py index 8aa45a1..783e22f 100644 --- a/py_modules/lsfg_vk/config_schema_generated.py +++ b/py_modules/lsfg_vk/config_schema_generated.py @@ -119,7 +119,7 @@ def get_function_parameters() -> str: mangohud_workaround: bool = False, disable_vkbasalt: bool = False, force_enable_vkbasalt: bool = False, - deactivate_wsi: bool = False""" + deactivate_wsi: bool = True""" def create_config_dict(**kwargs) -> ConfigurationData: diff --git a/shared_config.py b/shared_config.py index 3f27491..4a32776 100644 --- a/shared_config.py +++ b/shared_config.py @@ -119,7 +119,7 @@ CONFIG_SCHEMA_DEF = { "deactivate_wsi": { "name": "deactivate_wsi", "fieldType": ConfigFieldType.BOOLEAN, - "default": False, + "default": True, "description": "Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth", "location": "script" } diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 57c75ad..c1fcf25 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -161,6 +161,15 @@ export function ConfigurationSection({ {!workaroundsCollapsed && ( <> + <PanelSectionRow> + <ToggleField + label="Deactivate WSI" + description="Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth" + checked={config.deactivate_wsi} + onChange={(value) => onConfigChange(DEACTIVATE_WSI, value)} + /> + </PanelSectionRow> + <PanelSectionRow> <ToggleField label="Enable WOW64 for 32-bit games" @@ -219,15 +228,6 @@ export function ConfigurationSection({ }} /> </PanelSectionRow> - - <PanelSectionRow> - <ToggleField - label="Deactivate WSI" - description="Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth" - checked={config.deactivate_wsi} - onChange={(value) => onConfigChange(DEACTIVATE_WSI, value)} - /> - </PanelSectionRow> </> )} </> diff --git a/src/config/generatedConfigSchema.ts b/src/config/generatedConfigSchema.ts index 1ce08f4..dfd80db 100644 --- a/src/config/generatedConfigSchema.ts +++ b/src/config/generatedConfigSchema.ts @@ -107,7 +107,7 @@ export const CONFIG_SCHEMA: Record<string, ConfigField> = { deactivate_wsi: { name: "deactivate_wsi", fieldType: ConfigFieldType.BOOLEAN, - default: false, + default: true, description: "Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth" }, }; @@ -148,7 +148,7 @@ export function getDefaults(): ConfigurationData { mangohud_workaround: false, disable_vkbasalt: false, force_enable_vkbasalt: false, - deactivate_wsi: false, + deactivate_wsi: true, }; } |
