diff --git a/CHANGELOG.md b/CHANGELOG.md index 9235d6c9..092c0b21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# v2.3.0 + +### New +- Playback Cache Support. So unfinished playlist and tracks remains cached & starts automatically when application is launched again +- Signed Android Application so now longer need to uninstall the old version for installing the new one +- OS Media controls for Linux. Keyboard media keys now work in Linux +- New better, consistent & predictable Audio engine with proper event firing support (https://github.com/KRTirtho/spotube/pull/131) +- Custom Lyrics delay time. Can be used to delay negative amount of time too +- Playback Queue View support. Currently playing tracks or playlist can be viewed or changed from it or for doing other actions too (https://github.com/KRTirtho/spotube/issues/126) +- Android SeekBar support in Notification Panel & Lock Screen +- New Blur background design adapted to multiple components including Floating Player, Player View & Lyrics Tab +- New HighContrast Color Scheme addition which reduces battery consumption on OLED or AMOLED display devices (https://github.com/KRTirtho/spotube/issues/137) + + +### Improved +- Loading screens & animations. Now uses Skeleton Loading +- Playlist & Album Pages now show Album Art & extra metadata as Header with vibrant gradient background in a Sliver +- Playback is now more consistent & the API is simpler. Also its the single source of truth for AudioPlayback instead of the AudioServiceHandler +- Android Statusbar background color is now adaptive & less glitchy +- Home Genre playlists can be scrolled horizontally by dragging with mouse even in Desktop edition +- Track match Cache support for previously played tracks. This dramatically reduces track change latency & load on the YouTube search engine too + +### Bug Fixes +- API rate limits inside TrackTile for multiple Follow queries at once +- Player doesn't stop when Application is exits or closed +- First Track of Playlist doesn't load sometimes +- Download Button doesn't show done symbol when track is already saved (https://github.com/KRTirtho/spotube/issues/138) +- Downloaded Music is 0kb sized when lyrics are downloaded alongside (https://github.com/KRTirtho/spotube/issues/122) + # v2.2.1 ### Improved diff --git a/lib/components/Settings/About.dart b/lib/components/Settings/About.dart index a4406c43..fafb3362 100644 --- a/lib/components/Settings/About.dart +++ b/lib/components/Settings/About.dart @@ -26,7 +26,7 @@ class About extends HookWidget { final info = usePackageInfo( appName: "Spotube", packageName: "oss.krtirtho.Spotube", - version: "2.2.1"); + version: "2.3.0"); return ListTile( title: const Text("About Spotube"), diff --git a/pubspec.yaml b/pubspec.yaml index 85fc1678..4b8953e3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.2.1+11 +version: 2.3.0+12 environment: sdk: ">=2.15.1 <3.0.0"