Skip to content

Commit 168d7c1

Browse files
committed
- Version 0.8.9.9
- Search history navigation will work with normal keys in addition to Control-key combinations (when a line editor does not have the focus) - When navigating to a new search term, in the RadioBrowser Search Window, the two main check boxes will always get the focus (makes it easier to navigate using normal keys) - Docs Updated
1 parent d878cd3 commit 168d7c1

14 files changed

+471
-110
lines changed

Changelog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2021-08-31 s-n-g
2+
* Version 0.8.9.9
3+
* Search history navigation will work with normal keys
4+
in addition to Control-key combinations (when a line
5+
editor does not have the focus)
6+
* When navigating to a new search term, in the RadioBrowser
7+
Search Window, the two main check boxes will always get
8+
the focus (makes it easier to navigate using normal keys)
9+
* Docs Updated
10+
111
2021-08-22 s-n-g
212
* Version 0.8.9.8 (0.9-beta5)
313
* Fixing RadioBrowser save pop up window

README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
130130
<li>MPV, MPlayer or VLC installed and in your path</li>
131131
</ul>
132132
<h2 id="installation">Installation <span style="padding-left: 10px;"><sup style="font-size: 50%"><a href="#" title="Go to top of the page">Top</a></sup></style></h2>
133-
<p>The best way to install <strong>PyRadio</strong> is via a distribution package, if one exists (e.g. <em>Arch Linux</em> and derivatives can install <a target="_blank" href="https://aur.archlinux.org/packages/pyradio-git/">pyradio-git</a> from AUR).</p>
133+
<p>The best way to install <strong>PyRadio</strong> is via a distribution package, if one exists (e.g. <em>Arch Linux</em> and derivatives can install <a target="_blank" href="https://aur.archlinux.org/packages/?K=pyradio">any of these packages</a> from the AUR).</p>
134134
<p>In any other case, and since <strong>PyRadio</strong> is currently not available via pip, you will have to <a href="build.html">build it from source</a>.</p>
135135
<h2 id="command-line-options">Command line options <span style="padding-left: 10px;"><sup style="font-size: 50%"><a href="#" title="Go to top of the page">Top</a></sup></style></h2>
136136
<pre>$ pyradio -h

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ and much more...
8383

8484
## Installation
8585

86-
The best way to install **PyRadio** is via a distribution package, if one exists (e.g. *Arch Linux* and derivatives can install [pyradio-git](https://aur.archlinux.org/packages/pyradio-git/) from AUR).
86+
The best way to install **PyRadio** is via a distribution package, if one exists (e.g. *Arch Linux* and derivatives can install [any of these packages](https://aur.archlinux.org/packages/?K=pyradio) from the AUR).
8787

8888
In any other case, and since **PyRadio** is currently not available via pip, you will have to [build it from source](build.md).
8989

@@ -364,7 +364,7 @@ This mode is designed to directly accept the "*?*" and "*\\*" characters (which
364364

365365
The *Line editor* supports the insertion of [CJK Unified Ideographs](https://en.wikipedia.org/wiki/CJK_Unified_Ideographs), as described on [CJK Unified Ideographs (Unicode block)](https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block)) also known as URO, abbreviation of Unified Repertoire and Ordering. These characters, although encoded as a single code-point (character), actually take up a 2-character space, when rendered on the terminal.
366366

367-
A depiction of the editor's behavior can be seen at this image:
367+
A depiction of the editor's behavior can be seen at this image:
368368

369369
![CJK Characters on Pyradio](https://members.hellug.gr/sng/pyradio/pyradio-editor.jpg)
370370

@@ -702,9 +702,9 @@ Then, the mouse can be used as follows:
702702

703703
**PyRadio** supports the following *Online radio directory services*:
704704

705-
- [RadioBrowser](https://www.radio-browser.info/)
705+
- [RadioBrowser](https://www.radio-browser.info/)
706706

707-
This is a community driven effort (like wikipedia) with the aim of collecting as many internet radio and TV stations as possible.
707+
This is a community driven effort (like wikipedia) with the aim of collecting as many internet radio and TV stations as possible.
708708

709709
Read more at [PyRadio RadioBrowser Implementation](radio-browser.md)
710710

devel/build_install_pyradio

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88
echo "
99
Available options:
1010
2 build using python v. 2.x
11-
-u uninstall pyradio
11+
-R remove (uninstall) pyradio
1212
--user user install (in ~/.local)
1313
1414
If no option is used, will build using Python 3
@@ -178,7 +178,7 @@ do
178178
do_debian
179179
exit
180180
;;
181-
-u)
181+
-R)
182182
uninstall
183183
exit
184184
;;

devel/pre-commit

+7-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,13 @@ do
104104
# convert images to links
105105
images_to_links "$out"
106106
if [ "$out" = "radio-browser.html" ];then
107-
sed -i -e 's/<sup>N/^N/' -e 's/<.sup>P/^P/' -e 's|N<strong>, </strong>\^P|N</strong>, <strong>^P|' "$out"
107+
sed -i -e 's/<sup>N/^N/' \
108+
-e 's/<.sup>P/^P/' \
109+
-e 's|N<strong>, </strong>\^P|N</strong>, <strong>^P|' \
110+
-e 's|<sup>X<strong>|^X</strong>|' \
111+
-e 's|<.strong>v<strong>|<strong>v</strong>|' \
112+
-e 's|<.strong><.sup>V<.strong>|<strong>^V</strong>|' \
113+
"$out"
108114
fi
109115
git add ${out}
110116
done

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

55
# Application state:
66
# New stable version: ''

0 commit comments

Comments
 (0)