Skip to content

Commit 53a6674

Browse files
committed
version 0.9.2.22
1 parent 25469cf commit 53a6674

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

Changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2024-01-05 s-n-g
2+
* version 0.9.2.22
3+
* fixing bug #222 - Appending a radio station with A in a playlist
4+
leads to a crash (when number stations is less than window height)
5+
* fixing a crash that would occur when pressing ENTER on the Cancel
6+
button of the "rename playlist" and "new playlist" window
7+
18
2024-01-04 s-n-g
29
* version 0.9.2.21
310
* adding --headless command line parameter and functionality

docs/index.html

+7
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,13 @@ <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-05 s-n-g
180+
* version 0.9.2.22
181+
* fixing bug #222 - Appending a radio station with A in a playlist
182+
leads to a crash (when number stations is less than window height)
183+
* fixing a crash that would occur when pressing ENTER on the Cancel
184+
button of the "rename playlist" and "new playlist" window
185+
179186
2024-01-04 s-n-g
180187
* version 0.9.2.21
181188
* adding --headless command line parameter and functionality

pyproject.toml

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

pyradio/__init__.py

+1-1
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, 21)
4+
version_info = (0, 9, 2, 22)
55

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

pyradio/install.py

+1-1
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.21'
18+
PyRadioInstallPyReleaseVersion = '0.9.2.22'
1919

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

0 commit comments

Comments
 (0)