diff --git a/CHANGELOG.md b/CHANGELOG.md index 776881b..00f37e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Tsacdop Changelog +## v0.4.8 + +Release date 2020/7/25 + +### New features + +* Filter in podcast detail page, you can also hide listened episodes. +* Search result ui improved, you can see more info for result. +* Update audio service to latest version. +* Support fast forward seconds and rewind seconds costomize. +* Add Franch language support(beta). +* Add translators in about page. + +### Bugs fixed + +* Icon issue on below android 8 devices. + +### Minor change + +* Download button ui improved. +* Title changed to scrollable in episode detail page. +* Real dark theme improved. +* Add dot indicator in popup menu. +* Tap logo in homepage to toggle theme. + ## v0.4.7 Release date 2020/7/18 diff --git a/lib/home/about.dart b/lib/home/about.dart index 221395b..fddb271 100644 --- a/lib/home/about.dart +++ b/lib/home/about.dart @@ -264,7 +264,7 @@ class AboutApp extends StatelessWidget { ), //Spacer(), Padding( - padding: EdgeInsets.symmetric(vertical: 50), + padding: EdgeInsets.symmetric(vertical: 10), ), Container( height: 50, diff --git a/lib/state/audio_state.dart b/lib/state/audio_state.dart index c31da99..8a92a5a 100644 --- a/lib/state/audio_state.dart +++ b/lib/state/audio_state.dart @@ -555,10 +555,9 @@ class AudioPlayerNotifier extends ChangeNotifier { _stopOnComplete = false; _startSleepTimer = false; _switchValue = 0; - //_playerRunning = false; AudioService.stop(); notifyListeners(); - AudioService.disconnect(); + // AudioService.disconnect(); }); } else if (_sleepTimerMode == SleepTimerMode.endOfEpisode) { _stopOnComplete = true; diff --git a/pubspec.yaml b/pubspec.yaml index 0baed91..2c1aedb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: tsacdop description: An easy-use podacasts player. -version: 0.4.8+24 +version: 0.4.8+25 environment: sdk: ">=2.6.0 <3.0.0"