Preparing for the 1.2.27 release.

This commit is contained in:
Marat Fayzullin 2023-08-24 21:05:37 -04:00
parent 77b642abb3
commit 6ba024ad02
3 changed files with 24 additions and 1 deletions

View File

@ -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".

13
debian/changelog vendored
View File

@ -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
* Added autogenerated bookmarks based on EIBI schedules.

View File

@ -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)