diff --git a/Changelog b/Changelog index c9801e25..b1e941fd 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,10 @@ +2024-01-05 s-n-g + * version 0.9.2.22 + * fixing bug #222 - Appending a radio station with A in a playlist + leads to a crash (when number stations is less than window height) + * fixing a crash that would occur when pressing ENTER on the Cancel + button of the "rename playlist" and "new playlist" window + 2024-01-04 s-n-g * version 0.9.2.21 * adding --headless command line parameter and functionality diff --git a/docs/index.html b/docs/index.html index e70d5d25..5f8093e7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -176,6 +176,13 @@
+2024-01-05 s-n-g + * version 0.9.2.22 + * fixing bug #222 - Appending a radio station with A in a playlist + leads to a crash (when number stations is less than window height) + * fixing a crash that would occur when pressing ENTER on the Cancel + button of the "rename playlist" and "new playlist" window + 2024-01-04 s-n-g * version 0.9.2.21 * adding --headless command line parameter and functionality diff --git a/pyproject.toml b/pyproject.toml index 26dfa6d8..c42cfed8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyradio" -version = "0.9.2.21" +version = "0.9.2.22" authors = [ { name="Ben Dowling", email="ben.m.dowling@gmail.com" }, { name="Spiros Georgaras", email="sng@hellug.gr" }, diff --git a/pyradio/__init__.py b/pyradio/__init__.py index eb0fe313..a62da435 100644 --- a/pyradio/__init__.py +++ b/pyradio/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- " pyradio -- Console radio player. " -version_info = (0, 9, 2, 21) +version_info = (0, 9, 2, 22) # Set it to True if new stations have been # added to the package's stations.csv diff --git a/pyradio/install.py b/pyradio/install.py index ba55b525..35b83c6e 100644 --- a/pyradio/install.py +++ b/pyradio/install.py @@ -15,7 +15,7 @@ ''' This is PyRadio version this install.py was released for ''' -PyRadioInstallPyReleaseVersion = '0.9.2.21' +PyRadioInstallPyReleaseVersion = '0.9.2.22' import locale locale.setlocale(locale.LC_ALL, "")