Skip to content

Commit

Permalink
Version 0.8.8.4 (BUG FIX release)
Browse files Browse the repository at this point in the history
vlc on linux will not start muted (volume = 0)
  • Loading branch information
s-n-g committed Feb 27, 2021
1 parent d189ae1 commit 780fc97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2021-02-27 s-n-g
* Fixing double click behavior (while in playback
double clicking to a different station will start it.
* vcl will not start muted (volume = 0)
2021-02-26 s-n-g
* Basic mouse support implemented
* Config option to enable mouse support added
Expand Down
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" pyradio -- Console radio player. "

version_info = (0, 8, 8, 3)
version_info = (0, 8, 8, 4)

# Application state:
# New stable version: ''
Expand Down
2 changes: 1 addition & 1 deletion pyradio/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -2106,7 +2106,7 @@ def _get_volume(self):
if self.WIN:
self._win_get_volume()
else:
self._sendCommand('voldown 0\n')
self._sendCommand('volume\n')
self.show_volume = True

def _no_mute_on_stop_playback(self):
Expand Down

0 comments on commit 780fc97

Please sign in to comment.