From 59b2b7c9ab5f392008405178ba11dcd977e31927 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Thu, 24 Jul 2025 11:16:09 -0400 Subject: cleanup --- .gitignore | 24 ++++++++++++++++++++++++ src/components/ConfigurationSection.tsx | 18 +----------------- src/components/LaunchOptionInfo.tsx | 25 ------------------------- src/components/index.ts | 1 - 4 files changed, 25 insertions(+), 43 deletions(-) delete mode 100644 src/components/LaunchOptionInfo.tsx diff --git a/.gitignore b/.gitignore index 0297e2f..c74264d 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,27 @@ cli/decky py_modules/lsfg_vk/config_schema_generated.py py_modules/lsfg_vk/configuration_helpers_generated.py src/config/generatedConfigSchema.ts + +# Additional development artifacts +*.pyc +*.pyo +*.pyd +.pytest_cache/ +*.egg-info/ +.coverage +htmlcov/ +.tox/ +.eslintcache +.turbo/ + +# Temporary files +*.tmp +*.temp +*~ + +# IDE specific files (beyond what's already covered) +*.sublime-project +*.sublime-workspace +.vscode/settings.json +.vscode/.ropeproject + diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 045bd8c..3ad3dfc 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -63,7 +63,7 @@ export function ConfigurationSection({ onChange={(value) => onConfigChange(FLOW_SCALE, value)} /> - + 0 ? ` (${config.dxvk_frame_rate} FPS)` : ' (Off)'}`} @@ -103,22 +103,6 @@ export function ConfigurationSection({ /> - {/* -
- Experimental Features -
-
*/} - {/* Workarounds Section */}
- -
For each game where you want to use lsfg-vk:
-
- 1. Right-click the game in Steam → Properties
- 2. Add this to Launch Options: LSFG_PROCESS=decky-lsfg-vk %command%
- 3. Or use the "Copy Launch Option" button above -
-
- This temporary solution allows hot-reloading while keeping you on the latest lsfg-vk version. -
- - } - /> - - ); -} diff --git a/src/components/index.ts b/src/components/index.ts index 4c94958..305911d 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -6,6 +6,5 @@ export { FpsMultiplierControl } from "./FpsMultiplierControl"; export { UsageInstructions } from "./UsageInstructions"; export { WikiButton } from "./WikiButton"; export { SmartClipboardButton } from "./SmartClipboardButton"; -export { LaunchOptionInfo } from "./LaunchOptionInfo"; export { PluginUpdateChecker } from "./PluginUpdateChecker"; export { NerdStuffModal } from "./NerdStuffModal"; -- cgit v1.2.3