diff --git a/CHANGELOG.md b/CHANGELOG.md index b1545d63..5cdc0ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [2.3.0](https://github.com/suterma/replayer-pwa/compare/v2.1.0...v2.3.0) (2023-03-30) + +This release adds a playback rate setting, fixes some storage issues and implements various UI improvements. + +## What's Changed + +- Improved download dialog +- Initial cue is optional +- Improved time update handling +- Improved menu display +- Improved artist display +- Fixed keyboard handling for menus +- Added playback rate handling +- Internally improved media looping +- Improved storage handling for blobs/files, including more precise error handling +- Removed fragment usage for blobs, due to issues on iPadOS devices +- Improved ZIP loading progress display + +**Full Changelog**: (https://github.com/suterma/replayer-pwa/compare/v2.1.0...v2.3.0) + ## [2.1.0](https://github.com/suterma/replayer-pwa/compare/v2.0.2...v2.1.0) (2023-01-21) This release mainly adds a fullscreen mode, specifically useful with video content. diff --git a/package.json b/package.json index bbbf782c..007b0b09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "replayer", - "version": "2.2.1", + "version": "2.3.0", "description": "Replayer is a free, cue-based media player for rehearsals with playback music. By the click of a button, Replayer starts to play at predefined times in the audio or video file.", "homepage": "https://replayer.app", "main": "./public/index.html", diff --git a/src/App.vue b/src/App.vue index e2f84718..49ea88d0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -121,8 +121,10 @@ function handleAppUpdate() { if (compare(previousVersion, '2.2.1', '<')) { updateText = 'Version 2.2.1: minor bugfixes\r\n' + updateText; } - if (compare(previousVersion, '2.2.2', '<')) { - updateText = 'Version 2.2.2: Storage bugfixes\r\n' + updateText; + if (compare(previousVersion, '2.3.0', '<')) { + updateText = + 'Version 2.3.0: Storage bugfixes and minor UI improvements\r\n' + + updateText; } acknowledgeVersion(currentVersion, updateText).then(() => { diff --git a/stats.html b/stats.html index e7b1fea6..5d111fcb 100644 --- a/stats.html +++ b/stats.html @@ -4822,7 +4822,7 @@