From d70d13847f599b4f9638a0094e5ce7b54098ec98 Mon Sep 17 00:00:00 2001 From: Spiros Georgaras Date: Fri, 30 Aug 2024 15:07:30 +0300 Subject: [PATCH] - version 0.9.3.11 - recovering from regression after addressing #249 --- Changelog | 5 +++++ docs/index.html | 5 +++++ pyproject.toml | 2 +- pyradio/__init__.py | 2 +- pyradio/install.py | 2 +- pyradio/radio.py | 9 +++++++++ pyradio/win.py | 2 +- 7 files changed, 23 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index 722b4a0..0388e11 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +2024-08-30 s-n-g + * version 0.9.3.11 (BUG FIX) + * recovering from regression after addressing #249 + * updating docs + 2024-08-30 s-n-g * version 0.9.3.10 * do not enable xdg compliant if user_config_dir is specified diff --git a/docs/index.html b/docs/index.html index ed36c40..7b5bb5d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -215,6 +215,11 @@

Requirements Changelog Top

 
+2024-08-30 s-n-g
+    * version 0.9.3.11 (BUG FIX)
+    * recovering from regression after addressing #249
+    * updating docs
+
 2024-08-30 s-n-g
     * version 0.9.3.10
     * do not enable xdg compliant if user_config_dir is specified
diff --git a/pyproject.toml b/pyproject.toml
index 7fac9e7..f7ad595 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "pyradio"
-version = "0.9.3.10"
+version = "0.9.3.11"
 authors = [
   { name="Ben Dowling", email="ben.m.dowling@gmail.com" },
   { name="Spiros Georgaras", email="sng@hellug.gr" },
diff --git a/pyradio/__init__.py b/pyradio/__init__.py
index 5f35e06..74408d7 100644
--- a/pyradio/__init__.py
+++ b/pyradio/__init__.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 " pyradio -- Console radio player. "
 
-version_info = (0, 9, 3, 10)
+version_info = (0, 9, 3, 11)
 
 # Set it to True if new stations have been
 # added to the package's stations.csv
diff --git a/pyradio/install.py b/pyradio/install.py
index 6090399..3aa843a 100644
--- a/pyradio/install.py
+++ b/pyradio/install.py
@@ -16,7 +16,7 @@
 ''' This is PyRadio version this
     install.py was released for
 '''
-PyRadioInstallPyReleaseVersion = '0.9.3.10'
+PyRadioInstallPyReleaseVersion = '0.9.3.11'
 
 import locale
 locale.setlocale(locale.LC_ALL, "")
diff --git a/pyradio/radio.py b/pyradio/radio.py
index e22e714..9188e49 100644
--- a/pyradio/radio.py
+++ b/pyradio/radio.py
@@ -6036,6 +6036,15 @@ def keypress(self, char):
         # # logger.error('\n\nbackup params\n{}\n\n'.format(self._cnf.backup_player_params))
         # if char == curses.KEY_RESIZE:
         #     logger.error('\n\nRESIZE\n\n')
+        if char in (curses.KEY_RESIZE, ):
+            self._i_am_resizing = True
+            self._normal_mode_resize()
+            if not self._limited_width_mode:
+                if not self._limited_height_mode:
+                    self._do_display_notify()
+            self._i_am_resizing = False
+            return
+
         self._curses_key_resize = char == curses.KEY_RESIZE
 
         if self._system_asked_to_terminate:
diff --git a/pyradio/win.py b/pyradio/win.py
index a9b27e0..6bc1597 100644
--- a/pyradio/win.py
+++ b/pyradio/win.py
@@ -38,7 +38,7 @@
         https://sourceforge.net/projects/mpv-player-windows/files/latest/download
 '''
 zurl = [
-    'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240602-git-df166c1.7z/download',
+    'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240825-git-cb4fdb5.7z/download',
     'https://sourceforge.net/projects/mplayerwin/files/MPlayer-MEncoder/r38151/mplayer-svn-38151-x86_64.7z/download'
 ]