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 +- src/index.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') 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 diff --git a/src/index.tsx b/src/index.tsx index 785ecf5..070e853 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,13 +4,13 @@ import { GiPlasticDuck } from "react-icons/gi"; import { Content } from "./components"; export default definePlugin(() => { - console.log("Lossless Scaling plugin initializing"); + console.log("decky-lsfg-vk plugin initializing"); return { // The name shown in various decky menus - name: "Lossless Scaling", + name: "decky-lsfg-vk", // The element displayed at the top of your plugin's menu - titleView:
Lossless Scaling
, + titleView:
decky-lsfg-vk
, // Always render to retain state when panel is toggled alwaysRender: true, // The content of your plugin's menu @@ -19,7 +19,7 @@ export default definePlugin(() => { icon: , // The function triggered when your plugin unloads onDismount() { - console.log("Lossless Scaling unloading"); + console.log("decky-lsfg-vk unloading"); } }; }); -- 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') 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') 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