From d73ef3cc7d248d7eba8bc4979d604cf500f2d232 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 25 Aug 2025 16:18:56 -0400 Subject: initial rename work --- src/components/PluginUpdateChecker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/PluginUpdateChecker.tsx b/src/components/PluginUpdateChecker.tsx index d427c18..9fa2afb 100644 --- a/src/components/PluginUpdateChecker.tsx +++ b/src/components/PluginUpdateChecker.tsx @@ -152,7 +152,7 @@ export const PluginUpdateChecker: React.FC = () => { 1. Go to Decky Loader settings
2. Click "Developer" tab -
3. Click "Uninstall" next to "Lossless Scaling" +
3. Click "Uninstall" next to "decky-lsfg-vk"
4. Click "Install from ZIP"
5. Select the downloaded file
6. Restart Steam or reload plugins -- cgit v1.2.3 From 0abec8e032a4d1d924cc646bf46d02f8b1009ba9 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 25 Aug 2025 16:27:03 -0400 Subject: rm disable logic across hdr and wsi, was causing issues w custom profiles and upgrades --- src/components/ConfigurationSection.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'src/components') diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 0f1f02a..319168b 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -109,9 +109,8 @@ export function ConfigurationSection({ onConfigChange(HDR_MODE, value)} /> @@ -160,14 +159,7 @@ export function ConfigurationSection({ label="Enable WSI" description="Re-Enable Gamescope WSI Layer. Requires game restart to apply." checked={config.enable_wsi} - disabled={config.hdr_mode} - onChange={(value) => { - if (!value && config.hdr_mode) { - // Turn off HDR when disabling WSI - onConfigChange(HDR_MODE, false); - } - onConfigChange(ENABLE_WSI, value); - }} + onChange={(value) => onConfigChange(ENABLE_WSI, value)} /> -- cgit v1.2.3 From 026e58d6966aa8596c791455bffa54cd04c025ef Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 25 Aug 2025 16:36:43 -0400 Subject: fix hdr and wsi logic in FE correctly this time --- src/components/ConfigurationSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 319168b..094cb02 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -109,7 +109,7 @@ export function ConfigurationSection({ onConfigChange(HDR_MODE, value)} /> -- cgit v1.2.3