diff --git a/CHANGELOG.md b/CHANGELOG.md index 3827fe5c..d9ae659e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +**1.2.57** +- Added user-selectable waterfall color themes. +- Added initial data to all aircraft MQTT reports. +- Added current frequency to all reported JSON data. +- Stopped adding secondary offset if there is no selector. +- Switched all JSON timestamps to milliseconds. +- Moved waterfall functions outside openwebrx.js. +- Moved UI and utility functions outside openwebrx.js. +- Refactored aircraft mode parsers. + **1.2.56** - Added character set setting for the pager messages. - Added more default profiles to a new SDRPlay device. diff --git a/debian/changelog b/debian/changelog index 524aca07..6f893742 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +openwebrx (1.2.57) bullseye jammy; urgency=low + + * Added user-selectable waterfall color themes. + * Added initial data to all aircraft MQTT reports. + * Added current frequency to all reported JSON data. + * Stopped adding secondary offset if there is no selector. + * Switched all JSON timestamps to milliseconds. + * Moved waterfall functions outside openwebrx.js. + * Moved UI and utility functions outside openwebrx.js. + * Refactored aircraft mode parsers. + + -- Marat Fayzullin Mon, 29 Apr 2024 16:12:00 +0000 + openwebrx (1.2.56) bullseye jammy; urgency=low * Added character set setting for the pager messages. diff --git a/owrx/version.py b/owrx/version.py index 403fe94b..c919fde0 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.56" +_versionstring = "1.2.57" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)