Skip to content

Commit 057ba7f

Browse files
committed
increment to version 0.9.1
1 parent 587cdc1 commit 057ba7f

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,30 @@ Version listings include the following sections, if applicable:
1212

1313
See also <https://github.com/xgi/castero/releases>.
1414

15+
## 0.9.1 - 2021-03-23
16+
**Added**
17+
* @tistatos - Playback position is saved/restored when restarting the
18+
client.
19+
* @tistatos - Created add_only_unplayed_episodes config option for
20+
playing/queueing a feed.
21+
* @DGambrinus - Maintain playback speed when playing different episodes.
22+
23+
**Changed**
24+
* To improve performance, the client now (by default) uses an in-memory
25+
database, which is only saved to disk when the client is closed. This
26+
can be disabled with the restrict_memory_usage config option.
27+
* Improved the performance of importing subscriptions (especially those
28+
with many feeds).
29+
30+
**Fixed**
31+
* @tistatos - Fixed episode data not being deleted when removing feeds.
32+
* Fixed player volume occasionally not being retained when switching
33+
between episodes.
34+
* Fixed exception with terminals that don't support an invisible cursor
35+
mode.
36+
* Fixed reload operation failing when reloading one feed would fail in a
37+
specific way.
38+
1539
## 0.8.2 - 2020-08-23
1640
**Added**
1741
* Added a config option for the default playback volume.

castero/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
__keywords__ = "podcast commandline terminal tui curses"
44
__author__ = "Jake Robertson"
55
__author_email__ = "jake@faltro.com"
6-
__version__ = "0.8.2"
7-
__date__ = "2020-08-23"
6+
__version__ = "0.9.1"
7+
__date__ = "2021-03-23"
88
__copyright__ = "Copyright (c) 2018 Jake Robertson"
99
__license__ = "MIT License"
1010
__url__ = "https://github.com/xgi/castero"

0 commit comments

Comments
 (0)