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"
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>
</div>
<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
src={edition.logo}
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" }}
/>
) : (
<ScreenshotImage
path={edition.logo}
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" }}
/>
)
@@ -578,8 +578,7 @@ const VersionsView = memo(function VersionsView() {
>
<div className="flex items-center gap-2">
<span
className={`text-xl tracking-wide truncate ${!isFocused ? "text-white" : "text-[#ffff00]"}`}
style={{ textShadow: "none" }}
className={`text-xl tracking-wide truncate mc-text-shadow ${!isFocused ? "text-white" : "text-[#ffff00]"}`}
>
{edition.name}
</span>
+7 -4
View File
@@ -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,
},
];
+1
View File
@@ -16,6 +16,7 @@ export interface Edition {
officialDLC?: string;
lceOnline?: boolean;
hideOnAndroid?: boolean;
transparentLogo?: boolean;
}
export interface CustomEditionInput {