Preparing for the next release.

This commit is contained in:
Marat Fayzullin 2024-04-27 21:24:19 -04:00
parent 756aeade9d
commit 96cc085c3f
3 changed files with 24 additions and 1 deletions

View File

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

13
debian/changelog vendored
View File

@ -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 <luarvique@gmail.com> Mon, 29 Apr 2024 16:12:00 +0000
openwebrx (1.2.56) bullseye jammy; urgency=low
* Added character set setting for the pager messages.

View File

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