Skip to content

Commit

Permalink
- Version 0.8.9.9
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
s-n-g committed Aug 31, 2021
1 parent d878cd3 commit 168d7c1
Show file tree
Hide file tree
Showing 14 changed files with 471 additions and 110 deletions.
10 changes: 10 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2021-08-31 s-n-g
* 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

2021-08-22 s-n-g
* Version 0.8.9.8 (0.9-beta5)
* Fixing RadioBrowser save pop up window
Expand Down
2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
<li>MPV, MPlayer or VLC installed and in your path</li>
</ul>
<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>
<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>
<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>
<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>
<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>
<pre>$ pyradio -h
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ and much more...

## Installation

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).
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).

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

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

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.

A depiction of the editor's behavior can be seen at this image:
A depiction of the editor's behavior can be seen at this image:

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

Expand Down Expand Up @@ -702,9 +702,9 @@ Then, the mouse can be used as follows:

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

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions devel/build_install_pyradio
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi
echo "
Available options:
2 build using python v. 2.x
-u uninstall pyradio
-R remove (uninstall) pyradio
--user user install (in ~/.local)
If no option is used, will build using Python 3
Expand Down Expand Up @@ -178,7 +178,7 @@ do
do_debian
exit
;;
-u)
-R)
uninstall
exit
;;
Expand Down
8 changes: 7 additions & 1 deletion devel/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,13 @@ do
# convert images to links
images_to_links "$out"
if [ "$out" = "radio-browser.html" ];then
sed -i -e 's/<sup>N/^N/' -e 's/<.sup>P/^P/' -e 's|N<strong>, </strong>\^P|N</strong>, <strong>^P|' "$out"
sed -i -e 's/<sup>N/^N/' \
-e 's/<.sup>P/^P/' \
-e 's|N<strong>, </strong>\^P|N</strong>, <strong>^P|' \
-e 's|<sup>X<strong>|^X</strong>|' \
-e 's|<.strong>v<strong>|<strong>v</strong>|' \
-e 's|<.strong><.sup>V<.strong>|<strong>^V</strong>|' \
"$out"
fi
git add ${out}
done
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" pyradio -- Console radio player. "

version_info = (0, 8, 9, 8)
version_info = (0, 8, 9, 9)

# Application state:
# New stable version: ''
Expand Down
Loading

0 comments on commit 168d7c1

Please sign in to comment.