Skip to content

Commit ffd8d0d

Browse files
committed
- version 0.9.3.9
- fixing a crash when adding a station to favorites
1 parent 334b084 commit ffd8d0d

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

Changelog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-06-04 s-n-g
2+
* version 0.9.3.9
3+
* fixing a crash when adding a station to favorites
4+
15
2024-06-04 s-n-g
26
* version 0.9.3.8
37
* pressing "*" will add the selected station to favorites

docs/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
215215
<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>
216216
<pre style="height: 200px;">
217217

218+
2024-06-04 s-n-g
219+
* version 0.9.3.9
220+
* fixing a crash when adding a station to favorites
221+
218222
2024-06-04 s-n-g
219223
* version 0.9.3.8
220224
* pressing "*" will add the selected station to favorites

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.8"
3+
version = "0.9.3.9"
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, 8)
4+
version_info = (0, 9, 3, 9)
55

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

pyradio/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4071,7 +4071,7 @@ def add(self, an_item):
40714071
updated = True
40724072
if updated:
40734073
ret = self._write_csv(items)
4074-
return ret[0], msg if msg else ret
4074+
return ret[0], msg if msg else ret[1]
40754075
return 1, '___Already in favorites!___'
40764076

40774077
# def remove(self, an_item):

pyradio/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
''' This is PyRadio version this
1717
install.py was released for
1818
'''
19-
PyRadioInstallPyReleaseVersion = '0.9.3.8'
19+
PyRadioInstallPyReleaseVersion = '0.9.3.9'
2020

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

0 commit comments

Comments
 (0)