Skip to content

Commit dfdaaa4

Browse files
committed
Version 0.8.9.30 (0.9-beta27)
1 parent f57cc54 commit dfdaaa4

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

Changelog

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2022-11-25 s-n-g
2+
* version 0.8.9.30 (0.9-beta27)
3+
* Adding a Desktop File
4+
* Adding Desktop Notifications
5+
* Adding --terminal and --terminal-param command line options
6+
* Adding --no-themes command line option
7+
* Fixing Windows uninstallation script
8+
* Fixing opening registers by name
9+
* Fixing ping command for BSD
10+
* The installation will fail if pip not found
11+
* Trying to restore windows title on exit (not for Windows)
12+
* URL will not overlap the title
13+
14+
115
2022-09-27 s-n-g
216
* version 0.8.9.28 (0.9-beta25)
317
* adding play next/previous station to global functions

README.html

+14
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,20 @@ <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+
2022-11-25 s-n-g
194+
* version 0.8.9.30 (0.9-beta27)
195+
* Adding a Desktop File
196+
* Adding Desktop Notifications
197+
* Adding --terminal and --terminal-param command line options
198+
* Adding --no-themes command line option
199+
* Fixing Windows uninstallation script
200+
* Fixing opening registers by name
201+
* Fixing ping command for BSD
202+
* The installation will fail if pip not found
203+
* Trying to restore windows title on exit (not for Windows)
204+
* URL will not overlap the title
205+
206+
193207
2022-09-27 s-n-g
194208
* version 0.8.9.28 (0.9-beta25)
195209
* adding play next/previous station to global functions

pyradio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" pyradio -- Console radio player. "
22

3-
version_info = (0, 8, 9, 29)
3+
version_info = (0, 8, 9, 30)
44

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

pyradio/radio.py

+1
Original file line numberDiff line numberDiff line change
@@ -5215,6 +5215,7 @@ def _play_previous_station(self):
52155215
self.refreshBody()
52165216

52175217
def _show_schedule_player_stop(self):
5218+
return
52185219
logger.error('_show_schedule_player_stop() !!!')
52195220
logger.error(self._last_played_station)
52205221
if self.player.isPlaying():

0 commit comments

Comments
 (0)