diff --git a/CHANGELOG.md b/CHANGELOG.md index bca6b653..c1c82618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +**1.2.46** +- Added list of active services to the Settings page. +- Added new toolbar icons, based on Google design. +- Added Help icon leading to documentation. +- Fixed race condition when sending map to a new client. +- Removed HL2 frequency workaround (fixed in hpsdrconnector). + **1.2.45** - Added ability to delete files, when authorized. - Added locking to connector-based SDR sources. diff --git a/debian/changelog b/debian/changelog index df67d17e..8bcabfca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +openwebrx (1.2.46) bullseye jammy; urgency=low + + * Added list of active services to the Settings page. + * Added new toolbar icons, based on Google design. + * Added Help icon leading to documentation. + * Fixed race condition when sending map to a new client. + * Removed HL2 frequency workaround (fixed in hpsdrconnector). + + -- Marat Fayzullin Mon, 29 Jan 2024 16:12:00 +0000 + openwebrx (1.2.45) bullseye jammy; urgency=low * Added ability to delete files, when authorized. diff --git a/owrx/version.py b/owrx/version.py index a906df3c..f710e55e 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.45" +_versionstring = "1.2.46" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)