Skip to content

Commit d70d138

Browse files
committed
- version 0.9.3.11
- recovering from regression after addressing #249
1 parent 52b0a5b commit d70d138

File tree

7 files changed

+23
-4
lines changed

7 files changed

+23
-4
lines changed

Changelog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-08-30 s-n-g
2+
* version 0.9.3.11 (BUG FIX)
3+
* recovering from regression after addressing #249
4+
* updating docs
5+
16
2024-08-30 s-n-g
27
* version 0.9.3.10
38
* do not enable xdg compliant if user_config_dir is specified

docs/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
215215
<h2 id="changelog">Changelog <span style="padding-left: 10px;"><sup style="font-size: 50%"><a href="#" title="Go to top of the page">Top</a></sup></span></h2>
216216
<pre style="height: 200px;">
217217

218+
2024-08-30 s-n-g
219+
* version 0.9.3.11 (BUG FIX)
220+
* recovering from regression after addressing #249
221+
* updating docs
222+
218223
2024-08-30 s-n-g
219224
* version 0.9.3.10
220225
* do not enable xdg compliant if user_config_dir is specified

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyradio"
3-
version = "0.9.3.10"
3+
version = "0.9.3.11"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },

pyradio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
" pyradio -- Console radio player. "
33

4-
version_info = (0, 9, 3, 10)
4+
version_info = (0, 9, 3, 11)
55

66
# Set it to True if new stations have been
77
# added to the package's stations.csv

pyradio/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
''' This is PyRadio version this
1717
install.py was released for
1818
'''
19-
PyRadioInstallPyReleaseVersion = '0.9.3.10'
19+
PyRadioInstallPyReleaseVersion = '0.9.3.11'
2020

2121
import locale
2222
locale.setlocale(locale.LC_ALL, "")

pyradio/radio.py

+9
Original file line numberDiff line numberDiff line change
@@ -6036,6 +6036,15 @@ def keypress(self, char):
60366036
# # logger.error('\n\nbackup params\n{}\n\n'.format(self._cnf.backup_player_params))
60376037
# if char == curses.KEY_RESIZE:
60386038
# logger.error('\n\nRESIZE\n\n')
6039+
if char in (curses.KEY_RESIZE, ):
6040+
self._i_am_resizing = True
6041+
self._normal_mode_resize()
6042+
if not self._limited_width_mode:
6043+
if not self._limited_height_mode:
6044+
self._do_display_notify()
6045+
self._i_am_resizing = False
6046+
return
6047+
60396048
self._curses_key_resize = char == curses.KEY_RESIZE
60406049

60416050
if self._system_asked_to_terminate:

pyradio/win.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
https://sourceforge.net/projects/mpv-player-windows/files/latest/download
3939
'''
4040
zurl = [
41-
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240602-git-df166c1.7z/download',
41+
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240825-git-cb4fdb5.7z/download',
4242
'https://sourceforge.net/projects/mplayerwin/files/MPlayer-MEncoder/r38151/mplayer-svn-38151-x86_64.7z/download'
4343
]
4444

0 commit comments

Comments
 (0)