diff --git a/CHANGELOG b/CHANGELOG index f90aeef068..e9875fb690 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +sdrangel (7.21.4-1) unstable; urgency=medium + + * Code fixes. PR #2184 + * Do not save the settings twice. PR #2182 + * FreqScanner: Add HF ATC channels preset. PR #2181 + * FreqScanner: Add API action to run scan. Add scan results to channel report. PR #2181 + * FreqScanner: Add scanState to FreqScanner Report. PR #2181 + * Configurations dialog: Fix slot names. PR #2180 + * AIS: Validate message length. Fixes #2125. PR #2180 + * ILS Demod. Save frequency when switching between LOC and G/S. PR #2180 + * ILS Demod. Set frequency for ident when in G/S mode. Fixes #2177. PR #2180 + * Heat Map: Handle memory allocation errors. PR #2175 + * Heat Map: Allow selecting which data to be saved to reduce memory requirements. PR #2175 + * ILS Demod: Add DDM/SDM/Deviation to channel report. PR #2174 + + -- Edouard Griffiths, F4EXB Tue, 25 Jun 2024 20:17:52 +0200 + sdrangel (7.21.3-1) unstable; urgency=medium * Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155 diff --git a/CMakeLists.txt b/CMakeLists.txt index 95cbd5b9f7..d85bcf88f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MINOR "21") -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 3b95bc7267..4d45d5c559 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +sdrangel (7.21.4-1) unstable; urgency=medium + + * Code fixes. PR #2184 + * Do not save the settings twice. PR #2182 + * FreqScanner: Add HF ATC channels preset. PR #2181 + * FreqScanner: Add API action to run scan. Add scan results to channel report. PR #2181 + * FreqScanner: Add scanState to FreqScanner Report. PR #2181 + * Configurations dialog: Fix slot names. PR #2180 + * AIS: Validate message length. Fixes #2125. PR #2180 + * ILS Demod. Save frequency when switching between LOC and G/S. PR #2180 + * ILS Demod. Set frequency for ident when in G/S mode. Fixes #2177. PR #2180 + * Heat Map: Handle memory allocation errors. PR #2175 + * Heat Map: Allow selecting which data to be saved to reduce memory requirements. PR #2175 + * ILS Demod: Add DDM/SDM/Deviation to channel report. PR #2174 + + -- Edouard Griffiths, F4EXB Tue, 25 Jun 2024 20:17:52 +0200 + sdrangel (7.21.3-1) unstable; urgency=medium * Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155 diff --git a/plugins/channelmimo/doa2/doa2plugin.cpp b/plugins/channelmimo/doa2/doa2plugin.cpp index 843eb2cd12..075464802a 100644 --- a/plugins/channelmimo/doa2/doa2plugin.cpp +++ b/plugins/channelmimo/doa2/doa2plugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor DOA2Plugin::m_pluginDescriptor = { DOA2::m_channelId, QStringLiteral("DOA 2 sources"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/interferometer/interferometerplugin.cpp b/plugins/channelmimo/interferometer/interferometerplugin.cpp index 867cce9375..b6b8939787 100644 --- a/plugins/channelmimo/interferometer/interferometerplugin.cpp +++ b/plugins/channelmimo/interferometer/interferometerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { Interferometer::m_channelId, QStringLiteral("Interferometer"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index 651e3b8e81..1bc0188747 100644 --- a/plugins/channelrx/demodais/aisdemodplugin.cpp +++ b/plugins/channelrx/demodais/aisdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { AISDemod::m_channelId, QStringLiteral("AIS Demodulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddsd/dsddemodplugin.cpp b/plugins/channelrx/demoddsd/dsddemodplugin.cpp index fa2236053c..2d9a834443 100644 --- a/plugins/channelrx/demoddsd/dsddemodplugin.cpp +++ b/plugins/channelrx/demoddsd/dsddemodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { DSDDemod::m_channelId, QStringLiteral("DSD Demodulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodils/ilsdemodplugin.cpp b/plugins/channelrx/demodils/ilsdemodplugin.cpp index 64c192ebde..99bb14befd 100644 --- a/plugins/channelrx/demodils/ilsdemodplugin.cpp +++ b/plugins/channelrx/demodils/ilsdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor ILSDemodPlugin::m_pluginDescriptor = { ILSDemod::m_channelId, QStringLiteral("ILS Demodulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodwfm/wfmplugin.cpp b/plugins/channelrx/demodwfm/wfmplugin.cpp index 70c7310451..b4a1610466 100644 --- a/plugins/channelrx/demodwfm/wfmplugin.cpp +++ b/plugins/channelrx/demodwfm/wfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor WFMPlugin::m_pluginDescriptor = { WFMDemod::m_channelId, QStringLiteral("WFM Demodulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqscanner/freqscannerplugin.cpp b/plugins/channelrx/freqscanner/freqscannerplugin.cpp index e7f799e9b6..572e06a3e2 100644 --- a/plugins/channelrx/freqscanner/freqscannerplugin.cpp +++ b/plugins/channelrx/freqscanner/freqscannerplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = { FreqScanner::m_channelId, QStringLiteral("Frequency Scanner"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index c69df1cfe8..22cbcd1c8d 100644 --- a/plugins/channelrx/heatmap/heatmapplugin.cpp +++ b/plugins/channelrx/heatmap/heatmapplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = { HeatMap::m_channelId, QStringLiteral("Heat Map"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp index 779ad40de6..5320e07621 100644 --- a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp +++ b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = { IEEE_802_15_4_Mod::m_channelId, QStringLiteral("802.15.4 Modulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modais/aismodplugin.cpp b/plugins/channeltx/modais/aismodplugin.cpp index e03be395b4..8bcca6627a 100644 --- a/plugins/channeltx/modais/aismodplugin.cpp +++ b/plugins/channeltx/modais/aismodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AISModPlugin::m_pluginDescriptor = { AISMod::m_channelId, QStringLiteral("AIS Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp index e7df011c45..36e9cbad73 100644 --- a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp +++ b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { ChirpChatMod::m_channelId, QStringLiteral("ChirpChat Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/moddatv/datvmodplugin.cpp b/plugins/channeltx/moddatv/datvmodplugin.cpp index 0f4384070a..e2bd06b391 100644 --- a/plugins/channeltx/moddatv/datvmodplugin.cpp +++ b/plugins/channeltx/moddatv/datvmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { DATVMod::m_channelId, QStringLiteral("DATV Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpacket/packetmodplugin.cpp b/plugins/channeltx/modpacket/packetmodplugin.cpp index adc6fbb8ee..12b8125e0f 100644 --- a/plugins/channeltx/modpacket/packetmodplugin.cpp +++ b/plugins/channeltx/modpacket/packetmodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { PacketMod::m_channelId, QStringLiteral("Packet Modulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpsk31/psk31modplugin.cpp b/plugins/channeltx/modpsk31/psk31modplugin.cpp index d01a9ec1c4..a47738fef1 100644 --- a/plugins/channeltx/modpsk31/psk31modplugin.cpp +++ b/plugins/channeltx/modpsk31/psk31modplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PSK31Plugin::m_pluginDescriptor = { PSK31::m_channelId, QStringLiteral("PSK31 Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modrtty/rttymodplugin.cpp b/plugins/channeltx/modrtty/rttymodplugin.cpp index 58bedaa382..eaef7100a1 100644 --- a/plugins/channeltx/modrtty/rttymodplugin.cpp +++ b/plugins/channeltx/modrtty/rttymodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RttyModPlugin::m_pluginDescriptor = { RttyMod::m_channelId, QStringLiteral("RTTY Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/ais/aisplugin.cpp b/plugins/feature/ais/aisplugin.cpp index 705647ae72..1dc2c57d40 100644 --- a/plugins/feature/ais/aisplugin.cpp +++ b/plugins/feature/ais/aisplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor AISPlugin::m_pluginDescriptor = { AIS::m_featureId, QStringLiteral("AIS"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/antennatools/antennatoolsplugin.cpp b/plugins/feature/antennatools/antennatoolsplugin.cpp index 384dc37aa1..f2d7f39f46 100644 --- a/plugins/feature/antennatools/antennatoolsplugin.cpp +++ b/plugins/feature/antennatools/antennatoolsplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { AntennaTools::m_featureId, QStringLiteral("Antenna Tools"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 2a63be4ab3..7e48596062 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/morsedecoder/morsedecoderplugin.cpp b/plugins/feature/morsedecoder/morsedecoderplugin.cpp index f706c2c42e..352fdf08f5 100644 --- a/plugins/feature/morsedecoder/morsedecoderplugin.cpp +++ b/plugins/feature/morsedecoder/morsedecoderplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = { MorseDecoder::m_featureId, QStringLiteral("Morse Decoder"), - QStringLiteral("7.21.2"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index 8f01d6eaf8..9a4279bcd8 100644 --- a/plugins/feature/simpleptt/simplepttplugin.cpp +++ b/plugins/feature/simpleptt/simplepttplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { SimplePTT::m_featureId, QStringLiteral("Simple PTT"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp b/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp index 952b3ce8a1..88614f145e 100644 --- a/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp +++ b/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor AudioCATSISOPlugin::m_pluginDescriptor = { QStringLiteral("AudioCATSISO"), QStringLiteral("Audio CAT SISO"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/bladerf2mimo/bladerf2mimoplugin.cpp b/plugins/samplemimo/bladerf2mimo/bladerf2mimoplugin.cpp index 94f8606146..170252574f 100644 --- a/plugins/samplemimo/bladerf2mimo/bladerf2mimoplugin.cpp +++ b/plugins/samplemimo/bladerf2mimo/bladerf2mimoplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = { QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2 MIMO"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/limesdrmimo/limesdrmimoplugin.cpp b/plugins/samplemimo/limesdrmimo/limesdrmimoplugin.cpp index 8edd2ce3e0..b698df280d 100644 --- a/plugins/samplemimo/limesdrmimo/limesdrmimoplugin.cpp +++ b/plugins/samplemimo/limesdrmimo/limesdrmimoplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = { QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR MIMO"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/metismiso/metismisoplugin.cpp b/plugins/samplemimo/metismiso/metismisoplugin.cpp index 831675f71f..18ebdca3ef 100644 --- a/plugins/samplemimo/metismiso/metismisoplugin.cpp +++ b/plugins/samplemimo/metismiso/metismisoplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = { QStringLiteral("MetisMISO"), QStringLiteral("Metis MISO"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/plutosdrmimo/plutosdrmimoplugin.cpp b/plugins/samplemimo/plutosdrmimo/plutosdrmimoplugin.cpp index 66767386b1..83424258c7 100644 --- a/plugins/samplemimo/plutosdrmimo/plutosdrmimoplugin.cpp +++ b/plugins/samplemimo/plutosdrmimo/plutosdrmimoplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = { QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR MIMO"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/testmi/testmiplugin.cpp b/plugins/samplemimo/testmi/testmiplugin.cpp index 1ad6401d49..defe736de0 100644 --- a/plugins/samplemimo/testmi/testmiplugin.cpp +++ b/plugins/samplemimo/testmi/testmiplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor TestMIPlugin::m_pluginDescriptor = { QStringLiteral("TestMI"), QStringLiteral("Test Multiple Input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/testsink/testsinkplugin.cpp b/plugins/samplesink/testsink/testsinkplugin.cpp index 59c5c1712e..155b4b0318 100644 --- a/plugins/samplesink/testsink/testsinkplugin.cpp +++ b/plugins/samplesink/testsink/testsinkplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = { QStringLiteral("TestSink"), QStringLiteral("Test Sink Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/xtrxoutput/xtrxoutputplugin.cpp b/plugins/samplesink/xtrxoutput/xtrxoutputplugin.cpp index d8ee165e39..7f050e6da7 100644 --- a/plugins/samplesink/xtrxoutput/xtrxoutputplugin.cpp +++ b/plugins/samplesink/xtrxoutput/xtrxoutputplugin.cpp @@ -37,7 +37,7 @@ const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = { QStringLiteral("XTRX"), QStringLiteral("XTRX Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), 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 c05d4470fd..a8e4123260 100644 --- a/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp +++ b/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AaroniaRTSAInputPlugin::m_pluginDescriptor = { QStringLiteral("AaroniaRTSA"), QStringLiteral("AaroniaRTSA input"), - QStringLiteral("7.21.2"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/audioinput/audioinputplugin.cpp b/plugins/samplesource/audioinput/audioinputplugin.cpp index 1e278c11e6..5fbe871e06 100644 --- a/plugins/samplesource/audioinput/audioinputplugin.cpp +++ b/plugins/samplesource/audioinput/audioinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = { QStringLiteral("AudioInput"), QStringLiteral("Audio Input"), - QStringLiteral("7.21.2"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE and 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 1b24a1127a..966b114323 100644 --- a/plugins/samplesource/fileinput/fileinputplugin.cpp +++ b/plugins/samplesource/fileinput/fileinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { QStringLiteral("FileInput"), QStringLiteral("File device input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp b/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp index 0db4813abb..e7fcd22ede 100644 --- a/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp +++ b/plugins/samplesource/kiwisdr/kiwisdrplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = { QStringLiteral("KiwiSDR"), QStringLiteral("KiwiSDR input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Vort (c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp index f06e771a7f..ddc58a3255 100644 --- a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp +++ b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp @@ -36,7 +36,7 @@ const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/localinput/localinputplugin.cpp b/plugins/samplesource/localinput/localinputplugin.cpp index 749bb9978b..862481887f 100644 --- a/plugins/samplesource/localinput/localinputplugin.cpp +++ b/plugins/samplesource/localinput/localinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = { QStringLiteral("LocalInput"), QStringLiteral("Local device input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/plutosdrinput/plutosdrinputplugin.cpp b/plugins/samplesource/plutosdrinput/plutosdrinputplugin.cpp index 0d773324a6..06422f0abf 100644 --- a/plugins/samplesource/plutosdrinput/plutosdrinputplugin.cpp +++ b/plugins/samplesource/plutosdrinput/plutosdrinputplugin.cpp @@ -35,7 +35,7 @@ class DeviceAPI; const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = { QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/remoteinput/remoteinputplugin.cpp b/plugins/samplesource/remoteinput/remoteinputplugin.cpp index 1c9630e6be..41a8c1d281 100644 --- a/plugins/samplesource/remoteinput/remoteinputplugin.cpp +++ b/plugins/samplesource/remoteinput/remoteinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteInput"), QStringLiteral("Remote device input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp index 681f9285da..621d9eb6d8 100644 --- a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp +++ b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { QStringLiteral("SigMFFileInput"), QStringLiteral("File device input (SigMF)"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/testsource/testsourceplugin.cpp b/plugins/samplesource/testsource/testsourceplugin.cpp index a6028bc857..88da78c040 100644 --- a/plugins/samplesource/testsource/testsourceplugin.cpp +++ b/plugins/samplesource/testsource/testsourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = { QStringLiteral("TestSource"), QStringLiteral("Test Source input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/usrpinput/usrpinputplugin.cpp b/plugins/samplesource/usrpinput/usrpinputplugin.cpp index 3c16faeeef..00522ba237 100644 --- a/plugins/samplesource/usrpinput/usrpinputplugin.cpp +++ b/plugins/samplesource/usrpinput/usrpinputplugin.cpp @@ -36,7 +36,7 @@ const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("USRP Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/xtrxinput/xtrxinputplugin.cpp b/plugins/samplesource/xtrxinput/xtrxinputplugin.cpp index 6861493b84..e494e4c8b8 100644 --- a/plugins/samplesource/xtrxinput/xtrxinputplugin.cpp +++ b/plugins/samplesource/xtrxinput/xtrxinputplugin.cpp @@ -39,7 +39,7 @@ const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = { QStringLiteral("XTRX"), QStringLiteral("XTRX Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.21.4"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,