From 9c6ff48eb1e63859ff075304628b373c8622c3fa Mon Sep 17 00:00:00 2001 From: pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com> Date: Mon, 4 May 2026 03:00:20 -0500 Subject: [PATCH] chore(main): release 1.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ app/frontend/package.json | 2 +- crates/mt-tauri/Cargo.toml | 2 +- crates/mt-tauri/tauri.conf.json | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e20d7e81..0d1bebe1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.1" + ".": "1.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3edf8528..965c0f78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.6.0](https://github.com/pythoninthegrasses/mt/compare/v1.5.1...v1.6.0) (2026-05-04) + + +### Features + +* add queue_play_context_query and find_track_offset backend commands ([7ccfbb6](https://github.com/pythoninthegrasses/mt/commit/7ccfbb6bb96ed2edf3e9d1533119f27155f8e22a)) +* **library:** add SWR snapshot to visibleTracks to eliminate blank viewport during scroll (task-334 option A) ([527bbef](https://github.com/pythoninthegrasses/mt/commit/527bbefa45c5c0cd952a1d3551a1bd894af6e012)) + + +### Bug Fixes + +* **frontend:** repair queue drag reorder and reduce snap aggressiveness ([c89e1cb](https://github.com/pythoninthegrasses/mt/commit/c89e1cbf0a175124da141e53efc9c63bd9d739cb)) +* **queue:** add HTTP fallback path to playContextQuery and mock route ([1784832](https://github.com/pythoninthegrasses/mt/commit/178483255d58de853f53a3ea00243a893a7e1ccc)) +* remove spurious async from playContextQuery in queue.js (task-338) ([cca91c7](https://github.com/pythoninthegrasses/mt/commit/cca91c7b9c3b73679cf20505d3de268293c25d08)) +* resolve six WebKit Playwright regressions (task-339) ([e81d947](https://github.com/pythoninthegrasses/mt/commit/e81d9477b2ff8e6c80738798b21bc56d5034fdc3)) +* use backend query for paginated double-click play and scroll-to-track ([f8f5a3a](https://github.com/pythoninthegrasses/mt/commit/f8f5a3a74c5f8a45663a43ce67361ec064a33358)) + + +### Performance Improvements + +* **tests:** tune Playwright for speed via preview build and worker fixture (task-340.7) ([89fda02](https://github.com/pythoninthegrasses/mt/commit/89fda02bae01fc84da14d431f3eccfab162d9ef7)) + ## [1.5.1](https://github.com/pythoninthegrasses/mt/compare/v1.5.0...v1.5.1) (2026-04-23) diff --git a/app/frontend/package.json b/app/frontend/package.json index 12a89f5a..a2ccba0b 100644 --- a/app/frontend/package.json +++ b/app/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mt-frontend", - "version": "1.5.1", + "version": "1.6.0", "private": true, "type": "module", "scripts": { diff --git a/crates/mt-tauri/Cargo.toml b/crates/mt-tauri/Cargo.toml index 256cd671..b0adcf7f 100644 --- a/crates/mt-tauri/Cargo.toml +++ b/crates/mt-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mt-tauri" -version = "1.5.1" +version = "1.6.0" description = "Desktop music player for large collections" authors = ["pythoninthegrass"] edition = "2024" diff --git a/crates/mt-tauri/tauri.conf.json b/crates/mt-tauri/tauri.conf.json index a52eca31..614ffe48 100644 --- a/crates/mt-tauri/tauri.conf.json +++ b/crates/mt-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "mt", - "version": "1.5.1", + "version": "1.6.0", "identifier": "com.mt.desktop", "build": { "beforeDevCommand": "npm --prefix ../../app/frontend run dev",