diff --git a/CHANGELOG b/CHANGELOG index 26a7e1ef1..13c7c9490 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +sdrangel (6.17.7-1) unstable; urgency=medium + + * Simple PTT feature: added vox control. Implements #1002 + * Fix FileInput API report of absolute time following PR #981. PR #1094 + * Support compilation with Boost >= 1.77. Fix for #1087. PR #1092 + * Fixed some compiler warnings with Qt 5.15 and GCC 11 + + -- Edouard Griffiths, F4EXB Mon, 03 Jan 2022 18:24:33 +0100 + sdrangel (6.17.6-1) unstable; urgency=medium * Remote plugins: added capability to choose sample size in transmission. Implements #1078 diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b9b5789c..aa96a03a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MINOR "17") -set(sdrangel_VERSION_PATCH "6") +set(sdrangel_VERSION_PATCH "7") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index ba4184afc..6922750a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sdrangel (6.17.7-1) unstable; urgency=medium + + * Simple PTT feature: added vox control. Implements #1002 + * Fix FileInput API report of absolute time following PR #981. PR #1094 + * Support compilation with Boost >= 1.77. Fix for #1087. PR #1092 + * Fixed some compiler warnings with Qt 5.15 and GCC 11 + + -- Edouard Griffiths, F4EXB Mon, 03 Jan 2022 18:24:33 +0100 + sdrangel (6.17.6-1) unstable; urgency=medium * Remote plugins: added capability to choose sample size in transmission. Implements #1078 diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index d7cf56163..00bc5c162 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("6.17.2"), + QStringLiteral("6.17.7"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/fileinput/fileinputplugin.cpp b/plugins/samplesource/fileinput/fileinputplugin.cpp index e7ef10d79..35c3190ae 100644 --- a/plugins/samplesource/fileinput/fileinputplugin.cpp +++ b/plugins/samplesource/fileinput/fileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { QStringLiteral("FileInput"), QStringLiteral("File device input"), - QStringLiteral("6.17.5"), + QStringLiteral("6.17.7"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,