diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a5df8c3..25dab4b2 100644 --- a/CHANGELOG.md +++ b/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** - Added autogenerated bookmarks based on EIBI schedules. - Set bookmark search range (km) in "Settings | General | Display". diff --git a/debian/changelog b/debian/changelog index 53b508c1..d3ddf3d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 26 Aug 2023 16:12:00 +0000 + openwebrx (1.2.26) bullseye jammy; urgency=low * Added autogenerated bookmarks based on EIBI schedules. diff --git a/owrx/version.py b/owrx/version.py index 7ed8430c..622c8389 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.26" +_versionstring = "1.2.27" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)