diff --git a/fastlane/metadata/android/en-US/changelogs/65.txt b/fastlane/metadata/android/en-US/changelogs/65.txt new file mode 100644 index 000000000..c4eb528d9 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/65.txt @@ -0,0 +1,9 @@ +Bug fixes + +- Fixed user playlists issues + +Enhancements + +- Improved user playlists page +- Added confirmation dialog before removing playlist +- Made various quality and performance improvements for app stability and speed \ No newline at end of file diff --git a/lib/API/musify.dart b/lib/API/musify.dart index 1bf9dccb3..6c1d7494b 100644 --- a/lib/API/musify.dart +++ b/lib/API/musify.dart @@ -155,7 +155,7 @@ void removeUserPlaylist(String playlistId) { addOrUpdateData('user', 'playlists', userPlaylists); } -void removeUserCustomPlaylist(dynamic playlist){ +void removeUserCustomPlaylist(dynamic playlist) { userCustomPlaylists.remove(playlist); addOrUpdateData('user', 'customPlaylists', userCustomPlaylists); } diff --git a/lib/API/version.dart b/lib/API/version.dart index ab12831f3..fc4fae891 100644 --- a/lib/API/version.dart +++ b/lib/API/version.dart @@ -1 +1 @@ -const appVersion = '6.5.0'; +const appVersion = '6.5.1'; diff --git a/pubspec.yaml b/pubspec.yaml index b766db74f..7ca2c4a32 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ repository: https://github.com/gokadzev/Musify issue_tracker: https://github.com/gokadzev/Musify/issues publish_to: 'none' -version: 6.5.0+64 # run update.sh after changing the version +version: 6.5.1+65 # run update.sh after changing the version environment: sdk: '>=3.1.0 <4.0.0'