diff --git a/CHANGELOG b/CHANGELOG index ccf7ecc70..1695059aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +sdrangel (7.17.0-1) unstable; urgency=medium + + * Add frequency scanner channel plugin. PR #1852 + * Implementation of Mac OS CI. PR #1841 + * Change down and up channelizers filter chain strategy. Fixes #1846 + * Fix race condition that can result in a crash or hang. PR #1854 + * DSC Demod: initialise m_scopeSink. PR #1854 + * Fix FFT Overlap for spectrum view. PR #1856 + * Various ADS-B enhancements. PR #1861 + * Use channel sample rate of 48k in RTTY and PSK31 mods. Fixes #1862. PR #1865 + + -- Edouard Griffiths, F4EXB Sun, 29 Oct 2023 04:21:18 +0100 + sdrangel (7.16.0-1) unstable; urgency=medium * Added RTTY modulator. PR #1800 diff --git a/CMakeLists.txt b/CMakeLists.txt index f300ba8ec..97640bfb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "16") +set(sdrangel_VERSION_MINOR "17") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index 29a1859b8..6e2a9b0ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sdrangel (7.17.0-1) unstable; urgency=medium + + * Add frequency scanner channel plugin. PR #1852 + * Implementation of Mac OS CI. PR #1841 + * Change down and up channelizers filter chain strategy. Fixes #1846 + * Fix race condition that can result in a crash or hang. PR #1854 + * DSC Demod: initialise m_scopeSink. PR #1854 + * Fix FFT Overlap for spectrum view. PR #1856 + * Various ADS-B enhancements. PR #1861 + * Use channel sample rate of 48k in RTTY and PSK31 mods. Fixes #1862. PR #1865 + + -- Edouard Griffiths, F4EXB Sun, 29 Oct 2023 04:21:18 +0100 + sdrangel (7.16.0-1) unstable; urgency=medium * Added RTTY modulator. PR #1800 diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index bad85348b..2b245f091 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, QStringLiteral("ADS-B Demodulator"), - QStringLiteral("7.16.0"), + QStringLiteral("7.17.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddsc/dscdemodplugin.cpp b/plugins/channelrx/demoddsc/dscdemodplugin.cpp index 48627aa54..29dd92567 100644 --- a/plugins/channelrx/demoddsc/dscdemodplugin.cpp +++ b/plugins/channelrx/demoddsc/dscdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DSCDemodPlugin::m_pluginDescriptor = { DSCDemod::m_channelId, QStringLiteral("DSC Demodulator"), - QStringLiteral("7.14.0"), + QStringLiteral("7.17.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpsk31/psk31modplugin.cpp b/plugins/channeltx/modpsk31/psk31modplugin.cpp index e500b04d6..6afb20288 100644 --- a/plugins/channeltx/modpsk31/psk31modplugin.cpp +++ b/plugins/channeltx/modpsk31/psk31modplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PSK31Plugin::m_pluginDescriptor = { PSK31::m_channelId, QStringLiteral("PSK31 Modulator"), - QStringLiteral("7.16.0"), + QStringLiteral("7.17.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modrtty/rttymodplugin.cpp b/plugins/channeltx/modrtty/rttymodplugin.cpp index 1f939dbca..b00044f10 100644 --- a/plugins/channeltx/modrtty/rttymodplugin.cpp +++ b/plugins/channeltx/modrtty/rttymodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RttyModPlugin::m_pluginDescriptor = { RttyMod::m_channelId, QStringLiteral("RTTY Modulator"), - QStringLiteral("7.16.0"), + QStringLiteral("7.17.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,