diff --git a/CHANGELOG b/CHANGELOG index ba7ff728b..d52b089da 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +sdrangel (6.6.2-1) unstable; urgency=medium + + * FileSink: File name handling in settings and API. PR #798 + * FileRecord: cut file only if sample rate changes. Implements #795 + * ChannelAnalyzer: Added Costas Loop PLL and more controls. PR #797 + * DATV: implemented soft LDPC external tool. Issue #785 + * Spectrum: removed FPS no limit setting. Fixes #793 + sdrangel (6.6.1-1) unstable; urgency=medium * GS-232 Controller feature: added ERC-M controller support. PR #788 diff --git a/CMakeLists.txt b/CMakeLists.txt index 21df20ae7..2276fcd02 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 "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 3b2f8db30..340596e34 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sdrangel (6.6.2-1) unstable; urgency=medium + + * FileSink: File name handling in settings and API. PR #798 + * FileRecord: cut file only if sample rate changes. Implements #795 + * ChannelAnalyzer: Added Costas Loop PLL and more controls. PR #797 + * DATV: implemented soft LDPC external tool. Issue #785 + * Spectrum: removed FPS no limit setting. Fixes #793 + sdrangel (6.6.1-1) unstable; urgency=medium * GS-232 Controller feature: added ERC-M controller support. PR #788 diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index 223a23865..e60477b55 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("4.21.1"), + QStringLiteral("6.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index 8b09ddddf..4be70034d 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QString("DATV Demodulator"), - QString("6.6.0"), + QString("6.6.2"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/filesink/filesinkplugin.cpp b/plugins/channelrx/filesink/filesinkplugin.cpp index 8c57309ba..287af616c 100644 --- a/plugins/channelrx/filesink/filesinkplugin.cpp +++ b/plugins/channelrx/filesink/filesinkplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = { FileSink::m_channelId, QStringLiteral("File Sink"), - QStringLiteral("6.6.0"), + QStringLiteral("6.6.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,