Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz-weber committed Jul 9, 2023
1 parent c14941f commit b6ddba1
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 8 additions & 0 deletions metadata/en-US/changelogs/101.txt
Original file line number Diff line number Diff line change
@@ -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 changes: 8 additions & 0 deletions metadata/en-US/changelogs/102.txt
Original file line number Diff line number Diff line change
@@ -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 changes: 8 additions & 0 deletions metadata/en-US/changelogs/103.txt
Original file line number Diff line number Diff line change
@@ -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.
10 changes: 9 additions & 1 deletion src/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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')
],
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b6ddba1

Please sign in to comment.