diff --git a/CHANGELOG.md b/CHANGELOG.md index 988f8322..e3c29ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ **1.2.53** -- Added option to disable incomplete DSC message output. +- Added ability to reorder profiles in the Settings. +- Added option to ignore incomplete DSC messages. - Improved background service output to files. - Improved preamble detection in CCIR493. - Relaxed DSC FORMAT/EOS field requirements. +- Fixed profile reordering when a source is reenabled. - Fixed wxsat frequencies in bands.json. **1.2.52** diff --git a/debian/changelog b/debian/changelog index 5eb32c5c..3391c515 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,11 @@ openwebrx (1.2.53) bullseye jammy; urgency=low - * Added option to disable incomplete DSC message output. + * Added ability to reorder profiles in the Settings. + * Added option to ignore incomplete DSC messages. * Improved background service output to files. * Improved preamble detection in CCIR493. * Relaxed DSC FORMAT/EOS field requirements. + * Fixed profile reordering when a source is reenabled. * Fixed wxsat frequencies in bands.json. -- Marat Fayzullin Mon, 25 Mar 2024 16:12:00 +0000 diff --git a/owrx/version.py b/owrx/version.py index db0fce8f..6531a1b8 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.52" +_versionstring = "1.2.53" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)