Preparing for 1.2.16 release.

This commit is contained in:
Marat Fayzullin 2023-05-21 10:56:24 -04:00
parent cfd9221054
commit 5ac51fc3cc
3 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,10 @@
**1.2.16**
- Added ability to change center frequency by right-clicking arrow buttons.
- Added an option to allow audio recording (on by default).
- Added an option to allow center frequency changes (off by default).
- Added an option to require magic key for center frequency changes.
- Added 10Hz, 20Hz, and 50Hz steps for CW listeners.
**1.2.15**
- Added scanner, enabled with right click on SQ button.
- Scanner scans bookmarks using the current squelch level.

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
openwebrx (1.2.16) bullseye jammy; urgency=low
* Added ability to change center frequency by right-clicking arrow buttons.
* Added an option to allow audio recording (on by default).
* Added an option to allow center frequency changes (off by default).
* Added an option to require magic key for center frequency changes.
* Added 10Hz, 20Hz, and 50Hz steps for CW listeners.
-- Marat Fayzullin <luarvique@gmail.com> Sat, 20 May 2023 16:12:00 +0000
openwebrx (1.2.15) bullseye jammy; urgency=low
* Added scanner, enabled with right click on SQ button.

View File

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