From 0e484c1d87524cf87438d1fcf4b620d65855e885 Mon Sep 17 00:00:00 2001 From: Spiros Georgaras Date: Thu, 4 Jan 2024 15:55:22 +0200 Subject: [PATCH] version 0.9.2.21 --- Changelog | 25 +++++++++++++++++++++++++ docs/index.html | 25 +++++++++++++++++++++++++ pyproject.toml | 2 +- pyradio/__init__.py | 2 +- pyradio/install.py | 2 +- 5 files changed, 53 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index 3903ac8d..c9801e25 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,28 @@ +2024-01-04 s-n-g + * version 0.9.2.21 + * adding --headless command line parameter and functionality + * adding the --address command line parameter + * recorded files will always be saved in the recordings folder + If mkvtoolnix is present, a tmp_ prefix will be used to record + the raw file, which will be removed after chapters integration + * the message to indicate failure to connect to RadioBrowser will + be displayed for 2 seconds (instead of requiring a key press) + * mpv will read the "artist" and "title" fields from station response (#217) + * remote control server: adding functionality for RadioBrowser + * remote control server: do not disable individual buttons + * remote control server: will restart if crashed + * remote control server: can now accept real IPs (config option) + * introducing "remote control server lock" files + * trying to fix "pipx not found" on MacOS again + * fixing config window rendering bug (#215) + * fixing cover insertion to mkv files + * fixing escape character warnings for python 3.12 + * fixing lock refresh issues + * working on scheculer (not available yet) + * updating win mplayer link + * creating issues templates + * updating documentation + 2023-11-23 s-n-g * version 0.9.2.20 * Creating the docs folder and moving files there diff --git a/docs/index.html b/docs/index.html index 5a7403e1..be50ba31 100644 --- a/docs/index.html +++ b/docs/index.html @@ -176,6 +176,31 @@

Requirements Changelog Top

 
+2024-01-04 s-n-g
+    * version 0.9.2.21
+    * adding --headless command line parameter and functionality
+    * adding the --address command line parameter
+    * recorded files will always be saved in the recordings folder
+      If mkvtoolnix is present, a tmp_ prefix will be used to record
+      the raw file, which will be removed after chapters integration
+    * the message to indicate failure to connect to RadioBrowser will
+      be displayed for 2 seconds (instead of requiring a key press)
+    * mpv will read the "artist" and "title" fields from station response (#217)
+    * remote control server: adding functionality for RadioBrowser
+    * remote control server: do not disable individual buttons
+    * remote control server: will restart if crashed
+    * remote control server: can now accept real IPs (config option)
+    * introducing "remote control server lock" files
+    * trying to fix "pipx not found" on MacOS again
+    * fixing config window rendering bug (#215)
+    * fixing cover insertion to mkv files
+    * fixing escape character warnings for python 3.12
+    * fixing lock refresh issues
+    * working on scheculer (not available yet)
+    * updating win mplayer link
+    * creating issues templates
+    * updating documentation
+
 2023-11-23 s-n-g
     * version 0.9.2.20
     * Creating the docs folder and moving files there
diff --git a/pyproject.toml b/pyproject.toml
index f212344c..26dfa6d8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "pyradio"
-version = "0.9.2.20"
+version = "0.9.2.21"
 authors = [
   { name="Ben Dowling", email="ben.m.dowling@gmail.com" },
   { name="Spiros Georgaras", email="sng@hellug.gr" },
diff --git a/pyradio/__init__.py b/pyradio/__init__.py
index 6fe9bcbe..eb0fe313 100644
--- a/pyradio/__init__.py
+++ b/pyradio/__init__.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 " pyradio -- Console radio player. "
 
-version_info = (0, 9, 2, 20)
+version_info = (0, 9, 2, 21)
 
 # Set it to True if new stations have been
 # added to the package's stations.csv
diff --git a/pyradio/install.py b/pyradio/install.py
index 70c1456e..ba55b525 100644
--- a/pyradio/install.py
+++ b/pyradio/install.py
@@ -15,7 +15,7 @@
 ''' This is PyRadio version this
     install.py was released for
 '''
-PyRadioInstallPyReleaseVersion = '0.9.2.20'
+PyRadioInstallPyReleaseVersion = '0.9.2.21'
 
 import locale
 locale.setlocale(locale.LC_ALL, "")