diff --git a/CHANGELOG b/CHANGELOG index 20ccfb838..ac5925b45 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,33 @@ +sdrangel (7.22.1-1) unstable; urgency=medium + + * wdsprx: Fix path to help file. + * Removed SyncMessenger from DSPDeviceSourceEngine. Part of #2159 + * Fixed threading model for DSPDeviceSourceEngine. Part of #2159 + * Removed SyncMessenger from DSPDeviceMIMOEngine. Part of #2159 + * RTLSDR: make sure start and stop are effective once only. PArt of #2159 + * Fixed threading model for DSPDeviceMIMOEngine plus other fixes. Part of #2159 + * Removed SyncMessenger from DSPDeviceSinkEngine. Part of #2159 + * SSBMod, AMMod, NFMMod: revised thread processing + * Fixed threading model for DSPDeviceSinkEngine plus other fixes. Part of #2159 + * DeviceSet and DeviceUISet: use delete channel API instead of destroy method... + * BladeRF2Output: removed applySettings from stop method + * All device plugins: make sure start and stop are effective once only. PArt of #2159 + * Removed the destroy method from ChannelGUI interface + * DeviceGUI: removed destroy method. Part of #2159 + * Fix SopaySDR library search when system cmake package present. PR #2245 + * Append prefix to plugin name when running on Android. PR #2245 + * Fix compilation with newer ffmpeg libavutil. PR #2245 + * Fix compilation for Android with Qt6. PR #2245 + * Bump Cmake minimal version to 3.17 + * Use new find_package(CUDA Toolkit). PR #2250 + * Update CMakeLists.txt to allow static libraries to be built, as well as shared... PR #2252 + * Allow plugins to be compiled as static libs, part 2. PR #2254 + * Use opencv4 with VS2022. PR #2257 + * Frequency Scanner: initialize pointer to FrequencyScanner. Fixes #2262 + * Update channel list upon Morse Decoder and Demod Analyzer GUI creation. Fixes #2263 + + -- Edouard Griffiths, F4EXB Sun, 06 Oct 2024 08:39:11 +0200 + sdrangel (7.22.0-1) unstable; urgency=medium * New Rx channel based on WDSP. Issue #2156 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2af5a4045..bee48492d 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 "22") -set(sdrangel_VERSION_PATCH "0") +set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 531224657..5fd312ed4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,33 @@ +sdrangel (7.22.1-1) unstable; urgency=medium + + * wdsprx: Fix path to help file. + * Removed SyncMessenger from DSPDeviceSourceEngine. Part of #2159 + * Fixed threading model for DSPDeviceSourceEngine. Part of #2159 + * Removed SyncMessenger from DSPDeviceMIMOEngine. Part of #2159 + * RTLSDR: make sure start and stop are effective once only. PArt of #2159 + * Fixed threading model for DSPDeviceMIMOEngine plus other fixes. Part of #2159 + * Removed SyncMessenger from DSPDeviceSinkEngine. Part of #2159 + * SSBMod, AMMod, NFMMod: revised thread processing + * Fixed threading model for DSPDeviceSinkEngine plus other fixes. Part of #2159 + * DeviceSet and DeviceUISet: use delete channel API instead of destroy method... + * BladeRF2Output: removed applySettings from stop method + * All device plugins: make sure start and stop are effective once only. PArt of #2159 + * Removed the destroy method from ChannelGUI interface + * DeviceGUI: removed destroy method. Part of #2159 + * Fix SopaySDR library search when system cmake package present. PR #2245 + * Append prefix to plugin name when running on Android. PR #2245 + * Fix compilation with newer ffmpeg libavutil. PR #2245 + * Fix compilation for Android with Qt6. PR #2245 + * Bump Cmake minimal version to 3.17 + * Use new find_package(CUDA Toolkit). PR #2250 + * Update CMakeLists.txt to allow static libraries to be built, as well as shared... PR #2252 + * Allow plugins to be compiled as static libs, part 2. PR #2254 + * Use opencv4 with VS2022. PR #2257 + * Frequency Scanner: initialize pointer to FrequencyScanner. Fixes #2262 + * Update channel list upon Morse Decoder and Demod Analyzer GUI creation. Fixes #2263 + + -- Edouard Griffiths, F4EXB Sun, 06 Oct 2024 08:39:11 +0200 + sdrangel (7.22.0-1) unstable; urgency=medium * New Rx channel based on WDSP. Issue #2156 diff --git a/gitdiff.sh b/gitdiff.sh index 2b27474a9..a2620e51b 100755 --- a/gitdiff.sh +++ b/gitdiff.sh @@ -4,6 +4,6 @@ PLUGINS=$(git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | so for plugin in $PLUGINS do FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp") - sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.0\"\)/" $FILE + sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.1\"\)/" $FILE done diff --git a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp index 4b0996c83..d229105f7 100644 --- a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp +++ b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = { BeamSteeringCWMod::m_channelId, QStringLiteral("BeamSteeringCWMod"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/doa2/doa2plugin.cpp b/plugins/channelmimo/doa2/doa2plugin.cpp index 3d09efa6c..d0382b143 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.22.0"), + QStringLiteral("7.22.1"), 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 b6b893978..824c52c2e 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index eab3102ee..cd53c0359 100644 --- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp @@ -27,7 +27,7 @@ const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { ChannelAnalyzer::m_channelId, QStringLiteral("Channel Analyzer"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/channelpower/channelpowerplugin.cpp b/plugins/channelrx/channelpower/channelpowerplugin.cpp index 8bb18b930..9bbf768c3 100644 --- a/plugins/channelrx/channelpower/channelpowerplugin.cpp +++ b/plugins/channelrx/channelpower/channelpowerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor ChannelPowerPlugin::m_pluginDescriptor = { ChannelPower::m_channelId, QStringLiteral("Channel Power"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 6bbe42a2e..885990ac9 100644 --- a/plugins/channelrx/demodadsb/adsbplugin.cpp +++ b/plugins/channelrx/demodadsb/adsbplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { ADSBDemod::m_channelId, QStringLiteral("ADS-B Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index 8390c82c3..86f479455 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodam/amdemodplugin.cpp b/plugins/channelrx/demodam/amdemodplugin.cpp index 21848f3f6..ef133248c 100644 --- a/plugins/channelrx/demodam/amdemodplugin.cpp +++ b/plugins/channelrx/demodam/amdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { AMDemod::m_channelId, QStringLiteral("AM Demodulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp index 1c5b7ff36..731d6850a 100644 --- a/plugins/channelrx/demodapt/aptdemodplugin.cpp +++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = { APTDemod::m_channelId, QStringLiteral("APT Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodatv/atvdemodplugin.cpp b/plugins/channelrx/demodatv/atvdemodplugin.cpp index 56bf41ea4..05f27ccaf 100644 --- a/plugins/channelrx/demodatv/atvdemodplugin.cpp +++ b/plugins/channelrx/demodatv/atvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor = { ATVDemod::m_channelId, QStringLiteral("ATV Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) F4HKW for F4EXB / SDRAngel"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodbfm/bfmplugin.cpp b/plugins/channelrx/demodbfm/bfmplugin.cpp index 24ef6f6e5..0e565198c 100644 --- a/plugins/channelrx/demodbfm/bfmplugin.cpp +++ b/plugins/channelrx/demodbfm/bfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor BFMPlugin::m_pluginDescriptor = { BFMDemod::m_channelId, QStringLiteral("Broadcast FM Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp index edc769ce2..345c05bdc 100644 --- a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp +++ b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = { ChirpChatDemod::m_channelId, QStringLiteral("ChirpChat Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddab/dabdemodplugin.cpp b/plugins/channelrx/demoddab/dabdemodplugin.cpp index 58813cb00..29b042f84 100644 --- a/plugins/channelrx/demoddab/dabdemodplugin.cpp +++ b/plugins/channelrx/demoddab/dabdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = { DABDemod::m_channelId, QStringLiteral("DAB Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index 259ba6838..693932b61 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QStringLiteral("DATV Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddsc/dscdemodplugin.cpp b/plugins/channelrx/demoddsc/dscdemodplugin.cpp index 3fd962dfd..c834a9eaf 100644 --- a/plugins/channelrx/demoddsc/dscdemodplugin.cpp +++ b/plugins/channelrx/demoddsc/dscdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor DSCDemodPlugin::m_pluginDescriptor = { DSCDemod::m_channelId, QStringLiteral("DSC Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 2d9a83444..7a0afa750 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodendoftrain/endoftraindemodplugin.cpp b/plugins/channelrx/demodendoftrain/endoftraindemodplugin.cpp index ff3fdbf4a..9a496d836 100644 --- a/plugins/channelrx/demodendoftrain/endoftraindemodplugin.cpp +++ b/plugins/channelrx/demodendoftrain/endoftraindemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor EndOfTrainDemodPlugin::m_pluginDescriptor = { EndOfTrainDemod::m_channelId, QStringLiteral("End-of-Train Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodfreedv/freedvplugin.cpp b/plugins/channelrx/demodfreedv/freedvplugin.cpp index 4a23ad674..f165d6f9a 100644 --- a/plugins/channelrx/demodfreedv/freedvplugin.cpp +++ b/plugins/channelrx/demodfreedv/freedvplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = { FreeDVDemod::m_channelId, QStringLiteral("FreeDV Demodulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodft8/ft8plugin.cpp b/plugins/channelrx/demodft8/ft8plugin.cpp index 9821cd348..4e791d7a7 100644 --- a/plugins/channelrx/demodft8/ft8plugin.cpp +++ b/plugins/channelrx/demodft8/ft8plugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor FT8Plugin::m_pluginDescriptor = { FT8Demod::m_channelId, QStringLiteral("FT8 Demodulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), 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 99bb14bef..b3f27eab7 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.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodm17/m17demodplugin.cpp b/plugins/channelrx/demodm17/m17demodplugin.cpp index 895b9157f..8edfab282 100644 --- a/plugins/channelrx/demodm17/m17demodplugin.cpp +++ b/plugins/channelrx/demodm17/m17demodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor M17DemodPlugin::m_pluginDescriptor = { M17Demod::m_channelId, QStringLiteral("M17 Demodulator"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp b/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp index 107bfd6b6..e318f2d52 100644 --- a/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp +++ b/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor NavtexDemodPlugin::m_pluginDescriptor = { NavtexDemod::m_channelId, QStringLiteral("Navtex Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnfm/nfmplugin.cpp b/plugins/channelrx/demodnfm/nfmplugin.cpp index bf73e311d..9990471a5 100644 --- a/plugins/channelrx/demodnfm/nfmplugin.cpp +++ b/plugins/channelrx/demodnfm/nfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor NFMPlugin::m_pluginDescriptor = { NFMDemod::m_channelId, QStringLiteral("NFM Demodulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpacket/packetdemodplugin.cpp b/plugins/channelrx/demodpacket/packetdemodplugin.cpp index 09324b112..fcb2009af 100644 --- a/plugins/channelrx/demodpacket/packetdemodplugin.cpp +++ b/plugins/channelrx/demodpacket/packetdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = { PacketDemod::m_channelId, QStringLiteral("Packet Demodulator"), - QStringLiteral("7.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpager/pagerdemodplugin.cpp b/plugins/channelrx/demodpager/pagerdemodplugin.cpp index 04d95ac49..957b2f27e 100644 --- a/plugins/channelrx/demodpager/pagerdemodplugin.cpp +++ b/plugins/channelrx/demodpager/pagerdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = { PagerDemod::m_channelId, QStringLiteral("Pager Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp b/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp index 7c1f3233e..c127c7c14 100644 --- a/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp +++ b/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = { RadiosondeDemod::m_channelId, QStringLiteral("Radiosonde Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodrtty/rttydemodplugin.cpp b/plugins/channelrx/demodrtty/rttydemodplugin.cpp index 0fe204cc4..b0dc0a7de 100644 --- a/plugins/channelrx/demodrtty/rttydemodplugin.cpp +++ b/plugins/channelrx/demodrtty/rttydemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RttyDemodPlugin::m_pluginDescriptor = { RttyDemod::m_channelId, QStringLiteral("RTTY Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp index e2423fe56..6476691ee 100644 --- a/plugins/channelrx/demodssb/ssbplugin.cpp +++ b/plugins/channelrx/demodssb/ssbplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SSBPlugin::m_pluginDescriptor = { SSBDemod::m_channelId, QStringLiteral("SSB Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodvor/vordemodplugin.cpp b/plugins/channelrx/demodvor/vordemodplugin.cpp index d159b7bb5..65270160e 100644 --- a/plugins/channelrx/demodvor/vordemodplugin.cpp +++ b/plugins/channelrx/demodvor/vordemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = { VORDemod::m_channelId, QStringLiteral("VOR Demodulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 b4a161046..8116fee66 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.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/filesink/filesinkplugin.cpp b/plugins/channelrx/filesink/filesinkplugin.cpp index cc79fa8f5..76978d867 100644 --- a/plugins/channelrx/filesink/filesinkplugin.cpp +++ b/plugins/channelrx/filesink/filesinkplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = { FileSink::m_channelId, QStringLiteral("File Sink"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqscanner/freqscanner.cpp b/plugins/channelrx/freqscanner/freqscanner.cpp index 48708d72a..e5d62b59f 100644 --- a/plugins/channelrx/freqscanner/freqscanner.cpp +++ b/plugins/channelrx/freqscanner/freqscanner.cpp @@ -153,7 +153,7 @@ void FreqScanner::start() qDebug("FreqScanner::start"); m_thread = new QThread(); - m_basebandSink = new FreqScannerBaseband(); + m_basebandSink = new FreqScannerBaseband(this); m_basebandSink->setFifoLabel(QString("%1 [%2:%3]") .arg(m_channelId) .arg(m_deviceAPI->getDeviceSetIndex()) diff --git a/plugins/channelrx/freqscanner/freqscannerbaseband.cpp b/plugins/channelrx/freqscanner/freqscannerbaseband.cpp index 4fd211e2b..dcc71f637 100644 --- a/plugins/channelrx/freqscanner/freqscannerbaseband.cpp +++ b/plugins/channelrx/freqscanner/freqscannerbaseband.cpp @@ -27,7 +27,8 @@ MESSAGE_CLASS_DEFINITION(FreqScannerBaseband::MsgConfigureFreqScannerBaseband, Message) -FreqScannerBaseband::FreqScannerBaseband() : +FreqScannerBaseband::FreqScannerBaseband(FreqScanner *freqScanner) : + m_freqScanner(freqScanner), m_messageQueueToGUI(nullptr) { qDebug("FreqScannerBaseband::FreqScannerBaseband"); diff --git a/plugins/channelrx/freqscanner/freqscannerbaseband.h b/plugins/channelrx/freqscanner/freqscannerbaseband.h index 5a832ff41..2fcdc2d7a 100644 --- a/plugins/channelrx/freqscanner/freqscannerbaseband.h +++ b/plugins/channelrx/freqscanner/freqscannerbaseband.h @@ -63,7 +63,7 @@ public: { } }; - FreqScannerBaseband(); + FreqScannerBaseband(FreqScanner *freqScanner); ~FreqScannerBaseband(); void reset(); void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end); diff --git a/plugins/channelrx/freqscanner/freqscannerplugin.cpp b/plugins/channelrx/freqscanner/freqscannerplugin.cpp index ab4466b4e..0657439f8 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqtracker/freqtrackerplugin.cpp b/plugins/channelrx/freqtracker/freqtrackerplugin.cpp index 6c42037bc..40c0d8aba 100644 --- a/plugins/channelrx/freqtracker/freqtrackerplugin.cpp +++ b/plugins/channelrx/freqtracker/freqtrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = { FreqTracker::m_channelId, QStringLiteral("Frequency Tracker"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index dcec6ac4d..234bec5c2 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/localsink/localsinkplugin.cpp b/plugins/channelrx/localsink/localsinkplugin.cpp index 583497f02..0db677c92 100644 --- a/plugins/channelrx/localsink/localsinkplugin.cpp +++ b/plugins/channelrx/localsink/localsinkplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = { LocalSink::m_channelId, QStringLiteral("Local channel sink"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/noisefigure/noisefigureplugin.cpp b/plugins/channelrx/noisefigure/noisefigureplugin.cpp index f9ee77bdd..e43e7536d 100644 --- a/plugins/channelrx/noisefigure/noisefigureplugin.cpp +++ b/plugins/channelrx/noisefigure/noisefigureplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = { NoiseFigure::m_channelId, QStringLiteral("Noise Figure"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp index 7567c043a..52bd02006 100644 --- a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp +++ b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = { RadioAstronomy::m_channelId, QStringLiteral("Radio Astronomy"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioclock/radioclockplugin.cpp b/plugins/channelrx/radioclock/radioclockplugin.cpp index 2ba59d1d8..be59e4d4c 100644 --- a/plugins/channelrx/radioclock/radioclockplugin.cpp +++ b/plugins/channelrx/radioclock/radioclockplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = { RadioClock::m_channelId, QStringLiteral("Radio Clock"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotesink/remotesinkplugin.cpp b/plugins/channelrx/remotesink/remotesinkplugin.cpp index 84919a283..55bedf9f0 100644 --- a/plugins/channelrx/remotesink/remotesinkplugin.cpp +++ b/plugins/channelrx/remotesink/remotesinkplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = { RemoteSink::m_channelId, QStringLiteral("Remote channel sink"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp index 090ae7e56..f91d816f0 100644 --- a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp +++ b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = { RemoteTCPSink::m_channelId, QStringLiteral("Remote TCP channel sink"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp index 9bb32844f..61422e9bc 100644 --- a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp +++ b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = { SigMFFileSink::m_channelId, QStringLiteral("SigMF File Sink"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/udpsink/udpsinkplugin.cpp b/plugins/channelrx/udpsink/udpsinkplugin.cpp index cb0c54192..375234558 100644 --- a/plugins/channelrx/udpsink/udpsinkplugin.cpp +++ b/plugins/channelrx/udpsink/udpsinkplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = { UDPSink::m_channelId, QStringLiteral("UDP Channel Sink"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/wdsprx/wdsprxplugin.cpp b/plugins/channelrx/wdsprx/wdsprxplugin.cpp index a00c14893..cfb38c739 100644 --- a/plugins/channelrx/wdsprx/wdsprxplugin.cpp +++ b/plugins/channelrx/wdsprx/wdsprxplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor WDSPRxPlugin::m_pluginDescriptor = { WDSPRx::m_channelId, QStringLiteral("WDSP Receiver"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/filesource/filesourceplugin.cpp b/plugins/channeltx/filesource/filesourceplugin.cpp index 55a824d8e..fab1a54bf 100644 --- a/plugins/channeltx/filesource/filesourceplugin.cpp +++ b/plugins/channeltx/filesource/filesourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = { FileSource::m_channelId, QStringLiteral("File channel source"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/localsource/localsourceplugin.cpp b/plugins/channeltx/localsource/localsourceplugin.cpp index 5d7330bd7..ebb7acbd7 100644 --- a/plugins/channeltx/localsource/localsourceplugin.cpp +++ b/plugins/channeltx/localsource/localsourceplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = { LocalSource::m_channelId, QStringLiteral("Local channel source"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), 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 4e8c6fd82..f1838c91c 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.22.0"), + QStringLiteral("7.22.1"), 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 4dbc5ab7c..dae9a4aa8 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modam/ammodplugin.cpp b/plugins/channeltx/modam/ammodplugin.cpp index dcb20f7c1..297e70ff8 100644 --- a/plugins/channeltx/modam/ammodplugin.cpp +++ b/plugins/channeltx/modam/ammodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor AMModPlugin::m_pluginDescriptor = { AMMod::m_channelId, QStringLiteral("AM Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modatv/atvmodplugin.cpp b/plugins/channeltx/modatv/atvmodplugin.cpp index 9ca3e0c9b..751b20c27 100644 --- a/plugins/channeltx/modatv/atvmodplugin.cpp +++ b/plugins/channeltx/modatv/atvmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor ATVModPlugin::m_pluginDescriptor = { ATVMod::m_channelId, QStringLiteral("ATV Modulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp index d67597820..ff411e95f 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.22.0"), + QStringLiteral("7.22.1"), 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 2b5060f72..ec83f76c0 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modfreedv/freedvmodplugin.cpp b/plugins/channeltx/modfreedv/freedvmodplugin.cpp index 6c17c0039..183fe7221 100644 --- a/plugins/channeltx/modfreedv/freedvmodplugin.cpp +++ b/plugins/channeltx/modfreedv/freedvmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = { FreeDVMod::m_channelId, QStringLiteral("FreeDV Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modm17/m17modplugin.cpp b/plugins/channeltx/modm17/m17modplugin.cpp index a6a5c8ece..4e81851e6 100644 --- a/plugins/channeltx/modm17/m17modplugin.cpp +++ b/plugins/channeltx/modm17/m17modplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor M17ModPlugin::m_pluginDescriptor = { M17Mod::m_channelId, QStringLiteral("M17 Modulator"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modnfm/nfmmodplugin.cpp b/plugins/channeltx/modnfm/nfmmodplugin.cpp index b1594f42e..0a508eb53 100644 --- a/plugins/channeltx/modnfm/nfmmodplugin.cpp +++ b/plugins/channeltx/modnfm/nfmmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { NFMMod::m_channelId, QStringLiteral("NFM Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpacket/packetmodplugin.cpp b/plugins/channeltx/modpacket/packetmodplugin.cpp index bfc44bc92..7d8a0181b 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.22.0"), + QStringLiteral("7.22.1"), 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 a47738fef..ed54e7ffa 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.21.4"), + QStringLiteral("7.22.1"), 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 eaef7100a..99da65ed3 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modssb/ssbmodplugin.cpp b/plugins/channeltx/modssb/ssbmodplugin.cpp index 9f5eec0b3..0edecbf35 100644 --- a/plugins/channeltx/modssb/ssbmodplugin.cpp +++ b/plugins/channeltx/modssb/ssbmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SSBModPlugin::m_pluginDescriptor = { SSBMod::m_channelId, QStringLiteral("SSB Modulator"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modwfm/wfmmodplugin.cpp b/plugins/channeltx/modwfm/wfmmodplugin.cpp index fcbe73cfa..1b3e1248d 100644 --- a/plugins/channeltx/modwfm/wfmmodplugin.cpp +++ b/plugins/channeltx/modwfm/wfmmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor WFMModPlugin::m_pluginDescriptor = { WFMMod::m_channelId, QStringLiteral("WFM Modulator"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/remotesource/remotesourceplugin.cpp b/plugins/channeltx/remotesource/remotesourceplugin.cpp index 4ee128fa6..7d005b9a8 100644 --- a/plugins/channeltx/remotesource/remotesourceplugin.cpp +++ b/plugins/channeltx/remotesource/remotesourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = { RemoteSource::m_channelId, QStringLiteral("Remote channel source"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/udpsource/udpsourceplugin.cpp b/plugins/channeltx/udpsource/udpsourceplugin.cpp index 1e1645b8d..b84af817f 100644 --- a/plugins/channeltx/udpsource/udpsourceplugin.cpp +++ b/plugins/channeltx/udpsource/udpsourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = { UDPSource::m_channelId, QStringLiteral("UDP Channel Source"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/afc/afcplugin.cpp b/plugins/feature/afc/afcplugin.cpp index c5548d154..693a47afd 100644 --- a/plugins/feature/afc/afcplugin.cpp +++ b/plugins/feature/afc/afcplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor AFCPlugin::m_pluginDescriptor = { AFC::m_featureId, QStringLiteral("AFC"), - QStringLiteral("7.21.0"), + QStringLiteral("7.22.1"), 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 1dc2c57d4..2687f7ec4 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.21.4"), + QStringLiteral("7.22.1"), 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 7de16220d..94573db21 100644 --- a/plugins/feature/ambe/ambeplugin.cpp +++ b/plugins/feature/ambe/ambeplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor AMBEPlugin::m_pluginDescriptor = { AMBE::m_featureId, QStringLiteral("AMBE Controller"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 f2d7f39f4..d0dab9f01 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.4"), + QStringLiteral("7.22.1"), 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 171c32575..a9d6156b1 100644 --- a/plugins/feature/aprs/aprsplugin.cpp +++ b/plugins/feature/aprs/aprsplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor APRSPlugin::m_pluginDescriptor = { APRS::m_featureId, QStringLiteral("APRS"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzer.cpp b/plugins/feature/demodanalyzer/demodanalyzer.cpp index 58f0bb114..bcc183f80 100644 --- a/plugins/feature/demodanalyzer/demodanalyzer.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzer.cpp @@ -323,6 +323,12 @@ void DemodAnalyzer::notifyUpdate(const QStringList& renameFrom, const QStringLis } } +void DemodAnalyzer::getAvailableChannelsReport() +{ + notifyUpdate(QStringList{}, QStringList{}); +} + + void DemodAnalyzer::setChannel(ChannelAPI *selectedChannel) { if ((selectedChannel == m_selectedChannel) || (m_availableChannels.indexOfObject(selectedChannel) == -1)) { diff --git a/plugins/feature/demodanalyzer/demodanalyzer.h b/plugins/feature/demodanalyzer/demodanalyzer.h index 8f0c21656..c241c992d 100644 --- a/plugins/feature/demodanalyzer/demodanalyzer.h +++ b/plugins/feature/demodanalyzer/demodanalyzer.h @@ -194,6 +194,8 @@ public: const QStringList& featureSettingsKeys, SWGSDRangel::SWGFeatureSettings& response); + void getAvailableChannelsReport(); + static const char* const m_featureIdURI; static const char* const m_featureId; diff --git a/plugins/feature/demodanalyzer/demodanalyzergui.cpp b/plugins/feature/demodanalyzer/demodanalyzergui.cpp index fec29c1b2..4d70d4782 100644 --- a/plugins/feature/demodanalyzer/demodanalyzergui.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzergui.cpp @@ -192,6 +192,7 @@ DemodAnalyzerGUI::DemodAnalyzerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUI makeUIConnections(); DialPopup::addPopupsToChildDials(this); m_resizer.enableChildMouseTracking(); + m_demodAnalyzer->getAvailableChannelsReport(); } DemodAnalyzerGUI::~DemodAnalyzerGUI() diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index 71981c3d2..4b8249c74 100644 --- a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { DemodAnalyzer::m_featureId, QStringLiteral("Demod Analyzer"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzersettings.cpp b/plugins/feature/demodanalyzer/demodanalyzersettings.cpp index da3dfbb43..452cc7eef 100644 --- a/plugins/feature/demodanalyzer/demodanalyzersettings.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzersettings.cpp @@ -48,6 +48,7 @@ const QStringList DemodAnalyzerSettings::m_channelURIs = { QStringLiteral("sdrangel.channeltx.modssb"), QStringLiteral("sdrangel.channel.wfmdemod"), QStringLiteral("sdrangel.channeltx.modwfm"), + QStringLiteral("sdrangel.channel.wdsprx"), }; DemodAnalyzerSettings::DemodAnalyzerSettings() : diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index b50ad211f..ba546a7c0 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 dec5549eb..779c5fdd1 100644 --- a/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp +++ b/plugins/feature/jogdialcontroller/jogdialcontrollerplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor JogdialControllerPlugin::m_pluginDescriptor = { JogdialController::m_featureId, QStringLiteral("Jogdial Controller"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), 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 89e9f1f79..b5d23919c 100644 --- a/plugins/feature/limerfe/limerfeplugin.cpp +++ b/plugins/feature/limerfe/limerfeplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor LimeRFEPlugin::m_pluginDescriptor = { LimeRFE::m_featureId, QStringLiteral("LimeRFE USB Controller"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 0a258d9b0..cfda49a5c 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/morsedecoder/morsedecoder.cpp b/plugins/feature/morsedecoder/morsedecoder.cpp index a8c324089..a744ede3b 100644 --- a/plugins/feature/morsedecoder/morsedecoder.cpp +++ b/plugins/feature/morsedecoder/morsedecoder.cpp @@ -372,6 +372,11 @@ void MorseDecoder::notifyUpdate(const QStringList& renameFrom, const QStringList } } +void MorseDecoder::getAvailableChannelsReport() +{ + notifyUpdate(QStringList{}, QStringList{}); +} + void MorseDecoder::setChannel(ChannelAPI *selectedChannel) { if ((selectedChannel == m_selectedChannel) || (m_availableChannels.indexOfObject(selectedChannel) == -1)) { diff --git a/plugins/feature/morsedecoder/morsedecoder.h b/plugins/feature/morsedecoder/morsedecoder.h index 1f78f3714..5e7a1aa62 100644 --- a/plugins/feature/morsedecoder/morsedecoder.h +++ b/plugins/feature/morsedecoder/morsedecoder.h @@ -216,6 +216,7 @@ public: SWGSDRangel::SWGFeatureSettings& response); ScopeVis *getScopeVis() { return &m_scopeVis; } + void getAvailableChannelsReport(); static const char* const m_featureIdURI; static const char* const m_featureId; diff --git a/plugins/feature/morsedecoder/morsedecodergui.cpp b/plugins/feature/morsedecoder/morsedecodergui.cpp index 1a28149fc..2e315841f 100644 --- a/plugins/feature/morsedecoder/morsedecodergui.cpp +++ b/plugins/feature/morsedecoder/morsedecodergui.cpp @@ -216,6 +216,7 @@ MorseDecoderGUI::MorseDecoderGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe makeUIConnections(); DialPopup::addPopupsToChildDials(this); m_resizer.enableChildMouseTracking(); + m_morseDecoder->getAvailableChannelsReport(); } MorseDecoderGUI::~MorseDecoderGUI() diff --git a/plugins/feature/morsedecoder/morsedecoderplugin.cpp b/plugins/feature/morsedecoder/morsedecoderplugin.cpp index f8bf42e14..908d21b2a 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/pertester/pertesterplugin.cpp b/plugins/feature/pertester/pertesterplugin.cpp index 685344bd9..400d39689 100644 --- a/plugins/feature/pertester/pertesterplugin.cpp +++ b/plugins/feature/pertester/pertesterplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = { PERTester::m_featureId, QStringLiteral("Packet Error Rate Tester"), - QStringLiteral("7.21.0"), + QStringLiteral("7.22.1"), 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 4ac70e09e..793fc6249 100644 --- a/plugins/feature/radiosonde/radiosondeplugin.cpp +++ b/plugins/feature/radiosonde/radiosondeplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RadiosondePlugin::m_pluginDescriptor = { Radiosonde::m_featureId, QStringLiteral("Radiosonde"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/remotecontrol/remotecontrolplugin.cpp b/plugins/feature/remotecontrol/remotecontrolplugin.cpp index 0257bec57..c72a396fe 100644 --- a/plugins/feature/remotecontrol/remotecontrolplugin.cpp +++ b/plugins/feature/remotecontrol/remotecontrolplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RemoteControlPlugin::m_pluginDescriptor = { RemoteControl::m_featureId, QStringLiteral("Remote Control"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), 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 9920ebe27..863550b6b 100644 --- a/plugins/feature/rigctlserver/rigctlserverplugin.cpp +++ b/plugins/feature/rigctlserver/rigctlserverplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = { RigCtlServer::m_featureId, QStringLiteral("RigCtl Server"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 1e0db5b93..867dfc911 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/sid/sidplugin.cpp b/plugins/feature/sid/sidplugin.cpp index 82c4f0c86..eb9acfa02 100644 --- a/plugins/feature/sid/sidplugin.cpp +++ b/plugins/feature/sid/sidplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor SIDPlugin::m_pluginDescriptor = { SIDMain::m_featureId, QStringLiteral("SID"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index 9a4279bcd..3263d60b4 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/skymap/skymapplugin.cpp b/plugins/feature/skymap/skymapplugin.cpp index 4cb835c19..e6e98fe70 100644 --- a/plugins/feature/skymap/skymapplugin.cpp +++ b/plugins/feature/skymap/skymapplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor SkyMapPlugin::m_pluginDescriptor = { SkyMap::m_featureId, QStringLiteral("Sky Map"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp index 961f0ef3d..9cabd741c 100644 --- a/plugins/feature/startracker/startrackerplugin.cpp +++ b/plugins/feature/startracker/startrackerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { StarTracker::m_featureId, QStringLiteral("Star Tracker"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 8fddb27c3..ec4202233 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp b/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp index 88614f145..e98c82cd6 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.4"), + QStringLiteral("7.22.1"), 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 170252574..acf10f1e5 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.21.4"), + QStringLiteral("7.22.1"), 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 b698df280..4cbc7ef62 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.4"), + QStringLiteral("7.22.1"), 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 18ebdca3e..3a6049d3a 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.21.4"), + QStringLiteral("7.22.1"), 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 83424258c..0abe1726a 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.4"), + QStringLiteral("7.22.1"), 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 defe736de..d9c82565d 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/testmosync/testmosyncplugin.cpp b/plugins/samplemimo/testmosync/testmosyncplugin.cpp index 2ec7a0b1f..b799a741a 100644 --- a/plugins/samplemimo/testmosync/testmosyncplugin.cpp +++ b/plugins/samplemimo/testmosync/testmosyncplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = { QStringLiteral("TestMOSync"), QStringLiteral("Test Synchronous Multiple Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/xtrxmimo/xtrxmimoplugin.cpp b/plugins/samplemimo/xtrxmimo/xtrxmimoplugin.cpp index e0f7d8701..e23c7443e 100644 --- a/plugins/samplemimo/xtrxmimo/xtrxmimoplugin.cpp +++ b/plugins/samplemimo/xtrxmimo/xtrxmimoplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = { QStringLiteral("XTRX"), QStringLiteral("XTRX MIMO"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/aaroniartsaoutput/aaroniartsaoutputplugin.cpp b/plugins/samplesink/aaroniartsaoutput/aaroniartsaoutputplugin.cpp index 064033a68..1b7177264 100644 --- a/plugins/samplesink/aaroniartsaoutput/aaroniartsaoutputplugin.cpp +++ b/plugins/samplesink/aaroniartsaoutput/aaroniartsaoutputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor AaroniaRTSAOutputPlugin::m_pluginDescriptor = { QStringLiteral("AaroniaRTSAOutput"), QStringLiteral("AaroniaRTSA output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/audiooutput/audiooutputplugin.cpp b/plugins/samplesink/audiooutput/audiooutputplugin.cpp index 843511f5f..b176a7805 100644 --- a/plugins/samplesink/audiooutput/audiooutputplugin.cpp +++ b/plugins/samplesink/audiooutput/audiooutputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = { QStringLiteral("AudioOutput"), QStringLiteral("Audio output"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/bladerf1output/bladerf1outputplugin.cpp b/plugins/samplesink/bladerf1output/bladerf1outputplugin.cpp index 8751780c3..fcd98b07b 100644 --- a/plugins/samplesink/bladerf1output/bladerf1outputplugin.cpp +++ b/plugins/samplesink/bladerf1output/bladerf1outputplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = { QStringLiteral("BladeRF1"), QStringLiteral("BladeRF1 Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/bladerf2output/bladerf2outputplugin.cpp b/plugins/samplesink/bladerf2output/bladerf2outputplugin.cpp index 667b14816..b1616a087 100644 --- a/plugins/samplesink/bladerf2output/bladerf2outputplugin.cpp +++ b/plugins/samplesink/bladerf2output/bladerf2outputplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor BladeRF2OutputPlugin::m_pluginDescriptor = { QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2 Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/fileoutput/fileoutputplugin.cpp b/plugins/samplesink/fileoutput/fileoutputplugin.cpp index 37867c11b..aba568646 100644 --- a/plugins/samplesink/fileoutput/fileoutputplugin.cpp +++ b/plugins/samplesink/fileoutput/fileoutputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = { QStringLiteral("FileOutput"), QStringLiteral("File output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp b/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp index 88b2b2454..36f2f19b0 100644 --- a/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp +++ b/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = { QStringLiteral("HackRF"), QStringLiteral("HackRF Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/limesdroutput/limesdroutputplugin.cpp b/plugins/samplesink/limesdroutput/limesdroutputplugin.cpp index 311b6c824..a4dec5901 100644 --- a/plugins/samplesink/limesdroutput/limesdroutputplugin.cpp +++ b/plugins/samplesink/limesdroutput/limesdroutputplugin.cpp @@ -36,7 +36,7 @@ const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = { QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/localoutput/localoutputplugin.cpp b/plugins/samplesink/localoutput/localoutputplugin.cpp index 64193f76c..f210c9978 100644 --- a/plugins/samplesink/localoutput/localoutputplugin.cpp +++ b/plugins/samplesink/localoutput/localoutputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = { QStringLiteral("LocalOutput"), QStringLiteral("Local device output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/plutosdroutput/plutosdroutputplugin.cpp b/plugins/samplesink/plutosdroutput/plutosdroutputplugin.cpp index 0e754b306..e0587f172 100644 --- a/plugins/samplesink/plutosdroutput/plutosdroutputplugin.cpp +++ b/plugins/samplesink/plutosdroutput/plutosdroutputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = { QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR Output"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp b/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp index 6de898d81..596230bb8 100644 --- a/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp +++ b/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteOutput"), QStringLiteral("Remote device output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp b/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp index c95e95659..fb55209dd 100644 --- a/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp +++ b/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = { QStringLiteral("SoapySDR"), QStringLiteral("SoapySDR Output"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), 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 155b4b031..8cb3cca86 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp b/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp index bf4f9be8c..ed3d35dff 100644 --- a/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp +++ b/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp @@ -36,7 +36,7 @@ const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("URSP Output"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE and 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 7f050e6da..0fc13ff06 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.21.4"), + QStringLiteral("7.22.1"), 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 98b6ec217..096855518 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.22.0"), + QStringLiteral("7.22.1"), 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 9b0ba948d..5f9655478 100644 --- a/plugins/samplesource/airspy/airspyplugin.cpp +++ b/plugins/samplesource/airspy/airspyplugin.cpp @@ -40,7 +40,7 @@ const int AirspyPlugin::m_maxDevices = 32; const PluginDescriptor AirspyPlugin::m_pluginDescriptor = { QStringLiteral("Airspy"), QStringLiteral("Airspy Input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/airspyhf/airspyhfplugin.cpp b/plugins/samplesource/airspyhf/airspyhfplugin.cpp index 1d5e28be4..a1b6cb87a 100644 --- a/plugins/samplesource/airspyhf/airspyhfplugin.cpp +++ b/plugins/samplesource/airspyhf/airspyhfplugin.cpp @@ -36,7 +36,7 @@ const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = { QStringLiteral("AirspyHF"), QStringLiteral("AirspyHF Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/androidsdrdriverinput/androidsdrdriverinputplugin.cpp b/plugins/samplesource/androidsdrdriverinput/androidsdrdriverinputplugin.cpp index 77185687e..5982d7869 100644 --- a/plugins/samplesource/androidsdrdriverinput/androidsdrdriverinputplugin.cpp +++ b/plugins/samplesource/androidsdrdriverinput/androidsdrdriverinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AndroidSDRDriverInputPlugin::m_pluginDescriptor = { QStringLiteral("AndroidSDRDriverInput"), QStringLiteral("Android SDR Driver input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/audioinput/audioinputplugin.cpp b/plugins/samplesource/audioinput/audioinputplugin.cpp index 5fbe871e0..b7637e98a 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.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/bladerf1input/bladerf1inputplugin.cpp b/plugins/samplesource/bladerf1input/bladerf1inputplugin.cpp index 168247e52..23816f2ae 100644 --- a/plugins/samplesource/bladerf1input/bladerf1inputplugin.cpp +++ b/plugins/samplesource/bladerf1input/bladerf1inputplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = { QStringLiteral("BladeRF1"), QStringLiteral("BladeRF1 Input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/bladerf2input/bladerf2inputplugin.cpp b/plugins/samplesource/bladerf2input/bladerf2inputplugin.cpp index 91cf6a195..52dfb25b4 100644 --- a/plugins/samplesource/bladerf2input/bladerf2inputplugin.cpp +++ b/plugins/samplesource/bladerf2input/bladerf2inputplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor Blderf2InputPlugin::m_pluginDescriptor = { QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2 Input"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), 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 966b11432..3cceafcaa 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.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp b/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp index 538e6fa2d..7f01d35ee 100644 --- a/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp +++ b/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = { QStringLiteral("HackRF"), QStringLiteral("HackRF Input"), - QStringLiteral("7.20.0"), + QStringLiteral("7.22.1"), 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 e7fcd22ed..f0de091d9 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.21.4"), + QStringLiteral("7.22.1"), 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 ddc58a325..0afc572b5 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.4"), + QStringLiteral("7.22.1"), 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 862481887..db1ac92b8 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/perseus/perseusplugin.cpp b/plugins/samplesource/perseus/perseusplugin.cpp index ae533e777..087c9b7ef 100644 --- a/plugins/samplesource/perseus/perseusplugin.cpp +++ b/plugins/samplesource/perseus/perseusplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor PerseusPlugin::m_pluginDescriptor = { QStringLiteral("Perseus"), QStringLiteral("Perseus Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), 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 5a920618f..3edd93847 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.22.0"), + QStringLiteral("7.22.1"), 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 2d93bfd08..8badfd792 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.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp index ee1ae7751..10a5d4e53 100644 --- a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp +++ b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteTCPInput"), QStringLiteral("Remote TCP device input"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp index 8b6667015..d6ec4c760 100644 --- a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp +++ b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp @@ -39,7 +39,7 @@ const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { QStringLiteral("RTLSDR"), QStringLiteral("RTL-SDR Input"), - QStringLiteral("7.22.0"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplay/sdrplayplugin.cpp b/plugins/samplesource/sdrplay/sdrplayplugin.cpp index 46e8cdea5..95c6313c5 100644 --- a/plugins/samplesource/sdrplay/sdrplayplugin.cpp +++ b/plugins/samplesource/sdrplay/sdrplayplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = { QStringLiteral("SDRPlay"), QStringLiteral("SDRPlay RSP1 Input"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index bc8357a07..399e2f177 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("7.21.3"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Jon Beniston, M7RCE and 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 621d9eb6d..ec8140bcc 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.21.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp index b8ff9baf3..ffd37fcb9 100644 --- a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp +++ b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SoapySDRInputPlugin::m_pluginDescriptor = { QStringLiteral("SoapySDR"), QStringLiteral("SoapySDR Input"), - QStringLiteral("7.21.2"), + QStringLiteral("7.22.1"), 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 88da78c04..8eefdc6a2 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.21.4"), + QStringLiteral("7.22.1"), 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 00522ba23..db57b3957 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.4"), + QStringLiteral("7.22.1"), 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 e494e4c8b..223a9f132 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.4"), + QStringLiteral("7.22.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,