Desktop version history for Ableton projects.
bun install
bun run dev# Desktop app + daemon
bun run dev
# Marketing site
bun run dev:web
# Full repo verification
bun run check
# Local desktop artifacts
bun run package:mac
# Cut the next release locally
bun run release:patch
git push --follow-tagsapps/desktop/package.jsonis the canonical app version.bun run release:patch,release:minor, andrelease:majorbump the app version, updateCHANGELOG.md, create the release commit, and create avX.Y.Ztag.bun run release -- 1.2.3cuts an explicit version.- Add
-- --pushto push the branch and tags from the release command. - GitHub Actions builds macOS and Windows artifacts from the tag and publishes the GitHub Release.
- The website download links and in-app update checker both read the latest GitHub Release tag.
Conventional Commits are the default so the changelog stays clean:
feat(desktop): add update banner
fix(server): harden session bootstrap
chore: refresh release workflow