Skip to content

Commit 51e9f7e

Browse files
committed
version 0.9.2.18
1 parent ea95c19 commit 51e9f7e

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

Changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2023-11-03 s-n-g
2+
* version 0.9.2.18
3+
* fixing a crash on mkvtoolnix.py
4+
15
2023-11-03 s-n-g
26
* version 0.9.2.17
37
* Recorded MKV files will have a cover image by default

README.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
214214
<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>
215215
<pre style="height: 200px;">
216216

217+
2023-11-03 s-n-g
218+
* version 0.9.2.18
219+
* fixing a crash on mkvtoolnix.py
220+
217221
2023-11-03 s-n-g
218222
* version 0.9.2.17
219223
* Recorded MKV files will have a cover image by default

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.2.17"
3+
version = "0.9.2.18"
44
authors = [
55
{ name="Ben Dowling", email="ben.m.dowling@gmail.com" },
66
{ name="Spiros Georgaras", email="sng@hellug.gr" },

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, 2, 17)
4+
version_info = (0, 9, 2, 18)
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
@@ -15,7 +15,7 @@
1515
''' This is PyRadio version this
1616
install.py was released for
1717
'''
18-
PyRadioInstallPyReleaseVersion = '0.9.2.17'
18+
PyRadioInstallPyReleaseVersion = '0.9.2.18'
1919

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

pyradio/mkvtoolnix.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from datetime import datetime, timedelta
88
from glob import glob
99
import locale
10+
import logging
1011

1112
locale.setlocale(locale.LC_ALL, "")
1213
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)