feat: new neolegacy logo

This commit is contained in:
neoapps-dev
2026-09-16 23:02:25 +03:00
parent 730174b768
commit adb180c87f
7 changed files with 12 additions and 9 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

+1 -1
View File
@@ -27,7 +27,7 @@ export const DownloadOverlay = memo(function DownloadOverlay({
className="absolute top-14 right-8 z-100 w-100 mc-options-bg" className="absolute top-14 right-8 z-100 w-100 mc-options-bg"
style={{ imageRendering: "pixelated" }} style={{ imageRendering: "pixelated" }}
> >
<div className="px-3 pt-2.5 pb-2"> <div className="px-3 pb-1">
<span className="text-xl text-[#333333]">{t("download.title")}</span> <span className="text-xl text-[#333333]">{t("download.title")}</span>
</div> </div>
<div className="flex flex-col gap-1.5 py-2 max-h-[260px] overflow-y-auto custom-scrollbar mc-options-fg"> <div className="flex flex-col gap-1.5 py-2 max-h-[260px] overflow-y-auto custom-scrollbar mc-options-fg">
+3 -4
View File
@@ -557,14 +557,14 @@ const VersionsView = memo(function VersionsView() {
<img <img
src={edition.logo} src={edition.logo}
alt="" alt=""
className={`w-10 h-10 object-contain ${isComingSoon ? "opacity-40 grayscale" : ""}`} className={`${!edition.transparentLogo ? "w-12 h-12" : "w-10 h-10"} object-contain ${isComingSoon ? "opacity-40 grayscale" : ""}`}
style={{ imageRendering: "pixelated" }} style={{ imageRendering: "pixelated" }}
/> />
) : ( ) : (
<ScreenshotImage <ScreenshotImage
path={edition.logo} path={edition.logo}
alt="" alt=""
className={`w-6 h-6 object-contain ${isComingSoon ? "opacity-40 grayscale" : ""}`} className={`${!edition.transparentLogo ? "w-12 h-12" : "w-10 h-10"} object-contain ${isComingSoon ? "opacity-40 grayscale" : ""}`}
style={{ imageRendering: "pixelated" }} style={{ imageRendering: "pixelated" }}
/> />
) )
@@ -578,8 +578,7 @@ const VersionsView = memo(function VersionsView() {
> >
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<span <span
className={`text-xl tracking-wide truncate ${!isFocused ? "text-white" : "text-[#ffff00]"}`} className={`text-xl tracking-wide truncate mc-text-shadow ${!isFocused ? "text-white" : "text-[#ffff00]"}`}
style={{ textShadow: "none" }}
> >
{edition.name} {edition.name}
</span> </span>
+7 -4
View File
@@ -47,15 +47,16 @@ export const BASE_EDITIONS = [
supportsSlimSkins: false, supportsSlimSkins: false,
panorama: "vanilla_tu19", panorama: "vanilla_tu19",
logo: "/images/revelations.png", logo: "/images/revelations.png",
transparentLogo: true,
}, },
{ {
id: "legacyorbis", id: "projectlce",
name: "LegacyOrbis", name: "ProjectLCE",
desc: "A LCE Project which aims to bring the feel and functionality from Minecraft: Playstation®4 Edition directly natively to your PC!", 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", 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 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", panorama: "legacyorbis",
// LO-Byte: Store is built differently to what emerald expects, branch for emerald will be added soon // 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", //officialDLC: "main:https://git.neolegacy.dev/LegacyOrbis/Store",
@@ -112,6 +113,7 @@ export const BASE_EDITIONS = [
supportsSlimSkins: false, supportsSlimSkins: false,
logo: "/images/moonEdition.png", logo: "/images/moonEdition.png",
panorama: "moonedition", panorama: "moonedition",
transparentLogo: true,
}, },
{ {
//neo: disabled. //neo: disabled.
@@ -124,6 +126,7 @@ export const BASE_EDITIONS = [
logo: "/images/lce_online.png", logo: "/images/lce_online.png",
panorama: "vanilla_tu19", panorama: "vanilla_tu19",
lceOnline: true, lceOnline: true,
transparentLogo: true,
}, },
]; ];
+1
View File
@@ -16,6 +16,7 @@ export interface Edition {
officialDLC?: string; officialDLC?: string;
lceOnline?: boolean; lceOnline?: boolean;
hideOnAndroid?: boolean; hideOnAndroid?: boolean;
transparentLogo?: boolean;
} }
export interface CustomEditionInput { export interface CustomEditionInput {