Preparing for the next release.

This commit is contained in:
Marat Fayzullin 2024-09-07 18:38:58 -04:00
parent 15f79edf70
commit ee1edeb855
3 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,11 @@
**1.2.68**
- Added map display of completed FT8 calls.
- Added config to limit the number of shown calls.
- Added config to limit retention time of shown calls.
- Fixed HTTPS support by catching SSL-specific exception.
- Fixed and optimized map-related JavaScript code.
- [PgUp]/[PgDown] keys change center frequency, if allowed.
**1.2.67**
- Added keyboard shortcuts (press [?] for help).
- Added range check to the FFT overlap parameter.

11
debian/changelog vendored
View File

@ -1,3 +1,14 @@
openwebrx (1.2.68) bullseye jammy; urgency=low
* Added map display of completed FT8 calls.
* Added config to limit the number of shown calls.
* Added config to limit retention time of shown calls.
* Fixed HTTPS support by catching SSL-specific exception.
* Fixed and optimized map-related JavaScript code.
* [PgUp]/[PgDown] keys change center frequency, if allowed.
-- Marat Fayzullin <luarvique@gmail.com> Mon, 9 Sep 2024 16:12:00 +0000
openwebrx (1.2.67) bullseye jammy; urgency=low
* Added keyboard shortcuts (press [?] for help).

View File

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