Skip to content

v0.10.0

Choose a tag to compare

@garyttierney garyttierney released this 24 Dec 00:17

me3 v0.10.0

Windows Installation

Download the me3_installer.exe setup wizard.

Already have me3 installed? Update to the latest version by opening the run prompt (Ctrl + R) and running me3 update.

Linux Installation

curl --proto '=https' --tlsv1.2 -sSfL https://github.com/garyttierney/me3/releases/download/v0.10.0/installer.sh | sh

me3 - v0.10.0 - 2025-12-24

🚀 Features

  • 67c8859 (cli) Set terminal title during launch in #553

    Closes #402

    Set it relatively late to avoid flicker if the launch fails early e.g.
    invalid options or anything not found.

  • e4508a9 (host) Compress bhd cache with deflate in #615

  • 092cb26 (host) Add mimalloc as a replacement memory allocator for ds3, sdt and er

🐛 Bug Fixes

  • e2bba6e (linux) Add appid for Proton 10 in #584

  • 103199a (linux) Fix path remapping for SLR in #552

    Closes #416

    Tested with no me3 config in any of the searched paths, and with win
    bins installed to:

    /usr/lib64/me3/x86_64-windows/me3_mod_host.dll
    /usr/lib64/me3/x86_64-windows/me3-launcher.exe
    

    Before:```console
    $ /usr/bin/me3 launch -g er # fails to launch
    ... ME3_LAUNCHER_HOST_DLL=""/usr/lib64/me3/x86_64-windows/me3_mod_host.dll""
    ... proton" "waitforexitandrun" "/usr/lib64/me3/x86_64-windows/me3-launcher.exe"

    After:```console
    $ cargo run --release --target x86_64-unknown-linux-gnu --bin me3 launch -g er # ok
    ... ME3_LAUNCHER_HOST_DLL="\"/run/host/usr/lib64/me3/x86_64-windows/me3_mod_host.dll\""
    ... proton" "waitforexitandrun" "/run/host/usr/lib64/me3/x86_64-windows/me3-launcher.exe"
    
  • e682d0c Make it possible to load natives premain in #624

    Fixes #621


  • 61129ad Fallback to 'Verified on Deck' Proton runtimes in #611

    Steam Deck uses its own verification system to decide which Proton
    runtime a game should be ran with. This doesn't override the usual
    compat tool configuration, but is used if none exists.

📚 Documentation