Skip to content

Commit 0e484c1

Browse files
committed
version 0.9.2.21
1 parent 0bd5984 commit 0e484c1

File tree

5 files changed

+53
-3
lines changed

5 files changed

+53
-3
lines changed

Changelog

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
2024-01-04 s-n-g
2+
* version 0.9.2.21
3+
* adding --headless command line parameter and functionality
4+
* adding the --address command line parameter
5+
* recorded files will always be saved in the recordings folder
6+
If mkvtoolnix is present, a tmp_ prefix will be used to record
7+
the raw file, which will be removed after chapters integration
8+
* the message to indicate failure to connect to RadioBrowser will
9+
be displayed for 2 seconds (instead of requiring a key press)
10+
* mpv will read the "artist" and "title" fields from station response (#217)
11+
* remote control server: adding functionality for RadioBrowser
12+
* remote control server: do not disable individual buttons
13+
* remote control server: will restart if crashed
14+
* remote control server: can now accept real IPs (config option)
15+
* introducing "remote control server lock" files
16+
* trying to fix "pipx not found" on MacOS again
17+
* fixing config window rendering bug (#215)
18+
* fixing cover insertion to mkv files
19+
* fixing escape character warnings for python 3.12
20+
* fixing lock refresh issues
21+
* working on scheculer (not available yet)
22+
* updating win mplayer link
23+
* creating issues templates
24+
* updating documentation
25+
126
2023-11-23 s-n-g
227
* version 0.9.2.20
328
* Creating the docs folder and moving files there

docs/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,31 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
176176
<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>
177177
<pre style="height: 200px;">
178178

179+
2024-01-04 s-n-g
180+
* version 0.9.2.21
181+
* adding --headless command line parameter and functionality
182+
* adding the --address command line parameter
183+
* recorded files will always be saved in the recordings folder
184+
If mkvtoolnix is present, a tmp_ prefix will be used to record
185+
the raw file, which will be removed after chapters integration
186+
* the message to indicate failure to connect to RadioBrowser will
187+
be displayed for 2 seconds (instead of requiring a key press)
188+
* mpv will read the "artist" and "title" fields from station response (#217)
189+
* remote control server: adding functionality for RadioBrowser
190+
* remote control server: do not disable individual buttons
191+
* remote control server: will restart if crashed
192+
* remote control server: can now accept real IPs (config option)
193+
* introducing "remote control server lock" files
194+
* trying to fix "pipx not found" on MacOS again
195+
* fixing config window rendering bug (#215)
196+
* fixing cover insertion to mkv files
197+
* fixing escape character warnings for python 3.12
198+
* fixing lock refresh issues
199+
* working on scheculer (not available yet)
200+
* updating win mplayer link
201+
* creating issues templates
202+
* updating documentation
203+
179204
2023-11-23 s-n-g
180205
* version 0.9.2.20
181206
* Creating the docs folder and moving files there

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyradio"
3-
version = "0.9.2.20"
3+
version = "0.9.2.21"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },

pyradio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
" pyradio -- Console radio player. "
33

4-
version_info = (0, 9, 2, 20)
4+
version_info = (0, 9, 2, 21)
55

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

pyradio/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
''' This is PyRadio version this
1616
install.py was released for
1717
'''
18-
PyRadioInstallPyReleaseVersion = '0.9.2.20'
18+
PyRadioInstallPyReleaseVersion = '0.9.2.21'
1919

2020
import locale
2121
locale.setlocale(locale.LC_ALL, "")

0 commit comments

Comments
 (0)