From c5a36c48a0632be5082816a80b7dbd24ed7aec91 Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 3 Nov 2020 13:15:25 +0100 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 14 ++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 14 ++++++++++++++ plugins/channelrx/chanalyzer/chanalyzerplugin.cpp | 2 +- plugins/channelrx/demodadsb/adsbplugin.cpp | 2 +- plugins/channelrx/demodnfm/nfmplugin.cpp | 2 +- plugins/channeltx/modnfm/nfmmodplugin.cpp | 2 +- .../samplesource/testsource/testsourceplugin.cpp | 2 +- 8 files changed, 34 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 30885d4de..a044c7895 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +sdrangel (4.21.1-1) unstable; urgency=medium + + * ADS-B demod: optimization of sync word correlation. Implements #675 + * ADS-B: added 2MS/s sample rate + * Fix and refactor FIR filter (from kasper93) + * NFMDemodSink: Fixes and minor refactoring (from kasper93). Issue #674 + * NFM: augmented CTCSS tones. Implements #664 + * CTCSS detector: fixed crash on destructor. Fixes #680 + * TestSource: fixed timer start/stop. Fixes issue #661 + * Main Window: fixed sampling device changed. Fixes #668 + * Scope MagSq trigger fix. Fixes #669 + + -- Edouard Griffiths, F4EXB Tue, 03 Nov 2020 12:11:25 +0100 + sdrangel (4.21.0-1) unstable; urgency=medium * New ADS-B demodulator and decoder. PR #671 diff --git a/CMakeLists.txt b/CMakeLists.txt index adb17700c..f64c31ac0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) # configure version set(sdrangel_VERSION_MAJOR "4") set(sdrangel_VERSION_MINOR "21") -set(sdrangel_VERSION_PATCH "0") +set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 118efddd4..c7eda0ca0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +sdrangel (4.21.1-1) unstable; urgency=medium + + * ADS-B demod: optimization of sync word correlation. Implements #675 + * ADS-B: added 2MS/s sample rate + * Fix and refactor FIR filter (from kasper93) + * NFMDemodSink: Fixes and minor refactoring (from kasper93). Issue #674 + * NFM: augmented CTCSS tones. Implements #664 + * CTCSS detector: fixed crash on destructor. Fixes #680 + * TestSource: fixed timer start/stop. Fixes issue #661 + * Main Window: fixed sampling device changed. Fixes #668 + * Scope MagSq trigger fix. Fixes #669 + + -- Edouard Griffiths, F4EXB Tue, 03 Nov 2020 12:11:25 +0100 + sdrangel (4.21.0-1) unstable; urgency=medium * New ADS-B demodulator and decoder. PR #671 diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index a38cba147..a9b596535 100644 --- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp @@ -26,7 +26,7 @@ const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { ChannelAnalyzer::m_channelId, QString("Channel Analyzer"), - QString("4.19.0"), + QString("4.21.1"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 36b8e8373..e15b69b7a 100644 --- a/plugins/channelrx/demodadsb/adsbplugin.cpp +++ b/plugins/channelrx/demodadsb/adsbplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { ADSBDemod::m_channelId, QString("ADS-B Demodulator"), - QString("4.21.0"), + QString("4.21.1"), QString("(c) Jon Beniston, M7RCE"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnfm/nfmplugin.cpp b/plugins/channelrx/demodnfm/nfmplugin.cpp index dea6ebfee..d0827fb11 100644 --- a/plugins/channelrx/demodnfm/nfmplugin.cpp +++ b/plugins/channelrx/demodnfm/nfmplugin.cpp @@ -12,7 +12,7 @@ const PluginDescriptor NFMPlugin::m_pluginDescriptor = { NFMDemod::m_channelId, QString("NFM Demodulator"), - QString("4.19.0"), + QString("4.21.1"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modnfm/nfmmodplugin.cpp b/plugins/channeltx/modnfm/nfmmodplugin.cpp index 6ac570eb4..2a5065c4b 100644 --- a/plugins/channeltx/modnfm/nfmmodplugin.cpp +++ b/plugins/channeltx/modnfm/nfmmodplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { NFMMod::m_channelId, QString("NFM Modulator"), - QString("4.19.0"), + QString("4.21.1"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/testsource/testsourceplugin.cpp b/plugins/samplesource/testsource/testsourceplugin.cpp index c3a885401..ba69f7270 100644 --- a/plugins/samplesource/testsource/testsourceplugin.cpp +++ b/plugins/samplesource/testsource/testsourceplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = { QString("TestSource"), QString("Test Source input"), - QString("4.19.0"), + QString("4.21.1"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true,