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
+1 -1
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);