Preparing for the 1.2.27 release.
This commit is contained in:
parent
77b642abb3
commit
6ba024ad02
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,3 +1,13 @@
|
||||||
|
**1.2.27**
|
||||||
|
- Added VDL2 aircraft protocol decoder, using DumpVDL2.
|
||||||
|
- Added standard VDL2 frequencies to the default bookmarks.
|
||||||
|
- VDL2 data is shown both as text and as map markers.
|
||||||
|
- Added repeater search via RepeaterBook.com.
|
||||||
|
- Added range setting (km) for showing repeaters in.
|
||||||
|
- Repeaters are shown both on the map and as bookmarks.
|
||||||
|
- Fixed non-APRS (YSF, etc) markers not showing up.
|
||||||
|
- Simplified a lot of JavaScript code.
|
||||||
|
|
||||||
**1.2.26**
|
**1.2.26**
|
||||||
- Added autogenerated bookmarks based on EIBI schedules.
|
- Added autogenerated bookmarks based on EIBI schedules.
|
||||||
- Set bookmark search range (km) in "Settings | General | Display".
|
- Set bookmark search range (km) in "Settings | General | Display".
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,16 @@
|
||||||
|
openwebrx (1.2.27) bullseye jammy; urgency=low
|
||||||
|
|
||||||
|
* Added VDL2 aircraft protocol decoder, using DumpVDL2.
|
||||||
|
* Added standard VDL2 frequencies to the default bookmarks.
|
||||||
|
* VDL2 data is shown both as text and as map markers.
|
||||||
|
* Added repeater search via RepeaterBook.com.
|
||||||
|
* Added range setting (km) for showing repeaters in.
|
||||||
|
* Repeaters are shown both on the map and as bookmarks.
|
||||||
|
* Fixed non-APRS (YSF, etc) markers not showing up.
|
||||||
|
* Simplified a lot of JavaScript code.
|
||||||
|
|
||||||
|
-- Marat Fayzullin <luarvique@gmail.com> Sat, 26 Aug 2023 16:12:00 +0000
|
||||||
|
|
||||||
openwebrx (1.2.26) bullseye jammy; urgency=low
|
openwebrx (1.2.26) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added autogenerated bookmarks based on EIBI schedules.
|
* Added autogenerated bookmarks based on EIBI schedules.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
_versionstring = "1.2.26"
|
_versionstring = "1.2.27"
|
||||||
looseversion = LooseVersion(_versionstring)
|
looseversion = LooseVersion(_versionstring)
|
||||||
openwebrx_version = "v{0}".format(looseversion)
|
openwebrx_version = "v{0}".format(looseversion)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue