Preparing for the next release.
This commit is contained in:
parent
756aeade9d
commit
96cc085c3f
10
CHANGELOG.md
10
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**
|
**1.2.56**
|
||||||
- Added character set setting for the pager messages.
|
- Added character set setting for the pager messages.
|
||||||
- Added more default profiles to a new SDRPlay device.
|
- Added more default profiles to a new SDRPlay device.
|
||||||
|
|
|
||||||
|
|
@ -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
|
openwebrx (1.2.56) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added character set setting for the pager messages.
|
* Added character set setting for the pager messages.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
_versionstring = "1.2.56"
|
_versionstring = "1.2.57"
|
||||||
looseversion = LooseVersion(_versionstring)
|
looseversion = LooseVersion(_versionstring)
|
||||||
openwebrx_version = "v{0}".format(looseversion)
|
openwebrx_version = "v{0}".format(looseversion)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue