removing smartcmd build from Emerald Launcher.

This commit is contained in:
KayJann
2026-04-07 18:36:51 +02:00
parent aa0c10fa2a
commit b5ca8a1697
6 changed files with 5 additions and 14 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ interface PanoramaProps {
const PanoramaBackground = React.memo(({ profile, isDay }: PanoramaProps) => {
const { isWindowVisible } = useUI();
const PANORAMA_PROFILES = ['legacy_evolved', 'vanilla_tu19', 'vanilla_tu24', '360revived'];
const PANORAMA_PROFILES = ['legacy_evolved', '360revived'];
const profileId = PANORAMA_PROFILES.includes(profile) ? profile : 'legacy_evolved';
const currentPanorama = `/panorama/${profileId}_Panorama_Background_${isDay ? 'Day' : 'Night'}.png`;
+2 -2
View File
@@ -243,7 +243,7 @@ const SettingsView = memo(function SettingsView() {
} else if (currentSubMenu === "video") {
items.push({
id: "vfx",
label: `VFX: ${vfxEnabled ? "ON" : "OFF"}`,
label: `Click effects: ${vfxEnabled ? "ON" : "OFF"}`,
type: "button",
onClick: handleVfxToggle,
});
@@ -256,7 +256,7 @@ const SettingsView = memo(function SettingsView() {
if (isMac) {
items.push({
id: "perf",
label: `M1/M2 Boost: ${perfBoost ? "Enabled" : "Disabled"}`,
label: `Apple silicon performance boost: ${perfBoost ? "Enabled" : "Disabled"}`,
type: "button",
onClick: handlePerfToggle,
});
+1 -1
View File
@@ -429,7 +429,7 @@ const SetupView: React.FC<SetupViewProps> = ({ onComplete }) => {
<div className="bg-black/50 border-2 border-white/20 p-4">
<div className="flex items-center justify-between">
<div className="text-left">
<p className="text-white font-bold">Visual Effects</p>
<p className="text-white font-bold">Click effects</p>
<p className="text-xs text-white/60">Click particles and animations</p>
</div>
<button