mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-17 15:57:13 +00:00
removing smartcmd build from Emerald Launcher.
This commit is contained in:
parent
aa0c10fa2a
commit
b5ca8a1697
|
|
@ -89,7 +89,6 @@ Emerald Legacy Launcher integrates multiple community-driven builds of Minecraft
|
|||
| **[Revelations](https://github.com/itsRevela/MinecraftConsoles)** | [@itsRevela](https://github.com/itsRevela) | GitHub | Enhanced LCE with uncapped FPS, graphics fixes, hardcore hearts, and dedicated server security. Features LAN multiplayer, split-screen, and keyboard & mouse support. |
|
||||
| **[360 Revived](https://github.com/BluTac10/360Revived)** | [@BluTac10](https://github.com/BluTac10) | GitHub | PC port of Xbox 360 Edition TU19 with desktop optimizations. Features keyboard & mouse, fullscreen, LAN multiplayer, dedicated server, and split-screen support. |
|
||||
| **[Legacy Evolved](https://codeberg.org/piebot/LegacyEvolved)** | [@piebot](https://codeberg.org/piebot) | Codeberg | Backports newer title updates to LCE TU19 base. Currently porting TU25 (~98% complete) and TU31 (~76% complete). |
|
||||
| **[Title Update 19](https://github.com/smartcmd/MinecraftConsoles)** | [@smartcmd](https://github.com/smartcmd) | GitHub | Minecraft LCE v1.6.0560.0 with compilation fixes. Base version for modding with keyboard & mouse, fullscreen, LAN multiplayer, and dedicated server support. |
|
||||
|
||||
### Coming Soon: Legacy Minecraft Restoration Project (LMRP)
|
||||
|
||||
|
|
|
|||
|
|
@ -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`;
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ const SPLASHES = [
|
|||
"Reinventing the wheel!", "The cake is a lie.", "Powered by copious amounts of coffee.",
|
||||
"I'm running out of ideas.", "That's no moon...", "Now with 100% more nostalgia!",
|
||||
"Legacy is the new modern.", "No microtransactions!", "As seen on TV!", "Ironic, isn't it?",
|
||||
"Creeper? Aww man.", "Technoblade never dies!",
|
||||
"Creeper? Aww man.", "Technoblade never dies!", "is smartcmd dead ?", "NO BUILT IN MS AUTH !",
|
||||
];
|
||||
|
||||
interface AudioControllerProps {
|
||||
|
|
|
|||
|
|
@ -18,14 +18,6 @@ const BASE_EDITIONS = [
|
|||
titleImage: "/images/minecraft_title_revelations.png",
|
||||
supportsSlimSkins: false,
|
||||
},
|
||||
{
|
||||
id: "vanilla_tu19",
|
||||
name: "Title Update 19",
|
||||
desc: "Leaked 4J Studios build. (smartcmd)",
|
||||
url: "https://github.com/smartcmd/MinecraftConsoles/releases/download/nightly/LCEWindows64.zip",
|
||||
titleImage: "/images/minecraft_title_tu19.png",
|
||||
supportsSlimSkins: false,
|
||||
},
|
||||
{
|
||||
id: "360revived",
|
||||
name: "360Revived",
|
||||
|
|
|
|||
Loading…
Reference in a new issue