Preparing for 1.2.26 release.

This commit is contained in:
Marat Fayzullin 2023-08-18 00:26:25 -04:00
parent f43ce84334
commit 60994358c3
3 changed files with 24 additions and 1 deletions

View File

@ -1,3 +1,13 @@
**1.2.26**
- Added autogenerated bookmarks based on EIBI schedules.
- The bookmark search range is set in "Settings | General | Display".
- The bookmark search range can be set per profile.
- Set range to zero to disable autogenerated bookmarks.
- Fixed locked source switch resetting it for all connections.
- Separated default bookmarks by type, removing rarely used.
- Fixed fax frequency for Pevek.
- Improved EIBI parser a bit.
**1.2.25**
- Refactored maps, extracting implementation independent code.
- Added Leaflet-based maps by Stanislav Lechev (LZ2SLL).

13
debian/changelog vendored
View File

@ -1,3 +1,16 @@
openwebrx (1.2.26) bullseye jammy; urgency=low
* Added autogenerated bookmarks based on EIBI schedules.
* The bookmark search range is set in "Settings | General | Display".
* The bookmark search range can be set per profile.
* Set range to zero to disable autogenerated bookmarks.
* Fixed locked source switch resetting it for all connections.
* Separated default bookmarks by type, removing rarely used.
* Fixed fax frequency for Pevek.
* Improved EIBI parser a bit.
-- Marat Fayzullin <luarvique@gmail.com> Sat, 19 Aug 2023 16:12:00 +0000
openwebrx (1.2.25) bullseye jammy; urgency=low
* Refactored maps, extracting implementation independent code.

View File

@ -1,5 +1,5 @@
from distutils.version import LooseVersion
_versionstring = "1.2.25"
_versionstring = "1.2.26"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)