From 6900fd150a94ec6efff185a9cb2bf71d5414cb06 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Mon, 22 May 2023 15:54:44 -0400 Subject: [PATCH] Preparing for the 1.2.17 bugfix release. --- CHANGELOG.md | 4 ++++ debian/changelog | 7 +++++++ owrx/version.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a476d06..d0260cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +**1.2.17** +- Fixed center frequency modifications surviving profile change. +- Fixed waterfall colors resetting when changing center frequency. + **1.2.16** - Added ability to change center frequency by right-clicking arrow buttons. - Added an option to allow audio recording (on by default). diff --git a/debian/changelog b/debian/changelog index 833ade56..933f78a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +openwebrx (1.2.17) bullseye jammy; urgency=low + + * Fixed center frequency modifications surviving profile change. + * Fixed waterfall colors resetting when changing center frequency. + + -- Marat Fayzullin Tue, 23 May 2023 16:12:00 +0000 + openwebrx (1.2.16) bullseye jammy; urgency=low * Added ability to change center frequency by right-clicking arrow buttons. diff --git a/owrx/version.py b/owrx/version.py index a7fc5af7..dbf04b75 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.16" +_versionstring = "1.2.17" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)