This commit is contained in:
neoapps-dev 2026-04-02 16:34:43 +03:00
parent 7be78599ba
commit c4ffb6d21d
5 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{
"name": "emerald-legacy-launcher",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",

View file

@ -1,6 +1,6 @@
[package]
name = "emerald-legacy-launcher"
version = "1.0.0"
version = "1.0.1"
description = "A FOSS, cross-platform launcher for Minecraft Legacy Edition"
authors = ["Emerald Team"]
edition = "2021"

View file

@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Emerald Legacy Launcher",
"version": "1.0.0",
"version": "1.0.1",
"identifier": "com.emerald.legacy",
"build": {
"beforeDevCommand": "npm run dev",

View file

@ -68,7 +68,7 @@ export function LauncherProvider({ children }: { children: React.ReactNode }) {
configRaw.rpcEnabled, configRaw.musicVol, configRaw.sfxVol, configRaw.isDayTime,
configRaw.profile, configRaw.linuxRunner, configRaw.perfBoost, configRaw.customEditions,
configRaw.legacyMode, configRaw.keepLauncherOpen, configRaw.enableTrayIcon,
configRaw.animationsEnabled
configRaw.animationsEnabled, configRaw.version
]);
const game = useMemo(() => gameRaw, [

View file

@ -17,7 +17,7 @@ import { AchievementToast } from "../components/common/AchievementToast";
import { useUI, useConfig, useAudio, useGame, useSkin } from "../context/LauncherContext";
import { getCurrentWindow } from "@tauri-apps/api/window";
import { TauriService } from "../services/TauriService";
import pkg from "../../package.json";
const appWindow = getCurrentWindow();
export default function App() {
@ -341,7 +341,7 @@ export default function App() {
className="shrink-0 p-4 flex justify-between items-end text-[10px] text-[#A0A0A0] mc-text-shadow bg-gradient-to-t from-black/80 to-transparent uppercase tracking-widest opacity-60 font-['Mojangles']"
style={{ fontWeight: "normal" }}
>
<div className="flex-1 text-left whitespace-nowrap">Version: 1.0.0</div>
<div className="flex-1 text-left whitespace-nowrap">Version: {pkg.version}</div>
<div className="flex-[2] text-center whitespace-nowrap">
Not affiliated with Mojang AB or Microsoft. "Minecraft" is a trademark of Mojang Synergies AB.
</div>