summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-17 00:28:42 -0400
committerGitHub <noreply@github.com>2025-07-17 00:28:42 -0400
commit74ac6e7b7a18c2ae969b08242a5919f903d294e2 (patch)
treee6d48b345c4933ea21a83ef6e2dc315ba9a990f3 /src/index.tsx
parente905b94fe5b40b438f2ce63caad90760fea7fc9a (diff)
downloadDecky-Framegen-74ac6e7b7a18c2ae969b08242a5919f903d294e2.tar.gz
Decky-Framegen-74ac6e7b7a18c2ae969b08242a5919f903d294e2.zip
v0.10.0 initial implementation of proper optiscaler nightly statically linked (#113)
* initial implementation of proper optiscaler nightly statically linked * default ini to nukems on mod dir install * description tweaks
Diffstat (limited to 'src/index.tsx')
-rwxr-xr-xsrc/index.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/index.tsx b/src/index.tsx
index eeb95ea..64dabdb 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -111,21 +111,21 @@ function FGModInstallerSection() {
{pathExists !== null ? (
<PanelSectionRow>
<div style={{ color: pathExists ? "green" : "red" }}>
- {pathExists ? "Mod Is Installed" : "Mod Not Installed"}
+ {pathExists ? "OptiScaler Mod Is Installed" : "OptiScaler Mod Not Installed"}
</div>
</PanelSectionRow>
) : null}
{pathExists === false ? (
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleInstallClick} disabled={installing}>
- {installing ? "Installing..." : "Install FG Mod"}
+ {installing ? "Installing..." : "Install OptiScaler FG Mod"}
</ButtonItem>
</PanelSectionRow>
) : null}
{pathExists === true ? (
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleUninstallClick} disabled={uninstalling}>
- {uninstalling ? "Uninstalling..." : "Uninstall FG Mod"}
+ {uninstalling ? "Uninstalling..." : "Uninstall OptiScaler FG Mod"}
</ButtonItem>
</PanelSectionRow>
) : null}
@@ -171,7 +171,7 @@ function FGModInstallerSection() {
) : null}
<PanelSectionRow>
<div>
- Install the mod above, then select and patch a game below to enable DLSS in the game's menu.
+ Install the OptiScaler-based mod above, then select and patch a game below to enable DLSS replacement with FSR Frame Generation. Map a button to "insert" key to bring up the OptiScaler menu in-game.
</div>
</PanelSectionRow>
</PanelSection>
@@ -222,7 +222,7 @@ function InstalledGamesSection() {
onOK={async () => {
try {
await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod %COMMAND%');
- setResult(`Launch options set for ${selectedGame.name}. You can now select DLSS in the game's menu.`);
+ setResult(`Launch options set for ${selectedGame.name}. You can now select DLSS in the game's menu, and access OptiScaler with Insert key.`);
} catch (error) {
logError('handlePatchClick: ' + String(error));
setResult(error instanceof Error ? `Error setting launch options: ${error.message}` : 'Error setting launch options');
@@ -237,7 +237,7 @@ function InstalledGamesSection() {
try {
await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod-uninstaller.sh %COMMAND%');
- setResult(`DLSS mods will uninstall on next launch of ${selectedGame.name}.`);
+ setResult(`OptiScaler will uninstall on next launch of ${selectedGame.name}.`);
} catch (error) {
logError('handleUnpatchClick: ' + String(error));
setResult(error instanceof Error ? `Error clearing launch options: ${error.message}` : 'Error clearing launch options');