Skip to content

Commit 48c06fe

Browse files
committed
- version 0.8.9.34 (0.9-beta31)
- fixing a line editor crash - adding \s to help (page 5)
1 parent afbeaa4 commit 48c06fe

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

Changelog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2023-01-10 s-n-g
2+
* version 0.8.9.34 (0.9-beta31)
3+
* fixing a line editor crash
4+
* adding \s to help (page 5)
5+
16
2023-01-10 s-n-g
27
* version 0.8.9.33 (0.9-beta30)
38
* adding Remote Control Server

README.html

+5
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
192192
<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>
193193
<pre style="height: 200px;">
194194

195+
2023-01-10 s-n-g
196+
* version 0.8.9.34 (0.9-beta31)
197+
* fixing a line editor crash
198+
* adding \s to help (page 5)
199+
195200
2023-01-10 s-n-g
196201
* version 0.8.9.33 (0.9-beta30)
197202
* adding Remote Control Server

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, 33)
3+
version_info = (0, 8, 9, 34)
44

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

pyradio/edit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def _show_title(self):
501501
self._win.chgat(0, x, 4, curses.color_pair(12))
502502
else:
503503
self._win.chgat(0, x, 2, curses.color_pair(12))
504-
self._refresh()
504+
# self._refresh()
505505

506506
def _show_buttons(self):
507507
sid = 3

pyradio/radio.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2517,7 +2517,9 @@ def _show_main_help_page_4(self, from_keyboard=False):
25172517
reset_metrics=False)
25182518

25192519
def _show_main_help_page_5(self, from_keyboard=False):
2520-
txt = '''!Titles Logger
2520+
txt = '''!Remote Control Server
2521+
\s |Start/Stop the |Server|.
2522+
!Titles Logger
25212523
W |Toggle Logger on/off
25222524
w |Tag a station as liked
25232525
!Windows Only

0 commit comments

Comments
 (0)