From c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 12:50:03 -0400 Subject: chore: remove unused elements previously commented out, for store release prep --- src/components/Content.tsx | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index fdb8672..08027d3 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -8,12 +8,8 @@ import { InstallationButton } from "./InstallationButton"; import { ConfigurationSection } from "./ConfigurationSection"; import { ProfileManagement } from "./ProfileManagement"; import { UsageInstructions } from "./UsageInstructions"; -// import { WikiButton } from "./WikiButton"; -// import { ClipboardButton } from "./ClipboardButton"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { FgmodClipboardButton } from "./FgmodClipboardButton"; -// import { ClipboardDisplay } from "./ClipboardDisplay"; -// import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; import FlatpaksModal from "./FlatpaksModal"; import { ConfigurationData } from "../config/configSchema"; @@ -106,7 +102,6 @@ export function Content() { {/* Clipboard buttons - only show if installed */} {isInstalled && ( <> - {/* */} @@ -131,15 +126,8 @@ export function Content() { /> )} - {/* Usage instructions - always visible for user guidance */} - - - {/* Wiki and clipboard buttons - always available for documentation */} - {/* */} - {/* */} - - {/* Plugin Update Checker */} - {/* */} + {/* Usage instructions - always visible for user guidance */} + {/* Show installation components at bottom when fully installed */} {isInstalled && ( -- cgit v1.2.3 From 194eb12b3efc65ee48449bade8df9872a99b1215 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 13:05:47 -0400 Subject: chore: make barrel imports and refs consistent --- src/components/Content.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 08027d3..8fb3fe3 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -11,7 +11,7 @@ import { UsageInstructions } from "./UsageInstructions"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { FgmodClipboardButton } from "./FgmodClipboardButton"; import { NerdStuffModal } from "./NerdStuffModal"; -import FlatpaksModal from "./FlatpaksModal"; +import { FlatpaksModal } from "./FlatpaksModal"; import { ConfigurationData } from "../config/configSchema"; export function Content() { @@ -165,7 +165,7 @@ export function Content() { layout="below" onClick={handleShowFlatpaks} > - Flatpaks + Flatpak Setup -- cgit v1.2.3 From c07cf0dde2f26ec3ac672efe06da7cd991ed208b Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 13:40:18 -0400 Subject: chore: move uninstall and statuses locations in ui --- src/components/Content.tsx | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 8fb3fe3..71329ad 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -126,28 +126,8 @@ export function Content() { /> )} - {/* Usage instructions - always visible for user guidance */} - - - {/* Show installation components at bottom when fully installed */} - {isInstalled && ( - <> - - - - - )} + {/* Usage instructions - always visible for user guidance */} + {/* Nerd Stuff Button */} @@ -168,6 +148,26 @@ export function Content() { Flatpak Setup + + {/* Status and uninstall sit at bottom when installed to match desired layout */} + {isInstalled && ( + <> + + + + + )} ); } -- cgit v1.2.3 From f2a2f4a126c5b60a2f8115c850883ccb8d736825 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 14:20:32 -0400 Subject: chore: move fps mul to top --- src/components/Content.tsx | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 71329ad..24dcb5f 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -10,6 +10,7 @@ import { ProfileManagement } from "./ProfileManagement"; import { UsageInstructions } from "./UsageInstructions"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { FgmodClipboardButton } from "./FgmodClipboardButton"; +import { FpsMultiplierControl } from "./FpsMultiplierControl"; import { NerdStuffModal } from "./NerdStuffModal"; import { FlatpaksModal } from "./FlatpaksModal"; import { ConfigurationData } from "../config/configSchema"; @@ -98,13 +99,13 @@ export function Content() { /> )} - - {/* Clipboard buttons - only show if installed */} + + {/* FPS multiplier controls stay above profile selection when installed */} {isInstalled && ( - <> - - - + )} {/* Profile Management - only show if installed */} @@ -126,6 +127,14 @@ export function Content() { /> )} + {/* Clipboard buttons sit beside usage info for quick access */} + {isInstalled && ( + <> + + + + )} + {/* Usage instructions - always visible for user guidance */} -- cgit v1.2.3 From f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 14:44:37 -0400 Subject: add consistent headders and bump ver, recipe for tmp storage purge --- src/components/Content.tsx | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'src/components/Content.tsx') 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 && ( - + <> + +
+ FPS Multiplier +
+
+ + + )} {/* Profile Management - only show if installed */} -- cgit v1.2.3