From 0715fc5d69235c8466dd830649790ff7b8542b0f Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 5 Mar 2022 04:58:19 +0100 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 12 ++++++++++++ CMakeLists.txt | 4 ++-- debian/changelog | 12 ++++++++++++ plugins/channelrx/demoddatv/datvdemodplugin.cpp | 2 +- plugins/channelrx/demodvorsc/vordemodscplugin.cpp | 2 +- plugins/feature/afc/afcplugin.cpp | 2 +- .../gs232controller/gs232controllerplugin.cpp | 2 +- plugins/feature/vorlocalizer/vorlocalizerplugin.cpp | 2 +- .../samplesource/limesdrinput/limesdrinputplugin.cpp | 2 +- plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp | 2 +- plugins/samplesource/usrpinput/usrpinputplugin.cpp | 2 +- 11 files changed, 34 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a16dadcf0..dda5c13f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +sdrangel (6.20.0-1) unstable; urgency=medium + + * New radiosonde plugin. PR #1170. Implements #1081. + * Message pipes rework. Partially implements #1154 + * Lime SDR inout: fix antenna names in GUI combobox. PR #1162 + * HttpDownloadManager - Fix Google Drive downloads. PR #1164 + * Rotator controller: Open/close serial ports in worker thread. Issue #1153. PR #1171 + * SDRPlayV2 and USRP: Ensure decimation length is power of two. Issue #1161, PR #1172 + * ValueDialZ: fix find exponent. Issue #1158 + + -- Edouard Griffiths, F4EXB Sat, 05 Mar 2022 03:56:54 +0100 + sdrangel (6.19.1-1) unstable; urgency=medium * Fix stereo sound in DAB demod. PR #1150. diff --git a/CMakeLists.txt b/CMakeLists.txt index 872b50002..db7e0321c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") -set(sdrangel_VERSION_MINOR "19") -set(sdrangel_VERSION_PATCH "1") +set(sdrangel_VERSION_MINOR "20") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 7d3f68355..250839331 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +sdrangel (6.20.0-1) unstable; urgency=medium + + * New radiosonde plugin. PR #1170. Implements #1081. + * Message pipes rework. Partially implements #1154 + * Lime SDR inout: fix antenna names in GUI combobox. PR #1162 + * HttpDownloadManager - Fix Google Drive downloads. PR #1164 + * Rotator controller: Open/close serial ports in worker thread. Issue #1153. PR #1171 + * SDRPlayV2 and USRP: Ensure decimation length is power of two. Issue #1161, PR #1172 + * ValueDialZ: fix find exponent. Issue #1158 + + -- Edouard Griffiths, F4EXB Sat, 05 Mar 2022 03:56:54 +0100 + sdrangel (6.19.1-1) unstable; urgency=medium * Fix stereo sound in DAB demod. PR #1150. diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index af9f5691d..956095928 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QString("DATV Demodulator"), - QString("6.19.1"), + QString("6.20.0"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodvorsc/vordemodscplugin.cpp b/plugins/channelrx/demodvorsc/vordemodscplugin.cpp index 1b3831194..6e94519bb 100644 --- a/plugins/channelrx/demodvorsc/vordemodscplugin.cpp +++ b/plugins/channelrx/demodvorsc/vordemodscplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORDemodSCPlugin::m_pluginDescriptor = { VORDemodSC::m_channelId, QStringLiteral("VOR Single Channel Demodulator"), - QStringLiteral("6.18.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/afc/afcplugin.cpp b/plugins/feature/afc/afcplugin.cpp index 2ef20a0ed..b48c3b45e 100644 --- a/plugins/feature/afc/afcplugin.cpp +++ b/plugins/feature/afc/afcplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AFCPlugin::m_pluginDescriptor = { AFC::m_featureId, QStringLiteral("AFC"), - QStringLiteral("6.18.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index 487cbbd6c..768ed4522 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("6.18.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp index 667b0463b..77d42840b 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("6.18.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp index da48fe530..a8e362397 100644 --- a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp +++ b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR Input"), - QStringLiteral("4.19.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index fb69d2e3e..9aa45d703 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("6.19.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/usrpinput/usrpinputplugin.cpp b/plugins/samplesource/usrpinput/usrpinputplugin.cpp index 43ac46939..d98834d3b 100644 --- a/plugins/samplesource/usrpinput/usrpinputplugin.cpp +++ b/plugins/samplesource/usrpinput/usrpinputplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("USRP Input"), - QStringLiteral("4.21.0"), + QStringLiteral("6.20.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,