release 1.4.0

This commit is contained in:
Moritz Weber 2023-07-09 17:36:16 +02:00
parent c14941f896
commit b6ddba1baa
6 changed files with 38 additions and 5 deletions

View file

@ -1,13 +1,14 @@
## Unreleased ## 1.4
- Implemented an onboarding workflow. - Implemented an onboarding workflow.
- Implemented data export and import (#89) - Implemented data export and import (#89).
- Moved database to separate isolate for non-blocking operation - 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. - 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. - 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). - Fixed issue with unresponsive media buttons (#75).
- Added animations to currently playing page and queue page. - Added animations to currently playing page and queue page.
- Added initialization of two smartlists. - Added initialization of two smartlists.
- Added translations.
## 1.3.1 ## 1.3.1

View file

@ -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.

View file

@ -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.

View file

@ -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.

View file

@ -68,7 +68,15 @@ class MyApp extends StatelessWidget {
}, },
}, },
localizationsDelegates: L10n.localizationsDelegates, localizationsDelegates: L10n.localizationsDelegates,
supportedLocales: L10n.supportedLocales, supportedLocales: const <Locale>[
Locale('en'),
Locale('de'),
Locale('ca'),
Locale('nb'),
Locale('es'),
Locale('ru'),
Locale('uk')
],
); );
} }
} }

View file

@ -2,7 +2,7 @@ name: mucke
description: music player description: music player
publish_to: none publish_to: none
version: 1.3.1+9 version: 1.4.0+10
environment: environment:
sdk: ">=3.0.0 <4.0.0" sdk: ">=3.0.0 <4.0.0"