diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c7d98b..81080b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Tsacdop Changelog +## 0.5.0 + +Release date 2020/10/13 + +### New fewtures + +* Support multi select on recent and favorite tab. +* Select all/ select before/ select after. +* Option to delete episode download file when played. +* OPtion to mark as listened after skipped. + +### Bug fixed + +* Feed pubdate parse error. + +### Minor changes + +* Single colume layout update. +* About page UI update. +* More smooth animation when open podcast detail page. + ## 0.4.20 Release date 2020/10/3 diff --git a/lib/home/about.dart b/lib/home/about.dart index c9fed51..ddd3de7 100644 --- a/lib/home/about.dart +++ b/lib/home/about.dart @@ -5,7 +5,7 @@ import 'package:line_icons/line_icons.dart'; import '../util/custom_widget.dart'; import '../util/extension_helper.dart'; -const String version = '0.4.20'; +const String version = '0.5.0'; class AboutApp extends StatefulWidget { @override diff --git a/lib/settings/play_setting.dart b/lib/settings/play_setting.dart index 8b23348..1487c24 100644 --- a/lib/settings/play_setting.dart +++ b/lib/settings/play_setting.dart @@ -294,7 +294,7 @@ class _PlaySettingState extends State { contentPadding: EdgeInsets.only(left: 70.0, right: 20, bottom: 10), title: Text(s.settingsMarkListenedSkip), - subtitle: Text(s.settingsManageDownloadDes), + subtitle: Text(s.settingsMarkListenedSkipDes), trailing: Transform.scale( scale: 0.9, child: Switch( diff --git a/pubspec.yaml b/pubspec.yaml index 598a9ea..62109ad 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: tsacdop description: An open source podacasts player. -version: 0.4.20+37 +version: 0.5.0+38 environment: sdk: ">=2.6.0 <3.0.0"