Skip to content

Commit 728752b

Browse files
committed
- version 0.9.3.11.12 - 0.9.3.12-beta12
- removing M_STATION_INFO_CHANGED, STATION_INFO_CHANGED_MODE and _print_station_info_change
1 parent 1cefe27 commit 728752b

File tree

8 files changed

+29
-30
lines changed

8 files changed

+29
-30
lines changed

Changelog

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
2025-05-06 s-n-g
1+
2025-05-15 s-n-g
2+
* version 0.9.3.11.12 - 0.9.3.12-beta12
3+
* implementing #291 - Don't stop playback when entering another
4+
playlist a config option (Continuous playback) has been added
5+
to help realize this feature
6+
* fixing #286 - Sorting Error
7+
* fixing #287 - Header Error
8+
* fixing build license warning
9+
* mpv reply will not stop being parsed when title found
10+
11+
2025-05-10 s-n-g
212
* version 0.9.3.11.11 - 0.9.3.12-beta11
313
* fixing a dict Key error that will make some stations fail - #284
414
* fixing an error that would render all player unusable on Windows - #282

docs/index.html

+11-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,17 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
190190
<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>
191191
<pre style="height: 200px;">
192192

193-
2025-05-06 s-n-g
193+
2025-05-15 s-n-g
194+
* version 0.9.3.11.12 - 0.9.3.12-beta12
195+
* implementing #291 - Don't stop playback when entering another
196+
playlist a config option (Continuous playback) has been added
197+
to help realize this feature
198+
* fixing #286 - Sorting Error
199+
* fixing #287 - Header Error
200+
* fixing build license warning
201+
* mpv reply will not stop being parsed when title found
202+
203+
2025-05-10 s-n-g
194204
* version 0.9.3.11.11 - 0.9.3.12-beta11
195205
* fixing a dict Key error that will make some stations fail - #284
196206
* fixing an error that would render all player unusable on Windows - #282

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.11.11"
3+
version = "0.9.3.11.12"
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, 11, 11)
4+
version_info = (0, 9, 3, 11, 12)
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
@@ -17,7 +17,7 @@
1717
''' This is PyRadio version this
1818
install.py was released for
1919
'''
20-
PyRadioInstallPyReleaseVersion = '0.9.3.11.11'
20+
PyRadioInstallPyReleaseVersion = '0.9.3.11.12'
2121

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

pyradio/messages_system.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -269,17 +269,9 @@ def set_text(self, parent, *args):
269269
),
270270

271271
'M_PLAYING_STATION_CHANGE_MODE': ('Station not available',
272-
r'''The station playing is not in the
273-
_______current playlist.
274-
275-
'''
276-
),
277-
278-
'M_STATION_INFO_CHANGED': ('Station Info Error',
279272
r'''
280-
Station info not available at this time,
281-
since the station playing is not in the
282-
current playlist.
273+
The station playing does not exist
274+
_____in the current playlist.
283275
284276
'''
285277
),

pyradio/radio.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,6 @@ def __init__(self, pyradio_config,
642642
self.ws.CLEAR_REGISTER_MODE: self._print_clear_register,
643643
self.ws.CLEAR_ALL_REGISTERS_MODE: self._print_clear_all_registers,
644644
self.ws.STATION_INFO_ERROR_MODE: self._print_station_info_error,
645-
self.ws.STATION_INFO_CHANGED_MODE: self._print_station_info_change,
646645
self.ws.PLAYING_STATION_CHANGED_ERROR_MODE: self._print_station_change_error,
647646
self.ws.STATION_INFO_MODE: self._show_station_info,
648647
self.ws.STATION_DATABASE_INFO_MODE: self._browser_station_info,
@@ -2722,7 +2721,6 @@ def connectionFailed(self):
27222721
self.detect_if_player_exited = False
27232722
if self.ws.operation_mode in (self.ws.STATION_INFO_MODE,
27242723
self.ws.STATION_DATABASE_INFO_MODE,
2725-
self.ws.STATION_INFO_CHANGED_MODE,
27262724
self.ws.STATION_INFO_ERROR_MODE):
27272725
self.ws.close_window()
27282726
old_playing = self.playing
@@ -3643,12 +3641,6 @@ def _print_station_change_error(self):
36433641
'M_PLAYING_STATION_CHANGE_MODE'
36443642
)
36453643

