• v0.3.1 5b4a70e690

    muyue v0.3.1 Stable

    Muyue released this 2026-04-22 18:21:01 +00:00 | 238 commits to main since this release

    v0.3.1

    Changes since v0.3.0

    • refactor(config): remove Terminal sub-tab from Configuration page (95bd824)
    • fix(terminal): init payload never sent due to ws.onopen being overwritten (252f178)
    • fix(terminal): improve shell resolution with better error handling and ws proxy support (7dcf505)
    • feat(studio): parse AI thinking and tool launch messages in terminal panel (8fb93fa)
    • fix(studio): forward AI thinking chunks to frontend instead of dropping them (5ec373c)
    • feat(studio): add tool execution and hide AI thinking tags (1eb5a6d)
    • fix(terminal): ignore invalid shell config from race condition (cd5ebe0)
    • feat(shell): restore AI assistant panel (2004c15)
    • fix(terminal): restore terminal input and cursor visibility (9306152)
    • refactor(api): split monolithic handlers.go into focused modules (e15a034)

    Downloads

    Platform File
    Linux x86_64 muyue-linux-amd64.tar.gz
    Linux ARM64 muyue-linux-arm64.tar.gz
    macOS Intel muyue-darwin-amd64.tar.gz
    macOS Apple Silicon muyue-darwin-arm64.tar.gz
    Windows x86_64 muyue-windows-amd64.zip
    Windows ARM64 muyue-windows-arm64.zip

    The binary includes both CLI and Desktop modes.
    Run muyue for TUI, muyue desktop for web UI.

    Install

    Linux (x86_64)

    curl -sL https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.1/muyue-linux-amd64.tar.gz | tar xz
    chmod +x muyue-linux-amd64
    sudo mv muyue-linux-amd64 /usr/local/bin/muyue
    

    macOS (Apple Silicon)

    curl -sL https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.1/muyue-darwin-arm64.tar.gz | tar xz
    chmod +x muyue-darwin-arm64
    sudo mv muyue-darwin-arm64 /usr/local/bin/muyue
    

    Windows (x86_64)

    Invoke-WebRequest -Uri "https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.1/muyue-windows-amd64.zip" -OutFile "muyue.zip"
    Expand-Archive -Path "muyue.zip" -DestinationPath "."
    Move-Item muyue-windows-amd64.exe C:\Windows\muyue.exe
    
    Downloads