Skip to content

Commit

Permalink
- version 0.9.3.1 (BUG FIX release)
Browse files Browse the repository at this point in the history
- fixing #231 - [BUG] pyradio-0.9.3 cannot be executed
- closing #232 - [BUG] self.xdg.xdg_compliant = False
  • Loading branch information
s-n-g committed Apr 6, 2024
1 parent 3b028cc commit 226da73
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-04-06 s-n-g
* version 0.9.3.1
* fixing #231 - [BUG] pyradio-0.9.3 cannot be executed
* closing #232 - [BUG] self.xdg.xdg_compliant = False

2024-04-05 s-n-g
* version 0.9.3
* user config file will not be automatically created; it will be
Expand Down
5 changes: 5 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
<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>
<pre style="height: 200px;">

2024-04-06 s-n-g
* version 0.9.3.1
* fixing #231 - [BUG] pyradio-0.9.3 cannot be executed
* closing #232 - [BUG] self.xdg.xdg_compliant = False

2024-04-05 s-n-g
* version 0.9.3
* user config file will not be automatically created; it will be
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyradio"
version = "0.9.3"
version = "0.9.3.1"
authors = [
{ name="Ben Dowling", email="ben.m.dowling@gmail.com" },
{ name="Spiros Georgaras", email="sng@hellug.gr" },
Expand Down
4 changes: 2 additions & 2 deletions pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
" pyradio -- Console radio player. "

version_info = (0, 9, 3)
version_info = (0, 9, 3, 1)

# Set it to True if new stations have been
# added to the package's stations.csv
stations_updated = True
stations_updated = False


__version__ = version = '.'.join(map(str, version_info))
Expand Down
2 changes: 1 addition & 1 deletion pyradio/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2031,6 +2031,7 @@ def read_config(self, distro_config=False):
# for n in self.config_opts.items():
# logger.error(' {}: {}'.format(*n))
self._read_config()
self.xdg.ensure_paths_exist()

def _read_config(self, distro_config=False):
if distro_config:
Expand Down Expand Up @@ -2213,7 +2214,6 @@ def _read_config(self, distro_config=False):
elif sp[0] == 'xdg_compliant' and \
not platform.startswith('win') and \
sp[1].lower() == 'true':
print(f'{self.xdg.xdg_compliant = }')
self.xdg_compliant = True

# logger.error('\n\nself.params{}\n\n'.format(self.params))
Expand Down
2 changes: 1 addition & 1 deletion pyradio/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
''' This is PyRadio version this
install.py was released for
'''
PyRadioInstallPyReleaseVersion = '0.9.3'
PyRadioInstallPyReleaseVersion = '0.9.3.1'

import locale
locale.setlocale(locale.LC_ALL, "")
Expand Down

0 comments on commit 226da73

Please sign in to comment.