1.0.0 RELEASE [MAJOR] dev -> main

This commit is contained in:
/home/neo
2026-03-31 21:56:16 +03:00
committed by GitHub
parent d192387382
commit 7f5d513c46
217 changed files with 11647 additions and 5718 deletions

View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Name=Emerald Legacy Launcher
Comment=FOSS cross-platform launcher for Minecraft Legacy Console Edition
Exec=emerald-legacy-launcher
Icon=io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher
Type=Application
Categories=Game;

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<name>Emerald Legacy Launcher</name>
<summary>A launcher for Minecraft Legacy Console Edition</summary>
<description>
<p>FOSS cross-platform launcher for Minecraft Legacy Console Edition</p>
</description>
<launchable type="desktop-id">io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.desktop</launchable>
<url type="homepage">https://github.com</url>
<developer_name>Emerald Team</developer_name>
<releases>
<release version="1.0.0" date="2026-03-19">
<description>
<p>Latest stable release of the Emerald Legacy Launcher.</p>
</description>
</release>
</releases>
<provides>
<binary>emerald-legacy-launcher</binary>
</provides>
</component>

View File

@@ -0,0 +1,47 @@
app-id: io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher
runtime: org.gnome.Platform
runtime-version: "48"
sdk: org.gnome.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.node20
- org.freedesktop.Sdk.Extension.rust-stable
command: emerald-legacy-launcher
finish-args:
- --share=network
- --device=input
- --socket=x11
- --socket=wayland
- --device=dri
- --filesystem=xdg-data
- --socket=pulseaudio
- --filesystem=xdg-run/pipewire-0
modules:
- shared-modules/libayatana-appindicator/libayatana-appindicator-gtk3.json
- name: emerald-legacy-launcher
buildsystem: simple
build-options:
append-path: /usr/lib/sdk/node20/bin:/usr/lib/sdk/rust-stable/bin
build-args:
- --share=network
env:
PKG_CONFIG_PATH: /usr/lib/sdk/node20/lib/pkgconfig:/usr/lib/sdk/rust-stable/lib/pkgconfig
CARGO_HOME: /run/build/emerald-legacy-launcher/cargo
PNPM_HOME: /run/build/emerald-legacy-launcher/pnpm-home
build-commands:
- . /usr/lib/sdk/rust-stable/enable.sh
- mkdir -p /run/build/emerald-legacy-launcher/pnpm-bin
- curl -fSL https://github.com/pnpm/pnpm/releases/download/v10.32.1/pnpm-linux-x64 -o /run/build/emerald-legacy-launcher/pnpm-bin/pnpm # yes i hardcode URLs
- chmod +x /run/build/emerald-legacy-launcher/pnpm-bin/pnpm
- export PATH=/run/build/emerald-legacy-launcher/pnpm-bin:$PATH
- CI=true PATH=/run/build/emerald-legacy-launcher/pnpm-bin:$PATH /run/build/emerald-legacy-launcher/pnpm-bin/pnpm install
- CI=true PATH=/run/build/emerald-legacy-launcher/pnpm-bin:$PATH /run/build/emerald-legacy-launcher/pnpm-bin/pnpm tauri build --no-bundle
- install -Dm755 src-tauri/target/release/emerald-legacy-launcher /app/bin/emerald-legacy-launcher
- mkdir -p /app/share/emerald-legacy-launcher/
- cp -r dist /app/share/emerald-legacy-launcher/
- install -Dm644 flatpak/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.desktop /app/share/applications/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.desktop
- install -Dm644 flatpak/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.metainfo.xml /app/share/metainfo/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.metainfo.xml
- install -Dm644 public/images/icon.png /app/share/icons/hicolor/512x512/apps/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.png
sources:
- type: dir
path: ..