Skip to content

Commit

Permalink
- Version 0.8.9.6 (0.9-beta3)
Browse files Browse the repository at this point in the history
- RadioBrowser History Management finalized
- Fields' placement fixed in RadioBrowser Search Window
- RadioBrowser man page added
- Docs updated
  • Loading branch information
s-n-g committed Aug 15, 2021
1 parent be61272 commit 255acc1
Show file tree
Hide file tree
Showing 11 changed files with 799 additions and 261 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2021-08-15
* 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

2021-08-11
* Version 0.8.9.5 (0.9-beta2)
* Fixed a crash that would occur when searching for name only in
Expand Down
8 changes: 8 additions & 0 deletions devel/build_install_pyradio
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ function uninstall(){
echo done
echo -n '** Removing help files ... '
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
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
echo done
} || {
echo -n '** Removing executable ... '
Expand All @@ -92,6 +93,7 @@ function uninstall(){
rm -rf ~/.local/local/share/doc/pyradio 2>/dev/null
fi
rm -f ~/.local/share/man/man1/pyradio.1.gz 2>/dev/null
rm -f ~/.local/share/man/man1/pyradio_rb.1.gz 2>/dev/null
echo done
}
#set -x
Expand Down Expand Up @@ -142,7 +144,9 @@ cp ../*html usr/local/share/doc
cp ../LICENCE usr/local/share/doc/copyright
mkdir -p usr/local/share/man/man1
cp ../pyradio.1 usr/local/share/man/man1/
cp ../pyradio_rb.1 usr/local/share/man/man1/
gzip usr/local/share/man/man1/pyradio.1
gzip usr/local/share/man/man1/pyradio_rb.1
sed -i "s/|version|/$cur_version/" DEBIAN/control
cd ..

Expand Down Expand Up @@ -271,6 +275,8 @@ python"${TO_PYTHON}" setup.py build && {
sudo python"${TO_PYTHON}" setup.py install && {
gzip -k pyradio.1
sudo mv -f pyradio.1.gz /usr/share/man/man1 2>/dev/null || sudo mv -f pyradio.1.gz /usr/local/share/man/man1
gzip -k pyradio_rb.1
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
DOC=/usr/share/doc/pyradio
sudo mkdir "$DOC" 2>/dev/null
if [ ! -d "$DOC" ];then
Expand All @@ -294,8 +300,10 @@ python"${TO_PYTHON}" setup.py build && {
echo "***** installing for user..."
python"${TO_PYTHON}" setup.py install --user && {
gzip -k pyradio.1
gzip -k pyradio_rb.1
mkdir -p ~/.local/share/man/man1 2>/dev/null
mv -f pyradio.1.gz ~/.local/share/man/man1 2>/dev/null || mv -f pyradio.1.gz ~/.local/local/share/man/man1
mv -f pyradio_rb.1.gz ~/.local/share/man/man1 2>/dev/null || mv -f pyradio_rb.1.gz ~/.local/local/share/man/man1
DOC=~/.local/share/doc/pyradio
mkdir -p "$DOC" 2>/dev/null
if [ ! -d "$DOC" ];then
Expand Down
231 changes: 124 additions & 107 deletions pyradio.1

Large diffs are not rendered by default.

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

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

0 comments on commit 255acc1

Please sign in to comment.