From d699271fcd6e17c71baefcaf0729513780987220 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 14 Aug 2022 11:52:25 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 15 ++++++++++++++- CMakeLists.txt | 2 +- debian/changelog | 13 +++++++++++++ plugins/channelrx/chanalyzer/chanalyzerplugin.cpp | 2 +- plugins/channeltx/modm17/m17modplugin.cpp | 2 +- plugins/channeltx/modwfm/wfmmodplugin.cpp | 2 +- plugins/feature/simpleptt/simplepttplugin.cpp | 2 +- .../remotetcpinput/remotetcpinputplugin.cpp | 2 +- 8 files changed, 33 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 25aa8f104..464a68e62 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +sdrangel (7.6.2-1) unstable; urgency=medium + + * MacOS build fixes. PR #1374 + * ChannelAnalyzer: apply fix for #892 only if the current trace mode is live. Fixes #1375 + * Call find_package for OpenCV on Windows for modatv. PR #1382. Fixes #1366 + * M17 mod: removed unwanted method declaration. Fixes #1380 + * RemoteTCPInput: Use input frequency offset when calculating local centre frequency. PR #1383. Fixes #1377 + * WFM mod: fixed bug in WFMGUI::applySettings. Fixes #1387 + * SimplePTT: fixed list of audio devices for VOX displaying output instead of input devices + * Removed stray comma in CmakeLists.txt. Complements #1310. Fixes #1388 + + -- Edouard Griffiths, F4EXB Sun, 14 Aug 2022 09:49:13 +0200 + sdrangel (7.6.1-1) unstable; urgency=medium * Fix map feature 5.15.4 check. PR #1370 @@ -8,7 +21,7 @@ sdrangel (7.6.1-1) unstable; urgency=medium * Corrected order of deletion of feature vs feature GUI. Fixes #1332 * Some OpenGL fixes. Issues #1351 #1359. PR #1361 - -- Edouard Griffiths, F4EXB Wed, 03 Aug 2022 16:46:27 +02004 + -- Edouard Griffiths, F4EXB Wed, 03 Aug 2022 16:46:27 +0200 sdrangel (7.6.0-1) unstable; urgency=medium diff --git a/CMakeLists.txt b/CMakeLists.txt index ae2b03a35..0405de3e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MINOR "6") -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 925a3a6f6..bd49c52b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sdrangel (7.6.2-1) unstable; urgency=medium + + * MacOS build fixes. PR #1374 + * ChannelAnalyzer: apply fix for #892 only if the current trace mode is live. Fixes #1375 + * Call find_package for OpenCV on Windows for modatv. PR #1382. Fixes #1366 + * M17 mod: removed unwanted method declaration. Fixes #1380 + * RemoteTCPInput: Use input frequency offset when calculating local centre frequency. PR #1383. Fixes #1377 + * WFM mod: fixed bug in WFMGUI::applySettings. Fixes #1387 + * SimplePTT: fixed list of audio devices for VOX displaying output instead of input devices + * Removed stray comma in CmakeLists.txt. Complements #1310. Fixes #1388 + + -- Edouard Griffiths, F4EXB Sun, 14 Aug 2022 09:49:13 +0200 + sdrangel (7.6.1-1) unstable; urgency=medium * Fix map feature 5.15.4 check. PR #1370 diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index 9e563b4cb..a733cb5a7 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, QStringLiteral("Channel Analyzer"), - QStringLiteral("7.0.0"), + QStringLiteral("7.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modm17/m17modplugin.cpp b/plugins/channeltx/modm17/m17modplugin.cpp index 039c42592..db35b2b3f 100644 --- a/plugins/channeltx/modm17/m17modplugin.cpp +++ b/plugins/channeltx/modm17/m17modplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor M17ModPlugin::m_pluginDescriptor = { M17Mod::m_channelId, QStringLiteral("M17 Modulator"), - QStringLiteral("7.6.1"), + QStringLiteral("7.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modwfm/wfmmodplugin.cpp b/plugins/channeltx/modwfm/wfmmodplugin.cpp index 5bfeccc0b..e74e4954c 100644 --- a/plugins/channeltx/modwfm/wfmmodplugin.cpp +++ b/plugins/channeltx/modwfm/wfmmodplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor WFMModPlugin::m_pluginDescriptor = { WFMMod::m_channelId, QStringLiteral("WFM Modulator"), - QStringLiteral("7.0.0"), + QStringLiteral("7.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index 009357a1a..cfc249ee9 100644 --- a/plugins/feature/simpleptt/simplepttplugin.cpp +++ b/plugins/feature/simpleptt/simplepttplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { SimplePTT::m_featureId, QStringLiteral("Simple PTT"), - QStringLiteral("7.0.0"), + QStringLiteral("7.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp index 2deb0c6e9..3236b32eb 100644 --- a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp +++ b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteTCPInput"), QStringLiteral("Remote TCP device input"), - QStringLiteral("7.6.0"), + QStringLiteral("7.6.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,