diff --git a/CHANGELOG b/CHANGELOG index 7a0ce4d3a..03a417cbf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +sdrangel (7.12.0-1) unstable; urgency=medium + + - New Aaronia input (Rx) plugin + - Channel analyzer: engage rational down sampler also when no channel decimation takes place. Fixes #1622 + - Display rotator on Star Tracker and Satellite Tracker polar charts for #1641. PR #1650 + - AFC and Demod Analyzer: fixed message queue disconnect. Fixes #1634 + - Fixed ValueDial value settings when it is equal to previous value + - DATV demod: GUI: set RF bandwidth with standard SR + - Airspy: corrected transverter frequency and mode setting from GUI + + -- Edouard Griffiths, F4EXB Thu, 06 Apr 2023 20:38:25 +0200 + sdrangel (7.12.0-1) unstable; urgency=medium - New ILS demod plugin. PR #1635 diff --git a/CMakeLists.txt b/CMakeLists.txt index eee94db4a..dcfc67c2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "12") +set(sdrangel_VERSION_MINOR "13") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index bfecb8c47..f8a1f2650 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +sdrangel (7.12.0-1) unstable; urgency=medium + + - New Aaronia input (Rx) plugin + - Channel analyzer: engage rational down sampler also when no channel decimation takes place. Fixes #1622 + - Display rotator on Star Tracker and Satellite Tracker polar charts for #1641. PR #1650 + - AFC and Demod Analyzer: fixed message queue disconnect. Fixes #1634 + - Fixed ValueDial value settings when it is equal to previous value + - DATV demod: GUI: set RF bandwidth with standard SR + - Airspy: corrected transverter frequency and mode setting from GUI + + -- Edouard Griffiths, F4EXB Thu, 06 Apr 2023 20:38:25 +0200 + sdrangel (7.12.0-1) unstable; urgency=medium - New ILS demod plugin. PR #1635 diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index a733cb5a7..7eb8e44f4 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.6.2"), + QStringLiteral("7.13.0"), 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 1d599a9fb..4df5b40b0 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, QStringLiteral("DATV Demodulator"), - QStringLiteral("7.12.0"), + QStringLiteral("7.13.0"), QStringLiteral("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/afc/afcplugin.cpp b/plugins/feature/afc/afcplugin.cpp index 14e72f34e..a80a4102e 100644 --- a/plugins/feature/afc/afcplugin.cpp +++ b/plugins/feature/afc/afcplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AFCPlugin::m_pluginDescriptor = { AFC::m_featureId, QStringLiteral("AFC"), - QStringLiteral("7.8.4"), + QStringLiteral("7.13.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index a168e97d8..c841a0ab2 100644 --- a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { DemodAnalyzer::m_featureId, QStringLiteral("Demod Analyzer"), - QStringLiteral("7.10.0"), + QStringLiteral("7.13.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp b/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp index a1bafcae7..f106b25aa 100644 --- a/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp +++ b/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor AaroniaRTSAInputPlugin::m_pluginDescriptor = { QStringLiteral("AaroniaRTSA"), QStringLiteral("AaroniaRTSA input"), - QStringLiteral("7.12.0"), + QStringLiteral("7.13.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/airspy/airspyplugin.cpp b/plugins/samplesource/airspy/airspyplugin.cpp index 2139df16c..9254e4186 100644 --- a/plugins/samplesource/airspy/airspyplugin.cpp +++ b/plugins/samplesource/airspy/airspyplugin.cpp @@ -37,7 +37,7 @@ const int AirspyPlugin::m_maxDevices = 32; const PluginDescriptor AirspyPlugin::m_pluginDescriptor = { QStringLiteral("Airspy"), QStringLiteral("Airspy Input"), - QStringLiteral("7.8.2"), + QStringLiteral("7.13.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,