From 9fd9a7cf0ee3f6c8501aeae74a4597d224aa54a2 Mon Sep 17 00:00:00 2001 From: Jake Robertson Date: Sun, 26 Jul 2020 17:44:01 -0400 Subject: [PATCH] increment to version 0.8.1 --- CHANGELOG.md | 19 +++++++++++++++++++ castero/__init__.py | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d38cf04..5b104ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,25 @@ Version listings include the following sections, if applicable: See also . +## 0.8.1 - 2020-07-26 +**Added** +* Added the `e` key to execute a system command on an episode. Command can +be configured with the `execute_command` option. +* Added volume control keybinds. +* Added config options to use a proxy. + +**Changed** +* Made the help menu scrollable. +* Made separate keybinds for saving/deleting episodes for offline +playback (`s` and `x` by default). Existing configs will be migrated. + +**Fixed** +* Fixed an issue where feeds would, on some systems, not be displayed in order. +* Fixed poor UI performance when reloading feeds. +* Fixed time/duration display not being properly justified - Thanks @buck10! +* Fixed an issue importing a certain structure of OPML subscriptions. +* Fixed an issue with episode IDs being reset when feeds are reloaded. + ## 0.8.0 - 2020-02-22 **Added** * Made database operations multi-threaded to improve performance, especially diff --git a/castero/__init__.py b/castero/__init__.py index 22c8798..9bced8b 100644 --- a/castero/__init__.py +++ b/castero/__init__.py @@ -3,8 +3,8 @@ __keywords__ = "podcast commandline terminal tui curses" __author__ = "Jake Robertson" __author_email__ = "jake@faltro.com" -__version__ = "0.8.0" -__date__ = "2020-02-22" +__version__ = "0.8.1" +__date__ = "2020-07-26" __copyright__ = "Copyright (c) 2018 Jake Robertson" __license__ = "MIT License" __url__ = "https://github.com/xgi/castero"