mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-18 08:17:23 +00:00
bump
This commit is contained in:
parent
7be78599ba
commit
c4ffb6d21d
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "emerald-legacy-launcher",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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, [
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue