Skip to content

Commit 67e81c5

Browse files
committed
version 0.9.2.13
1 parent 7ee169c commit 67e81c5

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

Changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2023-07-15 s-n-g
2+
* version 0.9.2.13
3+
* all search widgets will save up to 20 of their last search terms
4+
* VLC will now save its default volume
5+
* adding --record command line parameter
6+
* \l will toggle the "Open last playlist" config setting
7+
* updating docs
8+
19
2023-07-01 s-n-g
210
* version 0.9.2.12
311
* Implementing VLC recorder (not for Windows)

README.html

+8
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,14 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
208208
<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>
209209
<pre style="height: 200px;">
210210

211+
2023-07-15 s-n-g
212+
* version 0.9.2.13
213+
* all search widgets will save up to 20 of their last search terms
214+
* VLC will now save its default volume
215+
* adding --record command line parameter
216+
* \l will toggle the "Open last playlist" config setting
217+
* updating docs
218+
211219
2023-07-01 s-n-g
212220
* version 0.9.2.12
213221
* Implementing VLC recorder (not for Windows)

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.2.12"
3+
version = "0.9.2.13"
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, 2, 12)
4+
version_info = (0, 9, 2, 13)
55

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

pyradio/install.py

+1-1
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.2.12'
18+
PyRadioInstallPyReleaseVersion = '0.9.2.13'
1919

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

0 commit comments

Comments
 (0)