3646-
def _print_station_info_change(self):
3647-
self._open_simple_message_by_key_and_mode(
3648-
self.ws.STATION_INFO_CHANGED_MODE,
3649-
'M_STATION_INFO_CHANGED'
3650-
)
3651-
36523644
def _print_station_info_error(self):
36533645
self._open_simple_message_by_key_and_mode(
36543646
self.ws.STATION_INFO_ERROR_MODE,
@@ -4852,10 +4844,8 @@ def _show_config_window(self):
48524844
def _show_station_info_from_thread(self):
48534845
if self.ws.operation_mode in (
48544846
self.ws.STATION_INFO_MODE,
4855-
self.ws.STATION_INFO_CHANGED_MODE,
48564847
self.ws.STATION_INFO_ERROR_MODE):
48574848
if self.ws.operation_mode in (
4858-
self.ws.STATION_INFO_CHANGED_MODE,
48594849
self.ws.STATION_INFO_ERROR_MODE
48604850
):
48614851
self.ws.close_window()
@@ -4909,7 +4899,7 @@ def _show_station_info(self):
49094899
self._station_rename_from_info = False
49104900
self._messaging_win.set_a_message(
49114901
'M_STATION_INFO',
4912-
('Station Info', msg)
4902+
('Active Station Info', msg)
49134903
)
49144904
self._open_simple_message_by_key_and_mode(
49154905
self.ws.STATION_INFO_MODE,

pyradio/window_stack.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ class Window_Stack_Constants():
100100
FOREIGN_PLAYLIST_ASK_MODE = 300
101101
CONFIG_SAVE_ERROR_MODE = 303
102102
STATION_INFO_ERROR_MODE = 308
103-
STATION_INFO_CHANGED_MODE = 309
104-
PLAYING_STATION_CHANGED_ERROR_MODE = 310
103+
PLAYING_STATION_CHANGED_ERROR_MODE = 309
105104
PLAYLIST_CREATE_ERROR = 311
106105
WIN_VLC_NO_RECORD_MODE = 324
107106
KEYBOARD_CONFIG_ERROR_MODE = 325
@@ -158,7 +157,6 @@ class Window_Stack_Constants():
158157
STATION_INFO_MODE: 'STATION_INFO_MODE',
159158
STATION_DATABASE_INFO_MODE: 'STATION_DATABASE_INFO_MODE',
160159
STATION_INFO_ERROR_MODE: 'STATION_INFO_ERROR_MODE',
161-
STATION_INFO_CHANGED_MODE: 'STATION_INFO_CHANGED_MODE',
162160
PLAYING_STATION_CHANGED_ERROR_MODE: 'PLAYING_STATION_CHANGED_ERROR_MODE',
163161
CREATE_PLAYLIST_MODE: 'CREATE_PLAYLIST_MODE',
164162
RENAME_PLAYLIST_MODE: 'RENAME_PLAYLIST_MODE',
@@ -238,7 +236,6 @@ class Window_Stack_Constants():
238236
PLAYLIST_NOT_FOUND_ERROR_MODE,
239237
SERVICE_CONNECTION_ERROR,
240238
STATION_INFO_ERROR_MODE,
241-
STATION_INFO_CHANGED_MODE,
242239
PLAYING_STATION_CHANGED_ERROR_MODE,
243240
PLAYLIST_CREATE_ERROR,
244241
UNNAMED_REGISTER_MODE,

0 commit comments

Comments
 (0)