diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d0e425..5373463 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,14 @@ -## Unreleased +## 1.4 - Implemented an onboarding workflow. -- Implemented data export and import (#89) -- Moved database to separate isolate for non-blocking operation +- Implemented data export and import (#89). +- Moved database to separate isolate for non-blocking operation. - Fixed bug with broken notification after calls (#68). Note: Existing users need to disable battery optimization for mucke. - Added localization for playlists widget on home page (#90). Note: Existing users can rename the title in the home page settings. - Fixed issue with unresponsive media buttons (#75). - Added animations to currently playing page and queue page. - Added initialization of two smartlists. +- Added translations. ## 1.3.1 diff --git a/metadata/en-US/changelogs/101.txt b/metadata/en-US/changelogs/101.txt new file mode 100644 index 0000000..6c3a97b --- /dev/null +++ b/metadata/en-US/changelogs/101.txt @@ -0,0 +1,8 @@ +- Implemented an onboarding workflow. +- Implemented data export and import. +- Fixed bug with broken notification after calls. Note: Existing users need to disable battery optimization for mucke. +- Added localization for playlists widget on home page. Note: Existing users can rename the title in the home page settings. +- Fixed issue with unresponsive media buttons. +- Added animations to currently playing page and queue page. +- Added initialization of two smartlists. +- Added translations. \ No newline at end of file diff --git a/metadata/en-US/changelogs/102.txt b/metadata/en-US/changelogs/102.txt new file mode 100644 index 0000000..6c3a97b --- /dev/null +++ b/metadata/en-US/changelogs/102.txt @@ -0,0 +1,8 @@ +- Implemented an onboarding workflow. +- Implemented data export and import. +- Fixed bug with broken notification after calls. Note: Existing users need to disable battery optimization for mucke. +- Added localization for playlists widget on home page. Note: Existing users can rename the title in the home page settings. +- Fixed issue with unresponsive media buttons. +- Added animations to currently playing page and queue page. +- Added initialization of two smartlists. +- Added translations. \ No newline at end of file diff --git a/metadata/en-US/changelogs/103.txt b/metadata/en-US/changelogs/103.txt new file mode 100644 index 0000000..6c3a97b --- /dev/null +++ b/metadata/en-US/changelogs/103.txt @@ -0,0 +1,8 @@ +- Implemented an onboarding workflow. +- Implemented data export and import. +- Fixed bug with broken notification after calls. Note: Existing users need to disable battery optimization for mucke. +- Added localization for playlists widget on home page. Note: Existing users can rename the title in the home page settings. +- Fixed issue with unresponsive media buttons. +- Added animations to currently playing page and queue page. +- Added initialization of two smartlists. +- Added translations. \ No newline at end of file diff --git a/src/lib/main.dart b/src/lib/main.dart index f5e48a6..fc0b68b 100644 --- a/src/lib/main.dart +++ b/src/lib/main.dart @@ -68,7 +68,15 @@ class MyApp extends StatelessWidget { }, }, localizationsDelegates: L10n.localizationsDelegates, - supportedLocales: L10n.supportedLocales, + supportedLocales: const [ + Locale('en'), + Locale('de'), + Locale('ca'), + Locale('nb'), + Locale('es'), + Locale('ru'), + Locale('uk') + ], ); } } diff --git a/src/pubspec.yaml b/src/pubspec.yaml index 0fc02a0..844dcf6 100644 --- a/src/pubspec.yaml +++ b/src/pubspec.yaml @@ -2,7 +2,7 @@ name: mucke description: music player publish_to: none -version: 1.3.1+9 +version: 1.4.0+10 environment: sdk: ">=3.0.0 <4.0.0"