summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-23 18:54:00 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-23 18:54:00 -0500
commit4de16c13dc3e73766d63d931b19e7b8c60ef4a1f (patch)
treebac61da2d491a44553eebf971a8c679d96d2407f
parent387950800b2766a5bdd08982e107e0c791739fe3 (diff)
downloadDecky-Framegen-4de16c13dc3e73766d63d931b19e7b8c60ef4a1f.tar.gz
Decky-Framegen-4de16c13dc3e73766d63d931b19e7b8c60ef4a1f.zip
revise wording and clean up dupe headers
-rwxr-xr-xsrc/index.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 2e1b383..0d1aacc 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -150,7 +150,7 @@ function FGModInstallerSection() {
)}
<PanelSectionRow>
<div>
- Once the patch is installed, launch your game, press "Set Launch Options" below, then restart the game!
+ Once the mod is installed, launch your game, press "Set Launch Options" below, then restart the game!
</div>
</PanelSectionRow>
</PanelSection>
@@ -177,18 +177,18 @@ function MainRunningApp() {
};
return (
- <PanelSection title="Main Running App">
+ <PanelSection title="Game Patcher">
<PanelSectionRow>
<div>
{mainRunningApp ? (
<>
- <span>Running App: {mainRunningApp.appid}</span>
+ <span>Patch: {mainRunningApp.display_name}</span>
<ButtonItem layout="below" onClick={handleSetLaunchOptions}>
- Set Launch Options
+ Patch: {mainRunningApp.display_name}
</ButtonItem>
</>
) : (
- <span>No app is currently running.</span>
+ <span>No game is currently open.</span>
)}
</div>
</PanelSectionRow>
@@ -203,7 +203,7 @@ function MainRunningApp() {
export default definePlugin(() => ({
name: "Framegen Plugin",
- titleView: <div>Framegen Plugin</div>,
+ titleView: <div>Decky Framegen</div>,
content: (
<>
<FGModInstallerSection />