1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-07-15 15:25:24 -04:00

Updated versions and changelogs

This commit is contained in:
f4exb 2024-06-25 22:19:14 +02:00
parent a4b78fa30e
commit 3e909d2016
43 changed files with 75 additions and 41 deletions

View File

@ -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 <f4exb06@gmail.com> Tue, 25 Jun 2024 20:17:52 +0200
sdrangel (7.21.3-1) unstable; urgency=medium sdrangel (7.21.3-1) unstable; urgency=medium
* Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155 * Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155

View File

@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version # configure version
set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MAJOR "7")
set(sdrangel_VERSION_MINOR "21") set(sdrangel_VERSION_MINOR "21")
set(sdrangel_VERSION_PATCH "3") set(sdrangel_VERSION_PATCH "4")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options # SDRAngel cmake options

17
debian/changelog vendored
View File

@ -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 <f4exb06@gmail.com> Tue, 25 Jun 2024 20:17:52 +0200
sdrangel (7.21.3-1) unstable; urgency=medium sdrangel (7.21.3-1) unstable; urgency=medium
* Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155 * Update sdrangel-windows-libraries to latest revision. PR #2173 fixes #2155

View File

@ -34,7 +34,7 @@
const PluginDescriptor DOA2Plugin::m_pluginDescriptor = { const PluginDescriptor DOA2Plugin::m_pluginDescriptor = {
DOA2::m_channelId, DOA2::m_channelId,
QStringLiteral("DOA 2 sources"), QStringLiteral("DOA 2 sources"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = {
Interferometer::m_channelId, Interferometer::m_channelId,
QStringLiteral("Interferometer"), QStringLiteral("Interferometer"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
AISDemod::m_channelId, AISDemod::m_channelId,
QStringLiteral("AIS Demodulator"), QStringLiteral("AIS Demodulator"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
DSDDemod::m_channelId, DSDDemod::m_channelId,
QStringLiteral("DSD Demodulator"), QStringLiteral("DSD Demodulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor ILSDemodPlugin::m_pluginDescriptor = { const PluginDescriptor ILSDemodPlugin::m_pluginDescriptor = {
ILSDemod::m_channelId, ILSDemod::m_channelId,
QStringLiteral("ILS Demodulator"), QStringLiteral("ILS Demodulator"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor WFMPlugin::m_pluginDescriptor = { const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
WFMDemod::m_channelId, WFMDemod::m_channelId,
QStringLiteral("WFM Demodulator"), QStringLiteral("WFM Demodulator"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = { const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = {
FreqScanner::m_channelId, FreqScanner::m_channelId,
QStringLiteral("Frequency Scanner"), QStringLiteral("Frequency Scanner"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = { const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = {
HeatMap::m_channelId, HeatMap::m_channelId,
QStringLiteral("Heat Map"), QStringLiteral("Heat Map"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = { const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = {
IEEE_802_15_4_Mod::m_channelId, IEEE_802_15_4_Mod::m_channelId,
QStringLiteral("802.15.4 Modulator"), QStringLiteral("802.15.4 Modulator"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor AISModPlugin::m_pluginDescriptor = { const PluginDescriptor AISModPlugin::m_pluginDescriptor = {
AISMod::m_channelId, AISMod::m_channelId,
QStringLiteral("AIS Modulator"), QStringLiteral("AIS Modulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
ChirpChatMod::m_channelId, ChirpChatMod::m_channelId,
QStringLiteral("ChirpChat Modulator"), QStringLiteral("ChirpChat Modulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { const PluginDescriptor DATVModPlugin::m_pluginDescriptor = {
DATVMod::m_channelId, DATVMod::m_channelId,
QStringLiteral("DATV Modulator"), QStringLiteral("DATV Modulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { const PluginDescriptor PacketModPlugin::m_pluginDescriptor = {
PacketMod::m_channelId, PacketMod::m_channelId,
QStringLiteral("Packet Modulator"), QStringLiteral("Packet Modulator"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PSK31Plugin::m_pluginDescriptor = { const PluginDescriptor PSK31Plugin::m_pluginDescriptor = {
PSK31::m_channelId, PSK31::m_channelId,
QStringLiteral("PSK31 Modulator"), QStringLiteral("PSK31 Modulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RttyModPlugin::m_pluginDescriptor = { const PluginDescriptor RttyModPlugin::m_pluginDescriptor = {
RttyMod::m_channelId, RttyMod::m_channelId,
QStringLiteral("RTTY Modulator"), QStringLiteral("RTTY Modulator"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor AISPlugin::m_pluginDescriptor = { const PluginDescriptor AISPlugin::m_pluginDescriptor = {
AIS::m_featureId, AIS::m_featureId,
QStringLiteral("AIS"), QStringLiteral("AIS"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = {
AntennaTools::m_featureId, AntennaTools::m_featureId,
QStringLiteral("Antenna Tools"), QStringLiteral("Antenna Tools"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor MapPlugin::m_pluginDescriptor = { const PluginDescriptor MapPlugin::m_pluginDescriptor = {
Map::m_featureId, Map::m_featureId,
QStringLiteral("Map"), QStringLiteral("Map"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -28,7 +28,7 @@
const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = { const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = {
MorseDecoder::m_featureId, MorseDecoder::m_featureId,
QStringLiteral("Morse Decoder"), QStringLiteral("Morse Decoder"),
QStringLiteral("7.21.2"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
SimplePTT::m_featureId, SimplePTT::m_featureId,
QStringLiteral("Simple PTT"), QStringLiteral("Simple PTT"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor AudioCATSISOPlugin::m_pluginDescriptor = { const PluginDescriptor AudioCATSISOPlugin::m_pluginDescriptor = {
QStringLiteral("AudioCATSISO"), QStringLiteral("AudioCATSISO"),
QStringLiteral("Audio CAT SISO"), QStringLiteral("Audio CAT SISO"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = { const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2"),
QStringLiteral("BladeRF2 MIMO"), QStringLiteral("BladeRF2 MIMO"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR MIMO"), QStringLiteral("LimeSDR MIMO"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = { const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
QStringLiteral("MetisMISO"), QStringLiteral("MetisMISO"),
QStringLiteral("Metis MISO"), QStringLiteral("Metis MISO"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR MIMO"), QStringLiteral("PlutoSDR MIMO"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor TestMIPlugin::m_pluginDescriptor = { const PluginDescriptor TestMIPlugin::m_pluginDescriptor = {
QStringLiteral("TestMI"), QStringLiteral("TestMI"),
QStringLiteral("Test Multiple Input"), QStringLiteral("Test Multiple Input"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = { const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = {
QStringLiteral("TestSink"), QStringLiteral("TestSink"),
QStringLiteral("Test Sink Output"), QStringLiteral("Test Sink Output"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -37,7 +37,7 @@
const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = {
QStringLiteral("XTRX"), QStringLiteral("XTRX"),
QStringLiteral("XTRX Output"), QStringLiteral("XTRX Output"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor AaroniaRTSAInputPlugin::m_pluginDescriptor = { const PluginDescriptor AaroniaRTSAInputPlugin::m_pluginDescriptor = {
QStringLiteral("AaroniaRTSA"), QStringLiteral("AaroniaRTSA"),
QStringLiteral("AaroniaRTSA input"), QStringLiteral("AaroniaRTSA input"),
QStringLiteral("7.21.2"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = { const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioInput"), QStringLiteral("AudioInput"),
QStringLiteral("Audio Input"), QStringLiteral("Audio Input"),
QStringLiteral("7.21.2"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
QStringLiteral("FileInput"), QStringLiteral("FileInput"),
QStringLiteral("File device input"), QStringLiteral("File device input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = { const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = {
QStringLiteral("KiwiSDR"), QStringLiteral("KiwiSDR"),
QStringLiteral("KiwiSDR input"), QStringLiteral("KiwiSDR input"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Vort (c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Vort (c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -36,7 +36,7 @@
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Input"), QStringLiteral("LimeSDR Input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = { const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = {
QStringLiteral("LocalInput"), QStringLiteral("LocalInput"),
QStringLiteral("Local device input"), QStringLiteral("Local device input"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -35,7 +35,7 @@ class DeviceAPI;
const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Input"), QStringLiteral("PlutoSDR Input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = {
QStringLiteral("RemoteInput"), QStringLiteral("RemoteInput"),
QStringLiteral("Remote device input"), QStringLiteral("Remote device input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = {
QStringLiteral("SigMFFileInput"), QStringLiteral("SigMFFileInput"),
QStringLiteral("File device input (SigMF)"), QStringLiteral("File device input (SigMF)"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = { const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = {
QStringLiteral("TestSource"), QStringLiteral("TestSource"),
QStringLiteral("Test Source input"), QStringLiteral("Test Source input"),
QStringLiteral("7.20.0"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -36,7 +36,7 @@
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
QStringLiteral("USRP"), QStringLiteral("USRP"),
QStringLiteral("USRP Input"), QStringLiteral("USRP Input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -39,7 +39,7 @@
const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = {
QStringLiteral("XTRX"), QStringLiteral("XTRX"),
QStringLiteral("XTRX Input"), QStringLiteral("XTRX Input"),
QStringLiteral("7.21.3"), QStringLiteral("7.21.4"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,