diff --git a/CHANGELOG b/CHANGELOG index a7c7ee3f1..8e46e180a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +sdrangel (7.17.2-1) unstable; urgency=medium + + * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905 + * DSD demod: Upgrade dsdcc to 1.9.5. Fixes #1878 + * Scope: Added derivative of magnitude squared to the list of projections + * SSB demod: mitigate AGC steep transitions causing audio clicks + * SSB demod: tie AGC steep transition correction to AGC clamping + * Fix AirspyHF instant replay. PR #1905 + * Fix sdrplay shared library name on Mac arm64, as incorrect in 3.12 API release. PR #1905 + * SDRPlay V3 API - don't call close unless open was a success, as will crash on Mac. PR #1905 + * Add dialog positioner for audio select dialog. PR #1905 + * Display FIFO size on overflow. PR #1905 + * Freq scanner: Stop scanning when Tune menu selected. PR #1905 + + -- Edouard Griffiths, F4EXB Mon, 04 Dec 2023 20:35:40 +0100 + sdrangel (7.17.1-1) unstable; urgency=medium * Fixes to Mac build. PR #1869 diff --git a/CMakeLists.txt b/CMakeLists.txt index f1b04ea0d..a38e27335 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MINOR "17") -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 7f5a9d6ba..c49b49546 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +sdrangel (7.17.2-1) unstable; urgency=medium + + * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905 + * DSD demod: Upgrade dsdcc to 1.9.5. Fixes #1878 + * Scope: Added derivative of magnitude squared to the list of projections + * SSB demod: mitigate AGC steep transitions causing audio clicks + * SSB demod: tie AGC steep transition correction to AGC clamping + * Fix AirspyHF instant replay. PR #1905 + * Fix sdrplay shared library name on Mac arm64, as incorrect in 3.12 API release. PR #1905 + * SDRPlay V3 API - don't call close unless open was a success, as will crash on Mac. PR #1905 + * Add dialog positioner for audio select dialog. PR #1905 + * Display FIFO size on overflow. PR #1905 + * Freq scanner: Stop scanning when Tune menu selected. PR #1905 + + -- Edouard Griffiths, F4EXB Mon, 04 Dec 2023 20:35:40 +0100 + sdrangel (7.17.1-1) unstable; urgency=medium * Fixes to Mac build. PR #1869 diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp index cf05cff68..adaf7178a 100644 --- a/plugins/channelrx/demodssb/ssbplugin.cpp +++ b/plugins/channelrx/demodssb/ssbplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SSBPlugin::m_pluginDescriptor = { SSBDemod::m_channelId, QStringLiteral("SSB Demodulator"), - QStringLiteral("7.10.0"), + QStringLiteral("7.17.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqscanner/freqscannerplugin.cpp b/plugins/channelrx/freqscanner/freqscannerplugin.cpp index 05dedd0c9..72623a25d 100644 --- a/plugins/channelrx/freqscanner/freqscannerplugin.cpp +++ b/plugins/channelrx/freqscanner/freqscannerplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = { FreqScanner::m_channelId, QStringLiteral("Frequency Scanner"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 8bc65a17c..56d1b9df9 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index a900b67ec..2e55e1f2f 100644 --- a/plugins/feature/simpleptt/simplepttplugin.cpp +++ b/plugins/feature/simpleptt/simplepttplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { SimplePTT::m_featureId, QStringLiteral("Simple PTT"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/airspyhf/airspyhfplugin.cpp b/plugins/samplesource/airspyhf/airspyhfplugin.cpp index 394471fee..b95002584 100644 --- a/plugins/samplesource/airspyhf/airspyhfplugin.cpp +++ b/plugins/samplesource/airspyhf/airspyhfplugin.cpp @@ -37,7 +37,7 @@ const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = { QStringLiteral("AirspyHF"), QStringLiteral("AirspyHF Input"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.2"), 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 9c463b311..c67f7c1fe 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("7.17.1"), + QStringLiteral("7.17.2"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,