From 780fc97751beedd0b3a95dd7cdd727d8d8f4fe82 Mon Sep 17 00:00:00 2001 From: Spiros Georgaras Date: Sat, 27 Feb 2021 15:24:22 +0200 Subject: [PATCH] Version 0.8.8.4 (BUG FIX release) vlc on linux will not start muted (volume = 0) --- Changelog | 4 ++++ pyradio/__init__.py | 2 +- pyradio/player.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index f01a3c5d..13ec5e1c 100644 --- a/Changelog +++ b/Changelog @@ -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 diff --git a/pyradio/__init__.py b/pyradio/__init__.py index d1007f6c..e017e579 100644 --- a/pyradio/__init__.py +++ b/pyradio/__init__.py @@ -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: '' diff --git a/pyradio/player.py b/pyradio/player.py index f8ee3a09..fd79300f 100644 --- a/pyradio/player.py +++ b/pyradio/player.py @@ -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):