diff --git a/CHANGELOG b/CHANGELOG index 71628c61c..98d6d596d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ -sdrangel (5.7.10-1) unstable; urgency=medium +sdrangel (4.14.17-1) unstable; urgency=medium + + * Channel Analyzer: fixed sink apply channel settings. Fixes #569 and #570 + * Channel Analyzer: improved baseband thread management + * AM demod: improved baseband thread management + * DeviceUISet: fixed deleteChannel method in GUI. Fixes #568 + * Device API: fixes in MIMO case. Fixes #567 + * Channel Analyzer: let spectrum free running when in free running mode. Issue #571 + * RemoteInput: do not stop UDP handler when stop. Fixes #563 + + -- Edouard Griffiths, F4EXB Mon, 13 Jul 2020 22:12:45 +0200 + +sdrangel (4.14.16-1) unstable; urgency=medium * ATV demod: fixed initialization issues. Fixes #560 * GLSpectrum: synchronize spectrum with the GUI spectrum freeze button. Fixes issue #561 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c9a3ddf3..3d4325d49 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 "14") -set(sdrangel_VERSION_PATCH "16") +set(sdrangel_VERSION_PATCH "17") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index a06f2452b..17ed437ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +sdrangel (4.14.17-1) unstable; urgency=medium + + * Channel Analyzer: fixed sink apply channel settings. Fixes #569 and #570 + * Channel Analyzer: improved baseband thread management + * AM demod: improved baseband thread management + * DeviceUISet: fixed deleteChannel method in GUI. Fixes #568 + * Device API: fixes in MIMO case. Fixes #567 + * Channel Analyzer: let spectrum free running when in free running mode. Issue #571 + * RemoteInput: do not stop UDP handler when stop. Fixes #563 + + -- Edouard Griffiths, F4EXB Mon, 13 Jul 2020 22:12:45 +0200 + sdrangel (5.7.10-1) unstable; urgency=medium * ATV demod: fixed initialization issues. Fixes #560 diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index b135815e2..ffbcd16cd 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.14.14"), + QString("4.14.17"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodam/amdemodplugin.cpp b/plugins/channelrx/demodam/amdemodplugin.cpp index 476b565ef..15ebc48da 100644 --- a/plugins/channelrx/demodam/amdemodplugin.cpp +++ b/plugins/channelrx/demodam/amdemodplugin.cpp @@ -11,7 +11,7 @@ const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { AMDemod::m_channelId, QString("AM Demodulator"), - QString("4.14.14"), + QString("4.14.17"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true,