Skip to content

Commit 5ae2e07

Browse files
committed
- version 0.9.3.11.13 - 0.9.3.13-beta12
- fixing #289 - sing < or > results in UnboundLocalError - updating MPV download link for Windows
1 parent 679f8ff commit 5ae2e07

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-05-15 s-n-g
2+
* version 0.9.3.11.13 - 0.9.3.13-beta12
3+
* fixing #289 - sing < or > results in UnboundLocalError
4+
* updating MPV download link for Windows
5+
16
2025-05-15 s-n-g
27
* version 0.9.3.11.12 - 0.9.3.12-beta12
38
* implementing #291 - Don't stop playback when entering another

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.12"
3+
version = "0.9.3.11.13"
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, 12)
4+
version_info = (0, 9, 3, 11, 13)
55

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

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.12'
20+
PyRadioInstallPyReleaseVersion = '0.9.3.11.13'
2121

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

pyradio/radio.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10515,8 +10515,8 @@ def _show_stations_history_playlist_modified(self):
1051510515
callback_function=self.refreshBody)
1051610516

1051710517
def _show_no_station_history_notification(self):
10518+
msg = M_STRINGS['hist-empty']
1051810519
if self._limited_height_mode or self._limited_width_mode:
10519-
msg = M_STRINGS['hist-empty']
1052010520
if self.player.isPlaying():
1052110521
self.log.write(msg_id=STATES.ANY, msg=msg)
1052210522
self.player.threadUpdateTitle()
@@ -10526,8 +10526,8 @@ def _show_no_station_history_notification(self):
1052610526
self._show_delayed_notification('___' + msg + '___')
1052710527

1052810528
def _show_first_station_history_notification(self):
10529+
msg = M_STRINGS['hist-first']
1052910530
if self._limited_height_mode or self._limited_width_mode:
10530-
msg = M_STRINGS['hist-first']
1053110531
if self.player.isPlaying():
1053210532
self.log.write(msg_id=STATES.ANY, msg=msg)
1053310533
self.player.threadUpdateTitle()
@@ -10537,8 +10537,8 @@ def _show_first_station_history_notification(self):
1053710537
self._show_delayed_notification('___' + msg + '___')
1053810538

1053910539
def _show_last_station_history_notification(self):
10540+
msg = M_STRINGS['hist-last']
1054010541
if self._limited_height_mode or self._limited_width_mode:
10541-
msg = M_STRINGS['hist-last']
1054210542
if self.player.isPlaying():
1054310543
self.log.write(msg_id=STATES.ANY, msg=msg)
1054410544
self.player.threadUpdateTitle()

pyradio/win.py

Lines changed: 1 addition & 1 deletion
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-20250504-git-d702e5f.7z/download',
41+
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20250518-git-817372a.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)