Skip to content

Commit 4a73f63

Browse files
committed
version 0.9.3.11.20
1 parent 6b1f32e commit 4a73f63

File tree

9 files changed

+25
-29
lines changed

9 files changed

+25
-29
lines changed

Changelog

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
2025-09-19 s-n-g
2-
* version 0.9.3.11.21 - 0.9.3.12-beta21
3-
* fixing [BUG] Inconsistency with RadioBrowser Config's vertical
4-
navigation keybindings (j/k) - #309
5-
* updating docs including "update title logging directory info in
6-
pyradio.1" #308
7-
* localized keyboard setting is actually being saved
8-
* updating mpv windows download link
9-
10-
2025-09-19 s-n-g
1+
2025-09-23 s-n-g
112
* version 0.9.3.11.20 - 0.9.3.12-beta20
123
* adding error messages for charset-normalizer module not found (#305)
134
* fixing #307 - [BUG] TypeError: string indices must be integers, not 'str'
5+
* fixing a bug that would lead to a crash when trying to display the
6+
"Player Extra Parameters" (def. key "Z")
7+
* updating docs including "update title logging directory info in
8+
pyradio.1" #308
9+
* fixing [BUG] Inconsistency with RadioBrowser Config's vertical
10+
navigation keybindings (j/k) - #309
11+
* localized keyboard setting is actually being saved
12+
* localized keyboard now works on Windows
13+
* enabling include-package-data and setuptools-scm in pyproject.toml
1414
* fix(resources): support running from zip/wheel via importlib.resources
1515
This makes PyRadio fully functional even when distributed as a wheel/zip
16-
* enabling include-package-data and setuptools-scm in pyproject.toml
1716
* updating mpv windows download link
1817

1918
2025-09-19 s-n-g

docs/index.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -196,22 +196,21 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
196196
<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>
197197
<pre style="height: 200px;">
198198

199-
2025-09-19 s-n-g
200-
* version 0.9.3.11.21 - 0.9.3.12-beta21
201-
* fixing [BUG] Inconsistency with RadioBrowser Config's vertical
202-
navigation keybindings (j/k) - #309
203-
* updating docs including "update title logging directory info in
204-
pyradio.1" #308
205-
* localized keyboard setting is actually being saved
206-
* updating mpv windows download link
207-
208-
2025-09-19 s-n-g
199+
2025-09-23 s-n-g
209200
* version 0.9.3.11.20 - 0.9.3.12-beta20
210201
* adding error messages for charset-normalizer module not found (#305)
211202
* fixing #307 - [BUG] TypeError: string indices must be integers, not 'str'
203+
* fixing a bug that would lead to a crash when trying to display the
204+
"Player Extra Parameters" (def. key "Z")
205+
* updating docs including "update title logging directory info in
206+
pyradio.1" #308
207+
* fixing [BUG] Inconsistency with RadioBrowser Config's vertical
208+
navigation keybindings (j/k) - #309
209+
* localized keyboard setting is actually being saved
210+
* localized keyboard now works on Windows
211+
* enabling include-package-data and setuptools-scm in pyproject.toml
212212
* fix(resources): support running from zip/wheel via importlib.resources
213213
This makes PyRadio fully functional even when distributed as a wheel/zip
214-
* enabling include-package-data and setuptools-scm in pyproject.toml
215214
* updating mpv windows download link
216215

217216
2025-09-19 s-n-g

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyradio"
3-
version = "0.9.3.11.19"
3+
version = "0.9.3.11.20"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },

pyradio/__init__.py

Lines changed: 1 addition & 1 deletion
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, 11, 19)
4+
version_info = (0, 9, 3, 11, 20)
55

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

pyradio/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,7 @@ def get_cached_icon_path(cache_dir, station_name, icon_url):
12821282
"""
12831283
# Old filename (based on station name)
12841284
old_filename = f"{station_name.replace(' ', '_')}."
1285-
ext = 'jpg' if icon_url.endswith('.jpg', '.jpeg') else 'png'
1285+
ext = 'jpg' if icon_url.endswith(('.jpg', '.jpeg')) else 'png'
12861286
path1 = join(cache_dir, old_filename + ext)
12871287

12881288
# New filename (based on icon URL hash)

pyradio/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2089,7 +2089,6 @@ def get_pyradio_version(self):
20892089
# self.info += '({})'.format(self._distro)
20902090
return ret
20912091

2092-
20932092
def remove_remote_control_server_report_file(self):
20942093
if path.exists(self.remote_control_server_report_file):
20952094
try:

pyradio/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
''' This is PyRadio version this
1818
install.py was released for
1919
'''
20-
PyRadioInstallPyReleaseVersion = '0.9.3.11.19'
20+
PyRadioInstallPyReleaseVersion = '0.9.3.11.20'
2121

2222
locale.setlocale(locale.LC_ALL, "")
2323

pyradio/radio.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5213,7 +5213,6 @@ def _check_to_open_playlist(self, a_url=None):
52135213
self._open_playlist(a_url)
52145214

52155215
def _normal_mode_resize(self):
5216-
logger.error('\n\nRESET\n\n')
52175216
if platform.startswith('win'):
52185217
curses.resize_term(0, 0)
52195218
try:

pyradio/win.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
https://sourceforge.net/projects/mpv-player-windows/files/latest/download
4747
'''
4848
zurl = [
49-
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20251012-git-ad59ff1.7z/download',
49+
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20251019-git-233e896.7z/download',
5050
'https://sourceforge.net/projects/mplayerwin/files/MPlayer-MEncoder/r38151/mplayer-svn-38151-x86_64.7z/download'
5151
]
5252

0 commit comments

Comments
 (0)