diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 14:44:37 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 14:44:37 -0400 |
| commit | f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a (patch) | |
| tree | 215eb8bd51f97987ac08b01e97664cbf808c8904 | |
| parent | 8dcfea10e22d783a8adc6b1564e10bd32777a665 (diff) | |
| download | decky-lsfg-vk-f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a.tar.gz decky-lsfg-vk-f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a.zip | |
add consistent headders and bump ver, recipe for tmp storage purge
| -rw-r--r-- | justfile | 3 | ||||
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | src/components/Content.tsx | 26 |
3 files changed, 25 insertions, 6 deletions
@@ -17,4 +17,5 @@ cef: tail -f ~/.local/share/Steam/logs/cef_log.txt clean: - rm -rf node_modules dist
\ No newline at end of file + rm -rf node_modules dist + sudo rm -rf /tmp/decky
\ No newline at end of file diff --git a/package.json b/package.json index 6642119..dc45048 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-lsfg-vk", - "version": "0.11.5", + "version": "0.12.0", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", "scripts": { diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 24dcb5f..28eefa7 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -102,10 +102,28 @@ export function Content() { {/* FPS multiplier controls stay above profile selection when installed */} {isInstalled && ( - <FpsMultiplierControl - config={config} - onConfigChange={handleConfigChange} - /> + <> + <PanelSectionRow> + <div + style={{ + fontSize: "14px", + fontWeight: "bold", + marginTop: "8px", + marginBottom: "6px", + borderBottom: "1px solid rgba(255, 255, 255, 0.2)", + paddingBottom: "3px", + color: "white" + }} + > + FPS Multiplier + </div> + </PanelSectionRow> + + <FpsMultiplierControl + config={config} + onConfigChange={handleConfigChange} + /> + </> )} {/* Profile Management - only show if installed */} |
