feat: non-destructive rebrand

This commit is contained in:
neoapps-dev 2026-04-08 11:28:28 +03:00
parent ec6db283a1
commit e56af63fab
8 changed files with 15 additions and 20 deletions

View file

@ -1,4 +1,4 @@
# Contributing to Emerald Legacy Launcher
# Contributing to LCE Emerald Launcher
Thank you for considering contributing to Emerald! We appreciate all types of contributions, including bug fixes, new features, and documentation improvements.

View file

@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Emerald Legacy Launcher - The unified hub for LCE preservation.
Copyright (C) 2026 The Emerald Team and contributors
LCE Hub - The unified hub for LCE preservation.
Copyright (C) 2026 LCE Hub and contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View file

@ -1,6 +1,6 @@
<div align="center">
<img height="150" src="https://raw.githubusercontent.com/Emerald-Legacy-Launcher/Emerald-Legacy-Launcher/refs/heads/main/public/images/icon.png" alt="Emerald Legacy Launcher Logo">
<h1>Emerald Legacy Launcher</h1>
<img height="150" src="https://raw.githubusercontent.com/Emerald-Legacy-Launcher/Emerald-Legacy-Launcher/refs/heads/main/public/images/icon.png" alt="LCE Emerald Launcher Logo">
<h1>LCE Emerald Launcher</h1>
<p><strong>FOSS cross-platform launcher for Minecraft Legacy Console Edition</strong></p>
<p>
@ -22,7 +22,7 @@
---
> [!IMPORTANT]
> **Emerald Legacy Launcher is currently in Beta.**
> **macOS support for LCE Emerald Launcher is currently in Beta.**
> Expect minor bugs, frequent updates, and features that are still being polished as we work toward a stable release.
---

View file

@ -3,8 +3,8 @@ import { motion, AnimatePresence } from 'framer-motion';
import { useUI, useAudio, useConfig, GameContext } from '../../context/LauncherContext';
import { TauriService } from '../../services/TauriService';
const REGISTRY_URL = 'https://raw.githubusercontent.com/Emerald-Legacy-Launcher/Workshop/refs/heads/main/registry.json';
const RAW_BASE = 'https://raw.githubusercontent.com/Emerald-Legacy-Launcher/Workshop/refs/heads/main';
const REGISTRY_URL = 'https://raw.githubusercontent.com/LCE-Hub/LCE-Workshop/refs/heads/main/registry.json';
const RAW_BASE = 'https://raw.githubusercontent.com/LCE-Hub/LCE-Workshop/refs/heads/main';
const CATEGORY_TABS = ['Skin', 'Texture', 'World', 'Mod', 'DLC'] as const;
const ALL_TABS = [...CATEGORY_TABS, 'Search'] as const;
@ -171,11 +171,6 @@ const WorkshopView = memo(function WorkshopView() {
transition={{ duration: config.animationsEnabled ? 0.3 : 0 }}
className="flex flex-col items-center w-full max-w-5xl relative font-['Mojangles'] text-white select-none outline-none focus:outline-none"
>
{/*<div
className="absolute inset-0 -z-10 bg-cover h-screen"
style={{ backgroundImage: "url('/images/background.png')", imageRendering: 'pixelated' }}
/>*/}
<div className="w-[95%] flex flex-col items-center mt-6">
<div className="w-full flex items-end justify-between">
<div className="flex items-end gap-0">

View file

@ -52,7 +52,7 @@ export function useDiscordRPC({
versions: "Selecting Version",
settings: "In Settings",
devtools: "Developing for LCE",
skins: "Browsing Skins",
skins: "Changing Skins",
workshop: "Browsing Workshop",
};
details = tabNames[activeView] || "In Menus";

View file

@ -2,7 +2,7 @@ import { useState, useEffect, useCallback } from "react";
import pkg from "../../package.json";
const CURRENT_VERSION = pkg.version;
const REPO_URL = "https://api.github.com/repos/Emerald-Legacy-Launcher/Emerald-Legacy-Launcher/releases/latest";
const REPO_URL = "https://api.github.com/repos/LCE-Hub/LCE-Emerald-Launcher/releases/latest";
function isNewerVersion(latest: string, current: string): boolean {
const latestParts = latest.split('.').map(Number);

View file

@ -153,7 +153,7 @@ export default function App() {
message={updateMessage}
onClose={clearUpdateMessage}
onClick={() =>
TauriService.openUrl("https://emerald-legacy-launcher.github.io/")
TauriService.openUrl("https://lce-hub.github.io/")
}
title="Update Available!"
variant="update"

View file

@ -41,7 +41,7 @@ class RPC {
const assets = new Assets();
assets.setLargeImage("logo");
assets.setLargeText("Emerald Legacy");
assets.setLargeText("LCE Emerald Launcher");
assets.setSmallImage("app-icon");
assets.setSmallText(isPlaying ? "Playing" : "In Menus");
activity.setAssets(assets);
@ -49,8 +49,8 @@ class RPC {
activity.setTimestamps(new Timestamps(this.startTime));
activity.setButton([
new Button("Discord", "https://discord.gg/RHGRUwpmVc"),
new Button("GitHub", "https://github.com/Emerald-Legacy-Launcher/Emerald-Legacy-Launcher")
new Button("Discord", "https://discord.gg/A285mSfkcF"),
new Button("GitHub", "https://github.com/LCE-Hub/LCE-Emerald-Launcher")
]);
try {
@ -61,4 +61,4 @@ class RPC {
}
}
export default new RPC();
export default new RPC();