Skip to content

Commit

Permalink
version 0.9.2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
s-n-g committed Nov 3, 2023
1 parent ea95c19 commit 51e9f7e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2023-11-03 s-n-g
* version 0.9.2.18
* fixing a crash on mkvtoolnix.py

2023-11-03 s-n-g
* version 0.9.2.17
* Recorded MKV files will have a cover image by default
Expand Down
4 changes: 4 additions & 0 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ <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;">

2023-11-03 s-n-g
* version 0.9.2.18
* fixing a crash on mkvtoolnix.py

2023-11-03 s-n-g
* version 0.9.2.17
* Recorded MKV files will have a cover image by default
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.2.17"
version = "0.9.2.18"
authors = [
{ name="Ben Dowling", email="[email protected]" },
{ name="Spiros Georgaras", email="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
" pyradio -- Console radio player. "

version_info = (0, 9, 2, 17)
version_info = (0, 9, 2, 18)

# Set it to True if new stations have been
# added to the package's stations.csv
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.2.17'
PyRadioInstallPyReleaseVersion = '0.9.2.18'

import locale
locale.setlocale(locale.LC_ALL, "")
Expand Down
1 change: 1 addition & 0 deletions pyradio/mkvtoolnix.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from datetime import datetime, timedelta
from glob import glob
import locale
import logging

locale.setlocale(locale.LC_ALL, "")
logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 51e9f7e

Please sign in to comment.