From 32b9f8b46bcd098ceea946fc6c3825efb733ca7a Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Sat, 10 Feb 2024 23:10:47 -0500 Subject: [PATCH] Preparing for the next release. --- CHANGELOG.md | 11 +++++++++++ debian/changelog | 14 ++++++++++++++ owrx/version.py | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd4682da..8484deef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +**1.2.48** +- Added chat nicknames to the clients display. +- Fixed DAB support by adding missing Dablin class. +- Fixed secondary waterfall height in SSTV and FAX modes. +- Allowed full range of SDRPlay samplerates. +- Allowed full range of HackRF samplerates. +- Extended default samplerate range to 30Msps. +- Improved RDS information display. +- Switched RDS to ExecModule (YOU HAVE TO UPDATE REDSEA). +- Switched RDS to the original, optimized parser. + **1.2.47** - Merged changes from Jakob Ketterl's original development branch. - Switched to updated CSDR, PyCSDR, OWRX Connector packages. diff --git a/debian/changelog b/debian/changelog index 9356fd4f..f1f24ea4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +openwebrx (1.2.48) bullseye jammy; urgency=low + + * Added chat nicknames to the clients display. + * Fixed DAB support by adding missing Dablin class. + * Fixed secondary waterfall height in SSTV and FAX modes. + * Allowed full range of SDRPlay samplerates. + * Allowed full range of HackRF samplerates. + * Extended default samplerate range to 30Msps. + * Improved RDS information display. + * Switched RDS to ExecModule (YOU HAVE TO UPDATE REDSEA). + * Switched RDS to the original, optimized parser. + + -- Marat Fayzullin Mon, 12 Feb 2024 16:12:00 +0000 + openwebrx (1.2.47) bullseye jammy; urgency=low * Merged changes from Jakob Ketterl's original development branch. diff --git a/owrx/version.py b/owrx/version.py index 19450ca3..4cc591ad 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.47" +_versionstring = "1.2.48" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)