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**
|
**1.2.43**
|
||||||
- Added support for JS plugins developed by Stanislav Lechev.
|
- Added support for JS plugins developed by Stanislav Lechev.
|
||||||
- Added option to switch between US and EU RDS decoding.
|
- 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
|
openwebrx (1.2.43) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added support for JS plugins developed by Stanislav Lechev.
|
* Added support for JS plugins developed by Stanislav Lechev.
|
||||||
|
|
|
||||||
|
|
@ -77,25 +77,25 @@ class DecodingSettingsController(SettingsFormController):
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"adsb_ttl",
|
"adsb_ttl",
|
||||||
"ADSB reports expiration time",
|
"ADSB reports expiration time",
|
||||||
validator=RangeValidator(30, 1000000),
|
validator=RangeValidator(30, 100000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"vdl2_ttl",
|
"vdl2_ttl",
|
||||||
"VDL2 reports expiration time",
|
"VDL2 reports expiration time",
|
||||||
validator=RangeValidator(30, 1000000),
|
validator=RangeValidator(30, 100000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"hfdl_ttl",
|
"hfdl_ttl",
|
||||||
"HFDL reports expiration time",
|
"HFDL reports expiration time",
|
||||||
validator=RangeValidator(30, 1000000),
|
validator=RangeValidator(30, 100000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"acars_ttl",
|
"acars_ttl",
|
||||||
"ACARS reports expiration time",
|
"ACARS reports expiration time",
|
||||||
validator=RangeValidator(30, 1000000),
|
validator=RangeValidator(30, 100000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
_versionstring = "1.2.43"
|
_versionstring = "1.2.44"
|
||||||
looseversion = LooseVersion(_versionstring)
|
looseversion = LooseVersion(_versionstring)
|
||||||
openwebrx_version = "v{0}".format(looseversion)
|
openwebrx_version = "v{0}".format(looseversion)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue