Preparing for the next release.
This commit is contained in:
parent
b77f512bed
commit
6d83a21527
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,3 +1,13 @@
|
|||
**1.2.44**
|
||||
- Added Storage API for creating files that avoids name collisions.
|
||||
- Added admin-configurable FAX LPM parameter (default is 120).
|
||||
- Added reference to documentation to the console window.
|
||||
- Added maidenhead layer to Leaflet-based maps.
|
||||
- Fixed volume resetting to zero on page reload.
|
||||
- Fixed step tuning when waterfall is zoomed.
|
||||
- Fixed browser console error on vendor-provided markers.
|
||||
- Increased upper limit on aircraft data retention to 100000 seconds.
|
||||
|
||||
**1.2.43**
|
||||
- Added support for JS plugins developed by Stanislav Lechev.
|
||||
- Added option to switch between US and EU RDS decoding.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
openwebrx (1.2.44) bullseye jammy; urgency=low
|
||||
|
||||
* Added Storage API for creating files that avoids name collisions.
|
||||
* Added admin-configurable FAX LPM parameter (default is 120).
|
||||
* Added reference to documentation to the console window.
|
||||
* Added maidenhead layer to Leaflet-based maps.
|
||||
* Fixed volume resetting to zero on page reload.
|
||||
* Fixed step tuning when waterfall is zoomed.
|
||||
* Fixed browser console error on vendor-provided markers.
|
||||
* Increased upper limit on aircraft data retention to 100000 seconds.
|
||||
|
||||
-- Marat Fayzullin <luarvique@gmail.com> Thu, 11 Jan 2024 16:12:00 +0000
|
||||
|
||||
openwebrx (1.2.43) bullseye jammy; urgency=low
|
||||
|
||||
* Added support for JS plugins developed by Stanislav Lechev.
|
||||
|
|
|
|||
|
|
@ -77,25 +77,25 @@ class DecodingSettingsController(SettingsFormController):
|
|||
NumberInput(
|
||||
"adsb_ttl",
|
||||
"ADSB reports expiration time",
|
||||
validator=RangeValidator(30, 1000000),
|
||||
validator=RangeValidator(30, 100000),
|
||||
append="s",
|
||||
),
|
||||
NumberInput(
|
||||
"vdl2_ttl",
|
||||
"VDL2 reports expiration time",
|
||||
validator=RangeValidator(30, 1000000),
|
||||
validator=RangeValidator(30, 100000),
|
||||
append="s",
|
||||
),
|
||||
NumberInput(
|
||||
"hfdl_ttl",
|
||||
"HFDL reports expiration time",
|
||||
validator=RangeValidator(30, 1000000),
|
||||
validator=RangeValidator(30, 100000),
|
||||
append="s",
|
||||
),
|
||||
NumberInput(
|
||||
"acars_ttl",
|
||||
"ACARS reports expiration time",
|
||||
validator=RangeValidator(30, 1000000),
|
||||
validator=RangeValidator(30, 100000),
|
||||
append="s",
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
from distutils.version import LooseVersion
|
||||
|
||||
_versionstring = "1.2.43"
|
||||
_versionstring = "1.2.44"
|
||||
looseversion = LooseVersion(_versionstring)
|
||||
openwebrx_version = "v{0}".format(looseversion)
|
||||
|
|
|
|||
Loading…
Reference in New Issue