Skip to content

Commit 226da73

Browse files
committed
- version 0.9.3.1 (BUG FIX release)
- fixing #231 - [BUG] pyradio-0.9.3 cannot be executed - closing #232 - [BUG] self.xdg.xdg_compliant = False
1 parent 3b028cc commit 226da73

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-04-06 s-n-g
2+
* version 0.9.3.1
3+
* fixing #231 - [BUG] pyradio-0.9.3 cannot be executed
4+
* closing #232 - [BUG] self.xdg.xdg_compliant = False
5+
16
2024-04-05 s-n-g
27
* version 0.9.3
38
* user config file will not be automatically created; it will be

docs/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
207207
<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>
208208
<pre style="height: 200px;">
209209

210+
2024-04-06 s-n-g
211+
* version 0.9.3.1
212+
* fixing #231 - [BUG] pyradio-0.9.3 cannot be executed
213+
* closing #232 - [BUG] self.xdg.xdg_compliant = False
214+
210215
2024-04-05 s-n-g
211216
* version 0.9.3
212217
* user config file will not be automatically created; it will be

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyradio"
3-
version = "0.9.3"
3+
version = "0.9.3.1"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },

pyradio/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# -*- coding: utf-8 -*-
22
" pyradio -- Console radio player. "
33

4-
version_info = (0, 9, 3)
4+
version_info = (0, 9, 3, 1)
55

66
# Set it to True if new stations have been
77
# added to the package's stations.csv
8-
stations_updated = True
8+
stations_updated = False
99

1010

1111
__version__ = version = '.'.join(map(str, version_info))

pyradio/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2031,6 +2031,7 @@ def read_config(self, distro_config=False):
20312031
# for n in self.config_opts.items():
20322032
# logger.error(' {}: {}'.format(*n))
20332033
self._read_config()
2034+
self.xdg.ensure_paths_exist()
20342035

20352036
def _read_config(self, distro_config=False):
20362037
if distro_config:
@@ -2213,7 +2214,6 @@ def _read_config(self, distro_config=False):
22132214
elif sp[0] == 'xdg_compliant' and \
22142215
not platform.startswith('win') and \
22152216
sp[1].lower() == 'true':
2216-
print(f'{self.xdg.xdg_compliant = }')
22172217
self.xdg_compliant = True
22182218

22192219
# logger.error('\n\nself.params{}\n\n'.format(self.params))

pyradio/install.py

Lines changed: 1 addition & 1 deletion
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.3'
18+
PyRadioInstallPyReleaseVersion = '0.9.3.1'
1919

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

0 commit comments

Comments
 (0)