Skip to content

Commit 8a1ac98

Browse files
committed
increment to version 0.4.0
1 parent 5d2b803 commit 8a1ac98

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

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

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

15+
## 0.4.0 - 2019-01-26
16+
**Added**
17+
* Added support for playback with mpv as an alternative to VLC.
18+
* Added foundational support for displaying metadata in menus (i.e. download
19+
status) - Thanks @nbastin!
20+
* Added support for background transparency (if available on your terminal
21+
emulator) - Thanks @aneum7!
22+
* Added an option for disabling vertical bars/borders between menus.
23+
24+
**Fixed**
25+
* Fixed an issue where the client would attempt to download remote media while
26+
offline - Thanks @nbastin!
27+
* Fixed an issue where the client would sometimes break your config while
28+
trying to migrate items with blank values.
29+
* Prevented crashing on some download errors; instead, a status/error message
30+
is displayed - Thanks @nbastin!
31+
* Improved wrapping support for CJK text - Thanks @Rand01ph!
32+
* Updated Requests version in response to CVE-2018-18074.
33+
34+
1535
## 0.3.1 - 2018-09-15
1636
**Fixed**
1737
* Fixed an issue where config files would not properly migrate when a new

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ $ sudo python setup.py install
3333

3434
Running castero requires the following external dependencies:
3535

36-
* vlc >= 2.2.3
37-
36+
* **One** of the following media players:
37+
* vlc >= 2.2.3
38+
* mpv and libmpv
39+
3840
## Usage
3941

4042
After installing castero, it can be run with simply:

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 curses"
44
__author__ = "Jake Robertson"
55
__author_email__ = "jake@faltro.com"
6-
__version__ = "0.3.1"
7-
__date__ = "2018-09-15"
6+
__version__ = "0.4.0"
7+
__date__ = "2019-01-26"
88
__copyright__ = "Copyright (c) 2018 Jake Robertson"
99
__license__ = "MIT License"
1010
__url__ = "https://github.com/xgi/castero"

0 commit comments

Comments
 (0)