From 74ac6e7b7a18c2ae969b08242a5919f903d294e2 Mon Sep 17 00:00:00 2001 From: Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:28:42 -0400 Subject: 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 --- src/index.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/index.tsx') 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 ? (
- {pathExists ? "Mod Is Installed" : "Mod Not Installed"} + {pathExists ? "OptiScaler Mod Is Installed" : "OptiScaler Mod Not Installed"}
) : null} {pathExists === false ? ( - {installing ? "Installing..." : "Install FG Mod"} + {installing ? "Installing..." : "Install OptiScaler FG Mod"} ) : null} {pathExists === true ? ( - {uninstalling ? "Uninstalling..." : "Uninstall FG Mod"} + {uninstalling ? "Uninstalling..." : "Uninstall OptiScaler FG Mod"} ) : null} @@ -171,7 +171,7 @@ function FGModInstallerSection() { ) : null}
- 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.
@@ -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'); -- cgit v1.2.3