diff --git a/CHANGELOG.md b/CHANGELOG.md index f8679ce2..9a476d06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/debian/changelog b/debian/changelog index 7532ed4c..833ade56 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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. diff --git a/owrx/version.py b/owrx/version.py index f48d4487..a7fc5af7 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -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)