Skip to content

Commit 109113e

Browse files
committed
version 0.9.3.5 (BUG FIX)
1 parent 2955150 commit 109113e

File tree

5 files changed

+51
-3
lines changed

5 files changed

+51
-3
lines changed

Changelog

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
2024-04-30 s-n-g
2+
* version 0.9.3.5 (BUG FIX)
3+
* Config Window: do not use hardcoded values when loading default params
4+
* Config Window: do not change transparency settings when themes are not
5+
being used
6+
* Config Window: do not toggle transparency when repeatedly pressing r / d
7+
* Config Window: when r / d (revert to saved / default params) is typed,
8+
correctly load the corresponding theme
9+
* Config Window: preserve theming config options when a terminal that does
10+
not support color change is used and config is saved
11+
* suppress list of files moved when migrating to XDG dirs
12+
* if both XDG_DATA_HOME and XDG_STATE_HOME directories already exist,
13+
xdg_compliant will be set to True, even if not set in the configuration
14+
file (it means an XDG migration has been performed in the past; using the
15+
non-XDG dirs will lead to data loss)
16+
* adding config option console_theme; this way eiter thr dark or the light
17+
theme can be used if PyRadio is executed in a Linux Virtual Console or
18+
using a terminal that cannot change colors * if PyRadio is executed in a
19+
Linux Virtual Console, do not open html files,
20+
display list of dirs when \o is pressed and desktop notifications will
21+
not be issued
22+
* updating packagers info page
23+
* updating docs
24+
125
2024-04-23 s-n-g
226
* version 0.9.3.4 (BUG FIX)
327
* adding --no-video command line parameter for vlc

docs/index.html

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

209+
2024-04-30 s-n-g
210+
* version 0.9.3.5 (BUG FIX)
211+
* Config Window: do not use hardcoded values when loading default params
212+
* Config Window: do not change transparency settings when themes are not
213+
being used
214+
* Config Window: do not toggle transparency when repeatedly pressing r / d
215+
* Config Window: when r / d (revert to saved / default params) is typed,
216+
correctly load the corresponding theme
217+
* Config Window: preserve theming config options when a terminal that does
218+
not support color change is used and config is saved
219+
* suppress list of files moved when migrating to XDG dirs
220+
* if both XDG_DATA_HOME and XDG_STATE_HOME directories already exist,
221+
xdg_compliant will be set to True, even if not set in the configuration
222+
file (it means an XDG migration has been performed in the past; using the
223+
non-XDG dirs will lead to data loss)
224+
* adding config option console_theme; this way eiter thr dark or the light
225+
theme can be used if PyRadio is executed in a Linux Virtual Console or
226+
using a terminal that cannot change colors * if PyRadio is executed in a
227+
Linux Virtual Console, do not open html files,
228+
display list of dirs when \o is pressed and desktop notifications will
229+
not be issued
230+
* updating packagers info page
231+
* updating docs
232+
209233
2024-04-23 s-n-g
210234
* version 0.9.3.4 (BUG FIX)
211235
* adding --no-video command line parameter for vlc

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.4"
3+
version = "0.9.3.5"
44
authors = [
55
{ name="Ben Dowling", email="[email protected]" },
66
{ name="Spiros Georgaras", email="[email protected]" },

pyradio/__init__.py

Lines changed: 1 addition & 1 deletion
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, 4)
4+
version_info = (0, 9, 3, 5)
55

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

pyradio/install.py

Lines changed: 1 addition & 1 deletion
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.4'
19+
PyRadioInstallPyReleaseVersion = '0.9.3.5'
2020

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

0 commit comments

Comments
 (0)