release 1.4.0
This commit is contained in:
parent
c14941f896
commit
b6ddba1baa
6 changed files with 38 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
8
metadata/en-US/changelogs/101.txt
Normal file
8
metadata/en-US/changelogs/101.txt
Normal 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.
|
8
metadata/en-US/changelogs/102.txt
Normal file
8
metadata/en-US/changelogs/102.txt
Normal 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.
|
8
metadata/en-US/changelogs/103.txt
Normal file
8
metadata/en-US/changelogs/103.txt
Normal 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.
|
|
@ -68,7 +68,15 @@ class MyApp extends StatelessWidget {
|
|||
},
|
||||
},
|
||||
localizationsDelegates: L10n.localizationsDelegates,
|
||||
supportedLocales: L10n.supportedLocales,
|
||||
supportedLocales: const <Locale>[
|
||||
Locale('en'),
|
||||
Locale('de'),
|
||||
Locale('ca'),
|
||||
Locale('nb'),
|
||||
Locale('es'),
|
||||
Locale('ru'),
|
||||
Locale('uk')
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue