diff --git a/CHANGELOG b/CHANGELOG index 42987aa42..9a44bf74b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel ((4.15.2-1) unstable; urgency=medium + + * UDP Source: added ability to join multicast group. Implements #610 + * Fixed SDRIQ file recorder adding header multiple times + * RollupWidget: fixed collapse section header not showing up. Fixes #608 + * NFM demod: correct discri setFMScaling when applying audio sample rate + * GLScope and GLSpectrum: removed useless calls to cleanup() in destructor + + -- Edouard Griffiths, F4EXB Tue, 25 Aug 2020 19:02:34 +0200 + sdrangel (4.15.1-1) unstable; urgency=medium * ATV Demod: implementation of arbitrary sample rate. Implements #594 diff --git a/CMakeLists.txt b/CMakeLists.txt index 936d2bfb8..b2bbbf00e 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 "15") -set(sdrangel_VERSION_PATCH "1") +set(sdrangel_VERSION_PATCH "2") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 58af57b8d..503028d93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (4.15.2-1) unstable; urgency=medium + + * UDP Source: added ability to join multicast group. Implements #610 + * Fixed SDRIQ file recorder adding header multiple times + * RollupWidget: fixed collapse section header not showing up. Fixes #608 + * NFM demod: correct discri setFMScaling when applying audio sample rate + * GLScope and GLSpectrum: removed useless calls to cleanup() in destructor + + -- Edouard Griffiths, F4EXB Tue, 25 Aug 2020 19:02:34 +0200 + sdrangel (4.15.1-1) unstable; urgency=medium * ATV Demod: implementation of arbitrary sample rate. Implements #594 diff --git a/plugins/channelrx/demodnfm/nfmplugin.cpp b/plugins/channelrx/demodnfm/nfmplugin.cpp index b163ce8b3..9063747f1 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.12.3"), + QString("4.15.2"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/udpsource/udpsourceplugin.cpp b/plugins/channeltx/udpsource/udpsourceplugin.cpp index c201c4ddb..ea79010b3 100644 --- a/plugins/channeltx/udpsource/udpsourceplugin.cpp +++ b/plugins/channeltx/udpsource/udpsourceplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = { UDPSource::m_channelId, QString("UDP Channel Source"), - QString("4.14.14"), + QString("4.15.2"), QString("(c) Edouard Griffiths, F4EXB"), QString("https://github.com/f4exb/sdrangel"), true,