diff --git a/public/images/LegacyOrbis.png b/public/images/LegacyOrbis.png deleted file mode 100644 index 459e8fb..0000000 Binary files a/public/images/LegacyOrbis.png and /dev/null differ diff --git a/public/images/neoLegacy.png b/public/images/neoLegacy.png index 96a1539..b47ea29 100644 Binary files a/public/images/neoLegacy.png and b/public/images/neoLegacy.png differ diff --git a/public/images/projectlce.png b/public/images/projectlce.png new file mode 100644 index 0000000..3e20abc Binary files /dev/null and b/public/images/projectlce.png differ diff --git a/src/components/layout/DownloadOverlay.tsx b/src/components/layout/DownloadOverlay.tsx index 2130e7f..720b286 100644 --- a/src/components/layout/DownloadOverlay.tsx +++ b/src/components/layout/DownloadOverlay.tsx @@ -27,7 +27,7 @@ export const DownloadOverlay = memo(function DownloadOverlay({ className="absolute top-14 right-8 z-100 w-100 mc-options-bg" style={{ imageRendering: "pixelated" }} > -
+
{t("download.title")}
diff --git a/src/components/views/VersionsView.tsx b/src/components/views/VersionsView.tsx index 2ba0b5b..460e73c 100644 --- a/src/components/views/VersionsView.tsx +++ b/src/components/views/VersionsView.tsx @@ -557,14 +557,14 @@ const VersionsView = memo(function VersionsView() { ) : ( ) @@ -578,8 +578,7 @@ const VersionsView = memo(function VersionsView() { >
{edition.name} diff --git a/src/hooks/useGameManager.ts b/src/hooks/useGameManager.ts index 11a823d..d34cb8f 100644 --- a/src/hooks/useGameManager.ts +++ b/src/hooks/useGameManager.ts @@ -47,15 +47,16 @@ export const BASE_EDITIONS = [ supportsSlimSkins: false, panorama: "vanilla_tu19", logo: "/images/revelations.png", + transparentLogo: true, }, { - id: "legacyorbis", - name: "LegacyOrbis", + id: "projectlce", + name: "ProjectLCE", desc: "A LCE Project which aims to bring the feel and functionality from Minecraft: Playstation®4 Edition directly natively to your PC!", - url: "https://git.neolegacy.dev/LegacyOrbis/Client/releases/download/latest/MinecraftPS4Edition.zip", // LO-Byte: No CDN right now, direct download from the git + url: "https://git.neolegacy.dev/ProjectLCE/Client/releases/download/latest/MinecraftPS4Edition.zip", // LO-Byte: No CDN right now, direct download from the git titleImage: "/images/MinecraftPS4Edition.png", supportsSlimSkins: true, // LO-Byte: Slim skins are supported, might have to change a few things in the code to match neoLegacy's implementation - logo: "/images/LegacyOrbis.png", + logo: "/images/projectlce.png", panorama: "legacyorbis", // LO-Byte: Store is built differently to what emerald expects, branch for emerald will be added soon //officialDLC: "main:https://git.neolegacy.dev/LegacyOrbis/Store", @@ -112,6 +113,7 @@ export const BASE_EDITIONS = [ supportsSlimSkins: false, logo: "/images/moonEdition.png", panorama: "moonedition", + transparentLogo: true, }, { //neo: disabled. @@ -124,6 +126,7 @@ export const BASE_EDITIONS = [ logo: "/images/lce_online.png", panorama: "vanilla_tu19", lceOnline: true, + transparentLogo: true, }, ]; diff --git a/src/types/edition.ts b/src/types/edition.ts index 52ada11..a025caf 100644 --- a/src/types/edition.ts +++ b/src/types/edition.ts @@ -16,6 +16,7 @@ export interface Edition { officialDLC?: string; lceOnline?: boolean; hideOnAndroid?: boolean; + transparentLogo?: boolean; } export interface CustomEditionInput {