Preparing for the next release.

This commit is contained in:
Marat Fayzullin 2024-02-10 23:10:47 -05:00
parent 4ba67685fd
commit 32b9f8b46b
3 changed files with 26 additions and 1 deletions

View File

@ -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.

14
debian/changelog vendored
View File

@ -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 <luarvique@gmail.com> 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.

View File

@ -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)