Skip to content

Commit a95e8e0

Browse files
committed
- version 0.9.3.11.11 - 0.9.3.12-beta11
- updating docs
1 parent e16ec5c commit a95e8e0

File tree

7 files changed

+20
-3
lines changed

7 files changed

+20
-3
lines changed

Changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-05-06 s-n-g
2+
* version 0.9.3.11.11 - 0.9.3.12-beta11
3+
* fixing a dict Key error that will make some stations fail - #284
4+
* fixing an error that would render all player unusable on Windows - #282
5+
* fixing Windows getting stuck to "PyRadio still running" message - #283
6+
17
2025-05-06 s-n-g
28
* version 0.9.3.11.10 - 0.9.3.12-beta10
39
* redesigning the Station Editor

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,5 @@ If you are a packager and would like to produce a package for your distribution
154154
1. [edunfelt](https://github.com/edunfelt), for her wonderful work on [base16 themes](https://github.com/edunfelt/base16-pyradio), and ideas regarding theming and such.
155155

156156
2. [amano-kenji](https://github.com/amano-kenji), for his valuable suggestions and bug reports.
157+
158+
3. [Scary-Guy](https://github.com/Scary-Guy), for his suggestions on improving user experience.

docs/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,12 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
190190
<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>
191191
<pre style="height: 200px;">
192192

193+
2025-05-06 s-n-g
194+
* version 0.9.3.11.11 - 0.9.3.12-beta11
195+
* fixing a dict Key error that will make some stations fail - #284
196+
* fixing an error that would render all player unusable on Windows - #282
197+
* fixing Windows getting stuck to "PyRadio still running" message - #283
198+
193199
2025-05-06 s-n-g
194200
* version 0.9.3.11.10 - 0.9.3.12-beta10
195201
* redesigning the Station Editor

docs/pyradio.1

+3
Original file line numberDiff line numberDiff line change
@@ -2094,6 +2094,9 @@ You can see a complete list of contributors at
20942094
.IP \fI2. 3
20952095
\fBamano-kenji\fR (\fIhttps://github.com/amano-kenji\fR), for his valuable suggestions and bug reports.
20962096

2097+
.IP \fI3. 3
2098+
\fBScary-Guy\fR (\fIhttps://github.com/Scary-Guy\fR), for his suggestions on improving user experience.
2099+
20972100
.SH See also
20982101

20992102
.IP \fIpyradio_rb(1)

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.3.11.10"
3+
version = "0.9.3.11.11"
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, 3, 11, 10)
4+
version_info = (0, 9, 3, 11, 11)
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
@@ -17,7 +17,7 @@
1717
''' This is PyRadio version this
1818
install.py was released for
1919
'''
20-
PyRadioInstallPyReleaseVersion = '0.9.3.11.10'
20+
PyRadioInstallPyReleaseVersion = '0.9.3.11.11'
2121

2222
locale.setlocale(locale.LC_ALL, "")
2323

0 commit comments

Comments
 (0)