Skip to content

Commit 255acc1

Browse files
committed
- Version 0.8.9.6 (0.9-beta3)
- RadioBrowser History Management finalized - Fields' placement fixed in RadioBrowser Search Window - RadioBrowser man page added - Docs updated
1 parent be61272 commit 255acc1

11 files changed

+799
-261
lines changed

Changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2021-08-15
2+
* Version 0.8.9.6 (0.9-beta3)
3+
* RadioBrowser History Management finalized
4+
* Fields' placement fixed in RadioBrowser Search Window
5+
* RadioBrowser man page added
6+
* Docs updated
7+
18
2021-08-11
29
* Version 0.8.9.5 (0.9-beta2)
310
* Fixed a crash that would occur when searching for name only in

devel/build_install_pyradio

+8
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ function uninstall(){
8080
echo done
8181
echo -n '** Removing help files ... '
8282
sudo rm -f /usr/share/man/man1/pyradio.1.gz 2>/dev/null || sudo rm -f /usr/local/share/man/man1/pyradio.1.gz 2>/dev/null
83+
sudo rm -f /usr/share/man/man1/pyradio_rb.1.gz 2>/dev/null || sudo rm -f /usr/local/share/man/man1/pyradio_rb.1.gz 2>/dev/null
8384
echo done
8485
} || {
8586
echo -n '** Removing executable ... '
@@ -92,6 +93,7 @@ function uninstall(){
9293
rm -rf ~/.local/local/share/doc/pyradio 2>/dev/null
9394
fi
9495
rm -f ~/.local/share/man/man1/pyradio.1.gz 2>/dev/null
96+
rm -f ~/.local/share/man/man1/pyradio_rb.1.gz 2>/dev/null
9597
echo done
9698
}
9799
#set -x
@@ -142,7 +144,9 @@ cp ../*html usr/local/share/doc
142144
cp ../LICENCE usr/local/share/doc/copyright
143145
mkdir -p usr/local/share/man/man1
144146
cp ../pyradio.1 usr/local/share/man/man1/
147+
cp ../pyradio_rb.1 usr/local/share/man/man1/
145148
gzip usr/local/share/man/man1/pyradio.1
149+
gzip usr/local/share/man/man1/pyradio_rb.1
146150
sed -i "s/|version|/$cur_version/" DEBIAN/control
147151
cd ..
148152

@@ -271,6 +275,8 @@ python"${TO_PYTHON}" setup.py build && {
271275
sudo python"${TO_PYTHON}" setup.py install && {
272276
gzip -k pyradio.1
273277
sudo mv -f pyradio.1.gz /usr/share/man/man1 2>/dev/null || sudo mv -f pyradio.1.gz /usr/local/share/man/man1
278+
gzip -k pyradio_rb.1
279+
sudo mv -f pyradio_rb.1.gz /usr/share/man/man1 2>/dev/null || sudo mv -f pyradio_rb.1.gz /usr/local/share/man/man1
274280
DOC=/usr/share/doc/pyradio
275281
sudo mkdir "$DOC" 2>/dev/null
276282
if [ ! -d "$DOC" ];then
@@ -294,8 +300,10 @@ python"${TO_PYTHON}" setup.py build && {
294300
echo "***** installing for user..."
295301
python"${TO_PYTHON}" setup.py install --user && {
296302
gzip -k pyradio.1
303+
gzip -k pyradio_rb.1
297304
mkdir -p ~/.local/share/man/man1 2>/dev/null
298305
mv -f pyradio.1.gz ~/.local/share/man/man1 2>/dev/null || mv -f pyradio.1.gz ~/.local/local/share/man/man1
306+
mv -f pyradio_rb.1.gz ~/.local/share/man/man1 2>/dev/null || mv -f pyradio_rb.1.gz ~/.local/local/share/man/man1
299307
DOC=~/.local/share/doc/pyradio
300308
mkdir -p "$DOC" 2>/dev/null
301309
if [ ! -d "$DOC" ];then

pyradio.1

+124-107
Large diffs are not rendered by default.

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

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

0 commit comments

Comments
 (0)