Skip to content

Commit 780fc97

Browse files
committed
Version 0.8.8.4 (BUG FIX release)
vlc on linux will not start muted (volume = 0)
1 parent d189ae1 commit 780fc97

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2021-02-27 s-n-g
2+
* Fixing double click behavior (while in playback
3+
double clicking to a different station will start it.
4+
* vcl will not start muted (volume = 0)
15
2021-02-26 s-n-g
26
* Basic mouse support implemented
37
* Config option to enable mouse support added

pyradio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" pyradio -- Console radio player. "
22

3-
version_info = (0, 8, 8, 3)
3+
version_info = (0, 8, 8, 4)
44

55
# Application state:
66
# New stable version: ''

pyradio/player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,7 @@ def _get_volume(self):
21062106
if self.WIN:
21072107
self._win_get_volume()
21082108
else:
2109-
self._sendCommand('voldown 0\n')
2109+
self._sendCommand('volume\n')
21102110
self.show_volume = True
21112111

21122112
def _no_mute_on_stop_playback(self):

0 commit comments

Comments
 (0)