diff --git a/CHANGELOG.md b/CHANGELOG.md index 252e33dc1..64167a839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.0-preview.28] - 2024-07-27 + +### Added + +- Added option to follow the album cover color +- Added option to remember playback controls (loop, shuffle) after a restart + +### Changed + +- Improved loop one button + ## [3.0.0-preview.27] - 2024-07-08 ### Added diff --git a/package.json b/package.json index 90beed0d4..35ac55dbd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Dopamine", "version": "3.0.0", - "versionSuffix": "preview.27", + "versionSuffix": "preview.28", "copyright": "Copyright Digimezzo Ⓒ 2014 - 2024", "description": "Audio player", "homepage": "https://github.com/digimezzo/dopamine", diff --git a/src/app/common/application/product-information.spec.ts b/src/app/common/application/product-information.spec.ts index dd6a3347a..d2bc949b4 100644 --- a/src/app/common/application/product-information.spec.ts +++ b/src/app/common/application/product-information.spec.ts @@ -21,7 +21,7 @@ describe('ProductInformation', () => { const applicationVersion: string = ProductInformation.applicationVersion; // Assert - expect(applicationVersion).toEqual('3.0.0-preview.27'); + expect(applicationVersion).toEqual('3.0.0-preview.28'); }); });