From 0668428a5ebc221d39b907f251dc0dc43e30a2df Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 21 Jul 2025 12:28:36 -0400 Subject: testing alt keyboard copy methods --- src/components/Content.tsx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 9ce4c35..f6f24dc 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -8,6 +8,8 @@ import { ConfigurationSection } from "./ConfigurationSection"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; import { ClipboardButton } from "./ClipboardButton"; +import { SmartClipboardButton } from "./SmartClipboardButton"; +import { ClipboardExperiments } from "./ClipboardExperiments"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; import { ConfigurationData } from "../config/configSchema"; @@ -83,6 +85,10 @@ export function Content() { + + + {/* Experimental Clipboard Automation */} + {/* Plugin Update Checker */} -- cgit v1.2.3 From 404b01b1acd5bd66e009176a71c21c29275fb6b9 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 21 Jul 2025 12:48:36 -0400 Subject: rm the other clipboard tests --- src/components/Content.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index f6f24dc..5f4e139 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -7,9 +7,7 @@ import { InstallationButton } from "./InstallationButton"; import { ConfigurationSection } from "./ConfigurationSection"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; -import { ClipboardButton } from "./ClipboardButton"; import { SmartClipboardButton } from "./SmartClipboardButton"; -import { ClipboardExperiments } from "./ClipboardExperiments"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; import { ConfigurationData } from "../config/configSchema"; @@ -84,16 +82,10 @@ export function Content() { - - {/* Experimental Clipboard Automation */} - - {/* Plugin Update Checker */} - - - {/* Nerd Stuff Button */} + {/* Nerd Stuff Button */} Date: Mon, 21 Jul 2025 13:14:19 -0400 Subject: restore plugin wiki link for now --- src/components/Content.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 5f4e139..c4934a6 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -7,6 +7,7 @@ import { InstallationButton } from "./InstallationButton"; import { ConfigurationSection } from "./ConfigurationSection"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; +import { ClipboardButton } from "./ClipboardButton"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; @@ -82,6 +83,7 @@ export function Content() { + {/* Plugin Update Checker */} -- cgit v1.2.3 From 0dd6b54e6992f6d71a920a7b8bd8ca84672db145 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 21 Jul 2025 13:21:11 -0400 Subject: bring copy button to top for more usage --- src/components/Content.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index c4934a6..a075574 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -71,6 +71,8 @@ export function Content() { isInstalled={isInstalled} installationStatus={installationStatus} /> + + {/* Configuration Section - only show if installed */} {isInstalled && ( @@ -84,7 +86,6 @@ export function Content() { - {/* Plugin Update Checker */} {/* Nerd Stuff Button */} -- cgit v1.2.3