Skip to content

Commit b34adeb

Browse files
committed
- version 0.9.3.11.7 - 0.9.3.12-beta7
- fixing #280 - Removing station and saving removes all URLs from stations.csv file
1 parent 379f856 commit b34adeb

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

Changelog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-03-13 s-n-g
2+
* version 0.9.3.11.7 - 0.9.3.12-beta7
3+
* fixing #280 - Removing station and saving removes
4+
all URLs from stations.csv file
5+
16
2025-03-10 s-n-g
27
* version 0.9.3.11.6 - 0.9.3.12-beta6
38
* fixing #279 - The list of favorite stations is reset when added

docs/index.html

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

194+
2025-03-13 s-n-g
195+
* version 0.9.3.11.7 - 0.9.3.12-beta7
196+
* fixing #280 - Removing station and saving removes
197+
all URLs from stations.csv file
198+
194199
2025-03-10 s-n-g
195200
* version 0.9.3.11.6 - 0.9.3.12-beta6
196201
* fixing #279 - The list of favorite stations is reset when added

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.6"
3+
version = "0.9.3.11.7"
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, 6)
4+
version_info = (0, 9, 3, 11, 7)
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
@@ -954,7 +954,7 @@ def _format_playlist_row(self, a_row):
954954
if len(this_row) > 3 and 'image' in this_row[3]:
955955
this_row[3] = this_row[3]['image']
956956

957-
return this_row[:self._playlist_version]
957+
return this_row
958958

959959
def _set_playlist_elements(self, a_playlist, a_title=''):
960960
self.station_path = path.abspath(a_playlist)

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.6'
20+
PyRadioInstallPyReleaseVersion = '0.9.3.11.7'
2121

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

0 commit comments

Comments
 (0)