diff --git a/CHANGELOG.md b/CHANGELOG.md index da7a432..d299e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,67 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## v0.3.0 + +### Changes since v0.2.1 + +- fix(terminal): resolve PTY shell exec error, simplify CLI, unify Config tabs, restore Studio CSS (0b22109) +- feat: add API key validation flow for AI provider config (7f67473) +- feat(studio): replace sidebar layout with unified execution feed styles (040e482) +- fix: guard against empty tabs array in closeTab (c8903ef) +- refactor: redesign Config as settings window with sidebar panels, remove system overview from Dashboard (f3cb306) +- feat: add multi-tab terminal with SSH support, config editing, and dashboard redesign (3cdcb22) +- feat(studio): add i18n keys and CSS for redesigned AI chat interface (ee18bbe) +- chore: bump version to 0.3.0 (b0b0e1d) +- chore: remove dead code (packages, functions, types, constants) (fc79810) +- docs: rewrite README and CHANGELOG for desktop app mode (f7222b0) +- feat(web): add i18n support with FR/EN locales and keyboard layout awareness (11417d3) +- refactor(web): redesign frontend for native web UX (3dc24ae) +- refactor: remove TUI, desktop web UI is now the default and only mode (aa0ff19) +- refactor: unify into single `muyue` binary with embedded desktop mode (3463605) +- fix(ci): add frontend build step before Go vet/test/build (097cf40) +- feat: add desktop app with React frontend, API backend, theme system (#2) (88d2a03) +- chore: update CHANGELOG for v0.2.1 (1830c18) +- feat: complete TUI redesign with cyberpunk theme (#1) (cb8e3d0) + +### Downloads + +| Platform | File | +|----------|------| +| Linux x86_64 | [muyue-linux-amd64.tar.gz](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-linux-amd64.tar.gz) | +| Linux ARM64 | [muyue-linux-arm64.tar.gz](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-linux-arm64.tar.gz) | +| macOS Intel | [muyue-darwin-amd64.tar.gz](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-darwin-amd64.tar.gz) | +| macOS Apple Silicon | [muyue-darwin-arm64.tar.gz](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-darwin-arm64.tar.gz) | +| Windows x86_64 | [muyue-windows-amd64.zip](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-windows-amd64.zip) | +| Windows ARM64 | [muyue-windows-arm64.zip](https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/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)** +```bash +curl -sL https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-linux-amd64.tar.gz | tar xz +chmod +x muyue-linux-amd64 +sudo mv muyue-linux-amd64 /usr/local/bin/muyue +``` + +**macOS (Apple Silicon)** +```bash +curl -sL https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-darwin-arm64.tar.gz | tar xz +chmod +x muyue-darwin-arm64 +sudo mv muyue-darwin-arm64 /usr/local/bin/muyue +``` + +**Windows (x86_64)** +```powershell +Invoke-WebRequest -Uri "https://gitea.legion-muyue.fr/Muyue/MuyueWorkspace/releases/download/v0.3.0/muyue-windows-amd64.zip" -OutFile "muyue.zip" +Expand-Archive -Path "muyue.zip" -DestinationPath "." +Move-Item muyue-windows-amd64.exe C:\Windows\muyue.exe +``` + + ## [Unreleased] ### Added