diff --git a/CHANGELOG b/CHANGELOG index 2e66cbec5..9719ebc59 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (7.8.4-1) unstable; urgency=medium + + * Adapt code to Qt6. PR #1518 + * Rotator controller: Fix initialisation of serial port. PR #1520 + * qo100_datv.py: device dependent log2 decimation + * Feature plugins: Make settings assignments atomic. Part of #1329 + * KiwiSDR: implement variable sample rate. Fixes #1523 + + -- Edouard Griffiths, F4EXB Thu, 01 Dec 2022 20:50:29 +0100 + sdrangel (7.8.3-1) unstable; urgency=medium * DemodAnalyzer: record audio. Part of #1330 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0da29ed14..bf82cd51c 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 "8") -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 531ec391d..c8a4f2086 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (7.8.4-1) unstable; urgency=medium + + * Adapt code to Qt6. PR #1518 + * Rotator controller: Fix initialisation of serial port. PR #1520 + * qo100_datv.py: device dependent log2 decimation + * Feature plugins: Make settings assignments atomic. Part of #1329 + * KiwiSDR: implement variable sample rate. Fixes #1523 + + -- Edouard Griffiths, F4EXB Thu, 01 Dec 2022 20:50:29 +0100 + sdrangel (7.8.3-1) unstable; urgency=medium * DemodAnalyzer: record audio. Part of #1330 diff --git a/fcdlib/fcdtraits.cpp b/fcdlib/fcdtraits.cpp index 5c40c8b48..db4c862d1 100644 --- a/fcdlib/fcdtraits.cpp +++ b/fcdlib/fcdtraits.cpp @@ -40,8 +40,8 @@ const char *fcd_traits::displayedName = "FunCube Dongle Pro+"; const char *fcd_traits::pluginDisplayedName = "FunCube Pro Input"; const char *fcd_traits::pluginDisplayedName = "FunCube Pro+ Input"; -const char *fcd_traits::pluginVersion = "7.8.2"; -const char *fcd_traits::pluginVersion = "7.8.2"; +const char *fcd_traits::pluginVersion = "7.8.4"; +const char *fcd_traits::pluginVersion = "7.8.4"; const int64_t fcd_traits::loLowLimitFreq = 64000000L; const int64_t fcd_traits::loLowLimitFreq = 150000L; diff --git a/plugins/feature/afc/afcplugin.cpp b/plugins/feature/afc/afcplugin.cpp index b95d47227..14e72f34e 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.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/ais/aisplugin.cpp b/plugins/feature/ais/aisplugin.cpp index 5efe74473..f76b67d90 100644 --- a/plugins/feature/ais/aisplugin.cpp +++ b/plugins/feature/ais/aisplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor AISPlugin::m_pluginDescriptor = { AIS::m_featureId, QStringLiteral("AIS"), - QStringLiteral("7.0.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/ambe/ambeplugin.cpp b/plugins/feature/ambe/ambeplugin.cpp index a37ef83a9..ad8794a47 100644 --- a/plugins/feature/ambe/ambeplugin.cpp +++ b/plugins/feature/ambe/ambeplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AMBEPlugin::m_pluginDescriptor = { AMBE::m_featureId, QStringLiteral("AMBE Controller"), - QStringLiteral("7.3.1"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/antennatools/antennatoolsplugin.cpp b/plugins/feature/antennatools/antennatoolsplugin.cpp index 6b91240b8..227511995 100644 --- a/plugins/feature/antennatools/antennatoolsplugin.cpp +++ b/plugins/feature/antennatools/antennatoolsplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { AntennaTools::m_featureId, QStringLiteral("Antenna Tools"), - QStringLiteral("7.0.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/aprs/aprsplugin.cpp b/plugins/feature/aprs/aprsplugin.cpp index d933f7f2b..1236d43e0 100644 --- a/plugins/feature/aprs/aprsplugin.cpp +++ b/plugins/feature/aprs/aprsplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor APRSPlugin::m_pluginDescriptor = { APRS::m_featureId, QStringLiteral("APRS"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index 2a7e0975c..c1e5d1b68 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.8.3"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index 82ea0ecbf..5a72b26b9 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp b/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp index e0e70fe6f..db025fa1b 100644 --- a/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp +++ b/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor JogdialControllerPlugin::m_pluginDescriptor = { JogdialController::m_featureId, QStringLiteral("Jogdial Controller"), - QStringLiteral("7.0.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/limerfe/limerfeplugin.cpp b/plugins/feature/limerfe/limerfeplugin.cpp index c0e6b8711..fc2ef11d3 100644 --- a/plugins/feature/limerfe/limerfeplugin.cpp +++ b/plugins/feature/limerfe/limerfeplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor LimeRFEPlugin::m_pluginDescriptor = { LimeRFE::m_featureId, QStringLiteral("LimeRFE USB Controller"), - QStringLiteral("7.6.3"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 49e2b83d6..ee0cee38b 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/pertester/pertesterplugin.cpp b/plugins/feature/pertester/pertesterplugin.cpp index 72f1ccf35..d0c32af4e 100644 --- a/plugins/feature/pertester/pertesterplugin.cpp +++ b/plugins/feature/pertester/pertesterplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = { PERTester::m_featureId, QStringLiteral("Packet Error Rate Tester"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/radiosonde/radiosondeplugin.cpp b/plugins/feature/radiosonde/radiosondeplugin.cpp index f593d3b05..6bfb11d48 100644 --- a/plugins/feature/radiosonde/radiosondeplugin.cpp +++ b/plugins/feature/radiosonde/radiosondeplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadiosondePlugin::m_pluginDescriptor = { Radiosonde::m_featureId, QStringLiteral("Radiosonde"), - QStringLiteral("7.0.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/rigctlserver/rigctlserverplugin.cpp b/plugins/feature/rigctlserver/rigctlserverplugin.cpp index eae88aac5..737b5abb5 100644 --- a/plugins/feature/rigctlserver/rigctlserverplugin.cpp +++ b/plugins/feature/rigctlserver/rigctlserverplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = { RigCtlServer::m_featureId, QStringLiteral("RigCtl Server"), - QStringLiteral("7.0.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index d253879f8..cb190d236 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index af8376466..226953ea7 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.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp index 6a1d7eb9d..6b09fce21 100644 --- a/plugins/feature/startracker/startrackerplugin.cpp +++ b/plugins/feature/startracker/startrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { StarTracker::m_featureId, QStringLiteral("Star Tracker"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp index 7329f50f0..ea205ca25 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("7.8.0"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp b/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp index 891aecd4e..800b9b5a6 100644 --- a/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp +++ b/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = { QStringLiteral("KiwiSDR"), QStringLiteral("KiwiSDR input"), - QStringLiteral("7.8.2"), + QStringLiteral("7.8.4"), QStringLiteral("(c) Vort (c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,