diff options
| -rw-r--r-- | package.json | 3 | ||||
| -rw-r--r-- | src/components/InstalledGamesSection.tsx | 1 | ||||
| -rw-r--r-- | src/components/OptiScalerControls.tsx | 2 | ||||
| -rw-r--r-- | src/components/SteamGamePatcher.tsx | 1 |
4 files changed, 5 insertions, 2 deletions
diff --git a/package.json b/package.json index e07bcb9..c2e1880 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-framegen", - "version": "0.15.5", + "version": "0.15.6", "description": "This plugin installs and manages OptiScaler, a tool that enhances upscaling and enables frame generation in a range of DirectX 12 games.", "type": "module", "scripts": { @@ -71,4 +71,3 @@ ] } - diff --git a/src/components/InstalledGamesSection.tsx b/src/components/InstalledGamesSection.tsx index e0e2677..eb85915 100644 --- a/src/components/InstalledGamesSection.tsx +++ b/src/components/InstalledGamesSection.tsx @@ -75,6 +75,7 @@ export function InstalledGamesSection() { <PanelSection title="Select a Game to Patch:"> <PanelSectionRow> <DropdownItem + layout="below" rgOptions={games.map(game => ({ data: game.appid, label: game.name diff --git a/src/components/OptiScalerControls.tsx b/src/components/OptiScalerControls.tsx index 2167fcd..a8b0863 100644 --- a/src/components/OptiScalerControls.tsx +++ b/src/components/OptiScalerControls.tsx @@ -126,6 +126,7 @@ export function OptiScalerControls({ pathExists, setPathExists, fgmodInfo }: Opt <PanelSectionRow> <DropdownItem + layout="below" label="Default FSR4 runtime" description={FSR4_VARIANT_OPTIONS.find((option) => option.value === fsr4Variant)?.hint} menuLabel="Default FSR4 runtime" @@ -149,6 +150,7 @@ export function OptiScalerControls({ pathExists, setPathExists, fgmodInfo }: Opt {pathExists === true && ( <PanelSectionRow> <DropdownItem + layout="below" label="Proxy DLL name" description={PROXY_DLL_OPTIONS.find((o) => o.value === dllName)?.hint} menuLabel="Proxy DLL name" diff --git a/src/components/SteamGamePatcher.tsx b/src/components/SteamGamePatcher.tsx index 2d3b0fa..18df819 100644 --- a/src/components/SteamGamePatcher.tsx +++ b/src/components/SteamGamePatcher.tsx @@ -230,6 +230,7 @@ export function SteamGamePatcher({ dllName, fsr4Variant }: SteamGamePatcherProps <> <PanelSectionRow> <DropdownItem + layout="below" label="Steam game" menuLabel="Select a Steam game" strDefaultLabel={gamesLoading ? "Loading games..." : "Choose a game"} |
