Skip to content

Commit

Permalink
Version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
suterma committed Mar 30, 2024
1 parent 1efc21c commit 5778f56
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 4 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
2 changes: 1 addition & 1 deletion stats.html

Large diffs are not rendered by default.

0 comments on commit 5778f56

Please sign in to comment.