mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-22 18:27:12 +00:00
feat: rebrand Legacy Evolved into neoLegacy
This commit is contained in:
parent
52ffdb5cf3
commit
d744b43d44
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
|
|
@ -266,9 +266,9 @@ const VersionsView = memo(function VersionsView() {
|
|||
} ${isComingSoon ? "cursor-not-allowed" : ""}`}
|
||||
>
|
||||
<div className="flex items-center gap-2">
|
||||
{(edition.id === "legacy_evolved" || edition.id === "360revived" || edition.id === "lmrp") && (
|
||||
{edition.logo && (
|
||||
<img
|
||||
src={edition.id === "legacy_evolved" ? "/images/legacy_evolved.png" : edition.id === "360revived" ? "/images/360_revived.png" : "/images/lmrp.png"}
|
||||
src={edition.logo}
|
||||
alt=""
|
||||
className="w-5 h-5 object-contain flex-shrink-0"
|
||||
style={{ imageRendering: "pixelated" }}
|
||||
|
|
|
|||
|
|
@ -3,12 +3,13 @@ import { TauriService } from "../services/TauriService";
|
|||
|
||||
const BASE_EDITIONS = [
|
||||
{
|
||||
id: "legacy_evolved",
|
||||
name: "Legacy Evolved",
|
||||
id: "legacy_evolved", //neo: yes. we're not changing the ID. that will break user data.
|
||||
name: "neoLegacy",
|
||||
desc: "Backporting newer title updates back to LCE",
|
||||
url: "https://codeberg.org/piebot/LegacyEvolved/releases/download/nightly/LCEWindows64.zip",
|
||||
titleImage: "/images/minecraft_title_LegacyEvolved.png",
|
||||
titleImage: "/images/minecraft_title_neoLegacy.png",
|
||||
supportsSlimSkins: true,
|
||||
logo: "/images/legacy_evolved.png"
|
||||
},
|
||||
{
|
||||
id: "revelations",
|
||||
|
|
@ -25,16 +26,8 @@ const BASE_EDITIONS = [
|
|||
url: "https://github.com/BluTac10/360Revived/releases/download/nightly/LCEWindows64.zip",
|
||||
titleImage: "/images/minecraft_title_360revived.png",
|
||||
supportsSlimSkins: false,
|
||||
},
|
||||
{
|
||||
id: "lmrp",
|
||||
name: "COMING SOON: Legacy Minigames Restoration Project",
|
||||
desc: "Classic LCE mini-games (Battle, Tumble, Glide)",
|
||||
url: "",
|
||||
titleImage: "/images/minecraft_title_lrmp.png",
|
||||
supportsSlimSkins: false,
|
||||
comingSoon: true,
|
||||
},
|
||||
logo: "/images/360_revived.png"
|
||||
}
|
||||
];
|
||||
|
||||
const PARTNERSHIP_SERVERS = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue