A desktop launcher for Windows, Mac & Linux which utilises the efficiency of Rust and Tauri for managing Flash runtimes and game versions, for the Backyard Monsters Refitted client. This launcher packages the required SWF binaries and loads them into Flash Player.
Ubuntu/Debian:
# Install runtime dependencies
# Note: package names with the t64 suffix are Ubuntu 24.04+ only
# On Ubuntu 22.04 or older, remove the t64 suffix (e.g. libatk1.0-0, libgtk-3-0)
sudo apt update
sudo apt install -y libnss3 libatk1.0-0t64 libxss1 libgtk-3-0t64 \
libasound2t64 libgtk2.0-0t64 libdbus-glib-1-2
# Make AppImage executable (replace the version number with the one you downloaded)
chmod +x bymr-launcher_0.3.8_amd64.AppImage
# Run the launcher
./bymr-launcher_0.3.8_amd64.AppImage
Fedora/RHEL/CentOS:
sudo dnf install -y nss atk libXScrnSaver gtk3 alsa-lib gtk2 dbus-glib
Arch/Manjaro:
sudo pacman -Sy --noconfirm nss at-spi2-atk libxss gtk3 alsa-lib gtk2 dbus-glib
SteamOS/Steam Deck:
# Make filesystem writable
sudo steamos-readonly disable
# Initialize pacman keys (if not already done)
sudo pacman-key --init
sudo pacman-key --populate archlinux
sudo pacman-key --populate holo
# Install dependencies
sudo pacman -Sy --noconfirm nss at-spi2-atk libxss gtk3 alsa-lib gtk2 dbus-glib
For additional troubleshooting steps on Linux visit our troubleshooting page
Before getting started, ensure you have the following components installed and properly configured:
| Component | Description | Installation Link |
|---|---|---|
| Rust | The Rust programming language | Install Rust |
| Cargo | Rust's package manager | Cargo Registry |
| MSVC Toolchain | Microsoft Visual C++ build tools | Download MSVC |
| Node.js & NPM | JavaScript runtime and package manager | Install Node.js |
This project requires compilation with the MSVC toolchain rather than the GNU alternative. The MSVC toolchain properly embeds the WebView2 runtime into the binary, while GNU requires distributing an additional WebView2Loader.dll file alongside your executable. For more details, see the tauri-webview2 documentation.
For comprehensive setup instructions, please refer to the Tauri Prerequisites Guide.
Start the development server using either of the following commands:
npm run tauri dev
or
cargo tauri dev
This launches a Vite development server with fast hot-reload capabilities for your frontend changes. The development server is also accessible at http://localhost:5173 if you prefer to develop directly in your browser.
npm run tauri build -- --bundles nsis,msi
Add both Rust targets before building:
rustup target add x86_64-apple-darwin
rustup target add aarch64-apple-darwin
Then run the build:
sudo CI=true npm run tauri build -- --target universal-apple-darwin
sudoCI=true is set in your environment variablesInstall the required system dependencies for your distro, then build:
# Ubuntu/Debian
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file \
libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
# Fedora/RHEL
sudo dnf install -y webkit2gtk4.1-devel openssl-devel curl wget file \
libxdo-devel libayatana-appindicator-gtk3-devel librsvg2-devel
npm run tauri build -- --bundles deb,rpm,appimage
release.sh in the repo root handles versioning and triggering CI builds. Run it from the repo root with Git Bash (or any bash shell on macOS/Linux):
./release.sh # bump patch (e.g. 0.3.7 â 0.3.8)
./release.sh minor # bump minor (e.g. 0.3.7 â 0.4.0)
./release.sh major # bump major (e.g. 0.3.7 â 1.0.0)
The script will:
Cargo.toml and tauri.conf.jsonv0.3.8)Your working tree must be clean before running the script.