diff --git a/CHANGELOG.md b/CHANGELOG.md index abbb7815..25dac9d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.4] - 2026-01-04 + +### Fixed +- **Android 11 Storage Permission**: Fixed "Permission denied" error on Android 11 (API 30) devices + - Added `MANAGE_EXTERNAL_STORAGE` permission for Android 11-12 + - Shows explanation dialog before opening system settings + ## [2.0.3] - 2026-01-03 ### Added @@ -13,9 +20,6 @@ - **Search on Enter Only**: Removed auto-search debounce, now only searches when pressing Enter key (saves API calls) ### Fixed -- **Android 11 Storage Permission**: Fixed "Permission denied" error on Android 11 (API 30) devices - - Added `MANAGE_EXTERNAL_STORAGE` permission for Android 11-12 - - Shows explanation dialog before opening system settings - **Download Cancel**: Fixed cancelled downloads still completing in background and appearing in history. Cancelled files are now properly deleted. - **Search Keyboard Dismiss**: Fixed keyboard randomly dismissing and navigating back when starting to search - **Back Button During Search**: Back button now properly dismisses keyboard first before clearing search diff --git a/lib/constants/app_info.dart b/lib/constants/app_info.dart index f084280d..454bd5d4 100644 --- a/lib/constants/app_info.dart +++ b/lib/constants/app_info.dart @@ -1,8 +1,8 @@ /// App version and info constants /// Update version here only - all other files will reference this class AppInfo { - static const String version = '2.0.3'; - static const String buildNumber = '33'; + static const String version = '2.0.4'; + static const String buildNumber = '34'; static const String fullVersion = '$version+$buildNumber'; diff --git a/pubspec.yaml b/pubspec.yaml index 28575702..89dd9e81 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: spotiflac_android description: Download Spotify tracks in FLAC from Tidal, Qobuz & Amazon Music publish_to: 'none' -version: 2.0.3+33 +version: 2.0.4+34 environment: sdk: ^3.10.0