Skip to content

Commit 97d0608

Browse files
committed
version 0.9.2.20
1 parent bac4852 commit 97d0608

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

Changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2023-11-23 s-n-g
2+
* version 0.9.2.20
3+
* Creating the docs folder and moving files there
4+
* Updating pyproject.toml and setup.py for the latest
5+
Installation method changes
6+
* Working on scheduler (not applicable yet)
7+
* Updating docs
8+
19
2023-11-06 s-n-g
210
* version 0.9.2.19 (BUG FIX release)
311
* cover.png updated

docs/index.html

+8
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,14 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
179179
<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>
180180
<pre style="height: 200px;">
181181

182+
2023-11-23 s-n-g
183+
* version 0.9.2.20
184+
* Creating the docs folder and moving files there
185+
* Updating pyproject.toml and setup.py for the latest
186+
Installation method changes
187+
* Working on scheduler (not applicable yet)
188+
* Updating docs
189+
182190
2023-11-06 s-n-g
183191
* version 0.9.2.19 (BUG FIX release)
184192
* cover.png updated

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyradio"
3-
version = "0.9.2.19"
3+
version = "0.9.2.20"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },
@@ -10,7 +10,6 @@ readme = "README.md"
1010
license = {file = "LICENSE"}
1111
requires-python = ">=3.7"
1212
classifiers = [
13-
"Programming Language :: Python :: 2.7",
1413
"Programming Language :: Python :: 3",
1514
"License :: OSI Approved :: MIT License",
1615
"Operating System :: OS Independent",

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, 19)
4+
version_info = (0, 9, 2, 20)
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.19'
18+
PyRadioInstallPyReleaseVersion = '0.9.2.20'
1919

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

pyradio/radio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ def __init__(self, pyradio_config,
724724
curses.ascii.SO: self._play_next_station,
725725
curses.KEY_NEXT: self._play_next_station,
726726
# ord('d'): self._html_song_title,
727-
ord('b'): self._show_schedule_editor,
727+
# ord('b'): self._show_schedule_editor,
728728
}
729729

730730
self._remote_control_server = self._remote_control_server_thread = None

0 commit comments

Comments
 (0)