diff --git a/CHANGELOG b/CHANGELOG index 8d730488e..a3ee54690 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +sdrangel (7.6.4-1) unstable; urgency=medium + + * M17: fixed build for Windows so now available in Windows. PR #1404 + * Use grey text for disabled widgets. PR #1402 + * Stack workspace: Use full width for spectrum when no channels. PR #1403 + * Fix c++17 compilation with MSVC. PR #1405 + + -- Edouard Griffiths, F4EXB Sat, 10 Sep 2022 19:12:31 +0200 + sdrangel (7.6.3-1) unstable; urgency=medium * NFM modulator: try to improve audio input diff --git a/CMakeLists.txt b/CMakeLists.txt index efd58cd9f..461e74c7b 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 "3") +set(sdrangel_VERSION_PATCH "4") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index ddc9690f5..b8234b3cd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sdrangel (7.6.4-1) unstable; urgency=medium + + * M17: fixed build for Windows so now available in Windows. PR #1404 + * Use grey text for disabled widgets. PR #1402 + * Stack workspace: Use full width for spectrum when no channels. PR #1403 + * Fix c++17 compilation with MSVC. PR #1405 + + -- Edouard Griffiths, F4EXB Sat, 10 Sep 2022 19:12:31 +0200 + sdrangel (7.6.3-1) unstable; urgency=medium * NFM modulator: try to improve audio input diff --git a/plugins/channelrx/demodm17/m17demodplugin.cpp b/plugins/channelrx/demodm17/m17demodplugin.cpp index 5e7827b13..4a65684ad 100644 --- a/plugins/channelrx/demodm17/m17demodplugin.cpp +++ b/plugins/channelrx/demodm17/m17demodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor M17DemodPlugin::m_pluginDescriptor = { M17Demod::m_channelId, QStringLiteral("M17 Demodulator"), - QStringLiteral("7.6.1"), + QStringLiteral("7.6.4"), 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 db35b2b3f..268326d72 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.2"), + QStringLiteral("7.6.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,