1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-04 14:17:50 -04:00

Use QStringLiteral when it make sense

This commit is contained in:
Kacper Michajłow 2020-11-21 15:38:04 +01:00
parent 74d0c74830
commit cf70d9430f
75 changed files with 417 additions and 417 deletions

View File

@ -27,13 +27,13 @@
#include "beamsteeringcwmodplugin.h" #include "beamsteeringcwmodplugin.h"
const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = { const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = {
QString(BeamSteeringCWMod::m_channelId), BeamSteeringCWMod::m_channelId,
QString("BeamSteeringCWMod"), QStringLiteral("BeamSteeringCWMod"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
BeamSteeringCWModPlugin::BeamSteeringCWModPlugin(QObject* parent) : BeamSteeringCWModPlugin::BeamSteeringCWModPlugin(QObject* parent) :

View File

@ -28,13 +28,13 @@
#include "interferometerplugin.h" #include "interferometerplugin.h"
const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = {
QString(Interferometer::m_channelId), Interferometer::m_channelId,
QString("Interferometer"), QStringLiteral("Interferometer"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
InterferometerPlugin::InterferometerPlugin(QObject* parent) : InterferometerPlugin::InterferometerPlugin(QObject* parent) :

View File

@ -25,12 +25,12 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId, ChannelAnalyzer::m_channelId,
QString("Channel Analyzer"), QStringLiteral("Channel Analyzer"),
QString("4.21.1"), QStringLiteral("4.21.1"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
ChannelAnalyzerPlugin::ChannelAnalyzerPlugin(QObject* parent) : ChannelAnalyzerPlugin::ChannelAnalyzerPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId, ADSBDemod::m_channelId,
QString("ADS-B Demodulator"), QStringLiteral("ADS-B Demodulator"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
ADSBPlugin::ADSBPlugin(QObject* parent) : ADSBPlugin::ADSBPlugin(QObject* parent) :

View File

@ -10,12 +10,12 @@
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
AMDemod::m_channelId, AMDemod::m_channelId,
QString("AM Demodulator"), QStringLiteral("AM Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
AMDemodPlugin::AMDemodPlugin(QObject* parent) : AMDemodPlugin::AMDemodPlugin(QObject* parent) :

View File

@ -30,12 +30,12 @@
const PluginDescriptor BFMPlugin::m_pluginDescriptor = { const PluginDescriptor BFMPlugin::m_pluginDescriptor = {
BFMDemod::m_channelId, BFMDemod::m_channelId,
QString("Broadcast FM Demodulator"), QStringLiteral("Broadcast FM Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
BFMPlugin::BFMPlugin(QObject* parent) : BFMPlugin::BFMPlugin(QObject* parent) :

View File

@ -26,12 +26,12 @@
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = { const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
ChirpChatDemod::m_channelId, ChirpChatDemod::m_channelId,
QString("ChirpChat Demodulator"), QStringLiteral("ChirpChat Demodulator"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
ChirpChatPlugin::ChirpChatPlugin(QObject* parent) : ChirpChatPlugin::ChirpChatPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
DSDDemod::m_channelId, DSDDemod::m_channelId,
QString("DSD Demodulator"), QStringLiteral("DSD Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
DSDDemodPlugin::DSDDemodPlugin(QObject* parent) : DSDDemodPlugin::DSDDemodPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = { const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = {
FreeDVDemod::m_channelId, FreeDVDemod::m_channelId,
QString("FreeDV Demodulator"), QStringLiteral("FreeDV Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FreeDVPlugin::FreeDVPlugin(QObject* parent) : FreeDVPlugin::FreeDVPlugin(QObject* parent) :

View File

@ -11,12 +11,12 @@
const PluginDescriptor NFMPlugin::m_pluginDescriptor = { const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
NFMDemod::m_channelId, NFMDemod::m_channelId,
QString("NFM Demodulator"), QStringLiteral("NFM Demodulator"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
NFMPlugin::NFMPlugin(QObject* parent) : NFMPlugin::NFMPlugin(QObject* parent) :

View File

@ -11,12 +11,12 @@
const PluginDescriptor SSBPlugin::m_pluginDescriptor = { const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
SSBDemod::m_channelId, SSBDemod::m_channelId,
QString("SSB Demodulator"), QStringLiteral("SSB Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
SSBPlugin::SSBPlugin(QObject* parent) : SSBPlugin::SSBPlugin(QObject* parent) :

View File

@ -12,12 +12,12 @@
const PluginDescriptor WFMPlugin::m_pluginDescriptor = { const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
WFMDemod::m_channelId, WFMDemod::m_channelId,
QString("WFM Demodulator"), QStringLiteral("WFM Demodulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
WFMPlugin::WFMPlugin(QObject* parent) : WFMPlugin::WFMPlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = { const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = {
FileSink::m_channelId, FileSink::m_channelId,
QString("File Sink"), QStringLiteral("File Sink"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FileSinkPlugin::FileSinkPlugin(QObject* parent) : FileSinkPlugin::FileSinkPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = {
FreqTracker::m_channelId, FreqTracker::m_channelId,
QString("Frequency Tracker"), QStringLiteral("Frequency Tracker"),
QString("4.21.0"), QStringLiteral("4.21.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FreqTrackerPlugin::FreqTrackerPlugin(QObject* parent) : FreqTrackerPlugin::FreqTrackerPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = { const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = {
LocalSink::m_channelId, LocalSink::m_channelId,
QString("Local channel sink"), QStringLiteral("Local channel sink"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
LocalSinkPlugin::LocalSinkPlugin(QObject* parent) : LocalSinkPlugin::LocalSinkPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = {
RemoteSink::m_channelId, RemoteSink::m_channelId,
QString("Remote channel sink"), QStringLiteral("Remote channel sink"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
RemoteSinkPlugin::RemoteSinkPlugin(QObject* parent) : RemoteSinkPlugin::RemoteSinkPlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = { const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = {
SigMFFileSink::m_channelId, SigMFFileSink::m_channelId,
QString("SigMF File Sink"), QStringLiteral("SigMF File Sink"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
SigMFFileSinkPlugin::SigMFFileSinkPlugin(QObject* parent) : SigMFFileSinkPlugin::SigMFFileSinkPlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = { const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = {
UDPSink::m_channelId, UDPSink::m_channelId,
QString("UDP Channel Sink"), QStringLiteral("UDP Channel Sink"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
UDPSinkPlugin::UDPSinkPlugin(QObject* parent) : UDPSinkPlugin::UDPSinkPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = { const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = {
FileSource::m_channelId, FileSource::m_channelId,
QString("File channel source"), QStringLiteral("File channel source"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FileSourcePlugin::FileSourcePlugin(QObject* parent) : FileSourcePlugin::FileSourcePlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = { const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
LocalSource::m_channelId, LocalSource::m_channelId,
QString("Local channel source"), QStringLiteral("Local channel source"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
LocalSourcePlugin::LocalSourcePlugin(QObject* parent) : LocalSourcePlugin::LocalSourcePlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
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,
QString("802.15.4 Modulator"), QStringLiteral("802.15.4 Modulator"),
QString("4.20.0"), QStringLiteral("4.20.0"),
QString("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
IEEE_802_15_4_ModPlugin::IEEE_802_15_4_ModPlugin(QObject* parent) : IEEE_802_15_4_ModPlugin::IEEE_802_15_4_ModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor AMModPlugin::m_pluginDescriptor = { const PluginDescriptor AMModPlugin::m_pluginDescriptor = {
AMMod::m_channelId, AMMod::m_channelId,
QString("AM Modulator"), QStringLiteral("AM Modulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
AMModPlugin::AMModPlugin(QObject* parent) : AMModPlugin::AMModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor ATVModPlugin::m_pluginDescriptor = { const PluginDescriptor ATVModPlugin::m_pluginDescriptor = {
ATVMod::m_channelId, ATVMod::m_channelId,
QString("ATV Modulator"), QStringLiteral("ATV Modulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
ATVModPlugin::ATVModPlugin(QObject* parent) : ATVModPlugin::ATVModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
ChirpChatMod::m_channelId, ChirpChatMod::m_channelId,
QString("ChirpChat Modulator"), QStringLiteral("ChirpChat Modulator"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
ChirpChatModPlugin::ChirpChatModPlugin(QObject* parent) : ChirpChatModPlugin::ChirpChatModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = { const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = {
FreeDVMod::m_channelId, FreeDVMod::m_channelId,
QString("FreeDV Modulator"), QStringLiteral("FreeDV Modulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FreeDVModPlugin::FreeDVModPlugin(QObject* parent) : FreeDVModPlugin::FreeDVModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
NFMMod::m_channelId, NFMMod::m_channelId,
QString("NFM Modulator"), QStringLiteral("NFM Modulator"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
NFMModPlugin::NFMModPlugin(QObject* parent) : NFMModPlugin::NFMModPlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { const PluginDescriptor PacketModPlugin::m_pluginDescriptor = {
PacketMod::m_channelId, PacketMod::m_channelId,
QString("Packet Modulator"), QStringLiteral("Packet Modulator"),
QString("4.20.0"), QStringLiteral("4.20.0"),
QString("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
PacketModPlugin::PacketModPlugin(QObject* parent) : PacketModPlugin::PacketModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor SSBModPlugin::m_pluginDescriptor = { const PluginDescriptor SSBModPlugin::m_pluginDescriptor = {
SSBMod::m_channelId, SSBMod::m_channelId,
QString("SSB Modulator"), QStringLiteral("SSB Modulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
SSBModPlugin::SSBModPlugin(QObject* parent) : SSBModPlugin::SSBModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor WFMModPlugin::m_pluginDescriptor = { const PluginDescriptor WFMModPlugin::m_pluginDescriptor = {
WFMMod::m_channelId, WFMMod::m_channelId,
QString("WFM Modulator"), QStringLiteral("WFM Modulator"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
WFMModPlugin::WFMModPlugin(QObject* parent) : WFMModPlugin::WFMModPlugin(QObject* parent) :

View File

@ -27,12 +27,12 @@
const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = { const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = {
RemoteSource::m_channelId, RemoteSource::m_channelId,
QString("Remote channel source"), QStringLiteral("Remote channel source"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
RemoteSourcePlugin::RemoteSourcePlugin(QObject* parent) : RemoteSourcePlugin::RemoteSourcePlugin(QObject* parent) :

View File

@ -30,12 +30,12 @@
const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = { const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = {
UDPSource::m_channelId, UDPSource::m_channelId,
QString("UDP Channel Source"), QStringLiteral("UDP Channel Source"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
UDPSourcePlugin::UDPSourcePlugin(QObject* parent) : UDPSourcePlugin::UDPSourcePlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor AFCPlugin::m_pluginDescriptor = { const PluginDescriptor AFCPlugin::m_pluginDescriptor = {
AFC::m_featureId, AFC::m_featureId,
QString("AFC"), QStringLiteral("AFC"),
QString("4.21.0"), QStringLiteral("4.21.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
AFCPlugin::AFCPlugin(QObject* parent) : AFCPlugin::AFCPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
GS232Controller::m_featureId, GS232Controller::m_featureId,
QString("GS-232 Rotator Controller"), QStringLiteral("GS-232 Rotator Controller"),
QString("4.21.0"), QStringLiteral("4.21.0"),
QString("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
GS232ControllerPlugin::GS232ControllerPlugin(QObject* parent) : GS232ControllerPlugin::GS232ControllerPlugin(QObject* parent) :

View File

@ -29,12 +29,12 @@
const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = { const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = {
RigCtlServer::m_featureId, RigCtlServer::m_featureId,
QString("RigCtl Server"), QStringLiteral("RigCtl Server"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
RigCtlServerPlugin::RigCtlServerPlugin(QObject* parent) : RigCtlServerPlugin::RigCtlServerPlugin(QObject* parent) :

View File

@ -28,12 +28,12 @@
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
SimplePTT::m_featureId, SimplePTT::m_featureId,
QString("Simple PTT"), QStringLiteral("Simple PTT"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
SimplePTTPlugin::SimplePTTPlugin(QObject* parent) : SimplePTTPlugin::SimplePTTPlugin(QObject* parent) :

View File

@ -28,13 +28,13 @@
#include "bladerf2mimowebapiadapter.h" #include "bladerf2mimowebapiadapter.h"
const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = { const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = {
QString("BladeRF2"), QStringLiteral("BladeRF2"),
QString("BladeRF2 MIMO"), QStringLiteral("BladeRF2 MIMO"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString BladeRF2MIMOPlugin::m_hardwareID = "BladeRF2"; const QString BladeRF2MIMOPlugin::m_hardwareID = "BladeRF2";

View File

@ -29,13 +29,13 @@
#include "limesdrmimowebapiadapter.h" #include "limesdrmimowebapiadapter.h"
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
QString("LimeSDR"), QStringLiteral("LimeSDR"),
QString("LimeSDR MIMO"), QStringLiteral("LimeSDR MIMO"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString LimeSDRMIMOPlugin::m_hardwareID = "LimeSDR"; const QString LimeSDRMIMOPlugin::m_hardwareID = "LimeSDR";

View File

@ -30,13 +30,13 @@
#include "metismisowebapiadapter.h" #include "metismisowebapiadapter.h"
const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = { const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
QString("MetisMISO"), QStringLiteral("MetisMISO"),
QString("Metis MISO"), QStringLiteral("Metis MISO"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString MetisMISOPlugin::m_hardwareID = "MetisMISO"; const QString MetisMISOPlugin::m_hardwareID = "MetisMISO";

View File

@ -29,13 +29,13 @@
#include "testmiwebapiadapter.h" #include "testmiwebapiadapter.h"
const PluginDescriptor TestMIPlugin::m_pluginDescriptor = { const PluginDescriptor TestMIPlugin::m_pluginDescriptor = {
QString("TestMI"), QStringLiteral("TestMI"),
QString("Test Multiple Input"), QStringLiteral("Test Multiple Input"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString TestMIPlugin::m_hardwareID = "TestMI"; const QString TestMIPlugin::m_hardwareID = "TestMI";

View File

@ -27,13 +27,13 @@
#include "testmosyncplugin.h" #include "testmosyncplugin.h"
const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = { const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = {
QString("TestMOSync"), QStringLiteral("TestMOSync"),
QString("Test Synchronous Multiple Output"), QStringLiteral("Test Synchronous Multiple Output"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString TestMOSyncPlugin::m_hardwareID = "TestMOSync"; const QString TestMOSyncPlugin::m_hardwareID = "TestMOSync";

View File

@ -29,13 +29,13 @@
#include "xtrxmimowebapiadapter.h" #include "xtrxmimowebapiadapter.h"
const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = {
QString("XTRX"), QStringLiteral("XTRX"),
QString("XTRX MIMO"), QStringLiteral("XTRX MIMO"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString XTRXMIMOPlugin::m_hardwareID = "XTRX"; const QString XTRXMIMOPlugin::m_hardwareID = "XTRX";

View File

@ -30,13 +30,13 @@
#endif #endif
const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = { const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = {
QString("BladeRF1"), QStringLiteral("BladeRF1"),
QString("BladeRF1 Output"), QStringLiteral("BladeRF1 Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString Bladerf1OutputPlugin::m_hardwareID = "BladeRF1"; const QString Bladerf1OutputPlugin::m_hardwareID = "BladeRF1";

View File

@ -30,13 +30,13 @@
#endif #endif
const PluginDescriptor BladeRF2OutputPlugin::m_pluginDescriptor = { const PluginDescriptor BladeRF2OutputPlugin::m_pluginDescriptor = {
QString("BladeRF2"), QStringLiteral("BladeRF2"),
QString("BladeRF2 Output"), QStringLiteral("BladeRF2 Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString BladeRF2OutputPlugin::m_hardwareID = "BladeRF2"; const QString BladeRF2OutputPlugin::m_hardwareID = "BladeRF2";

View File

@ -28,13 +28,13 @@
#include "fileoutputplugin.h" #include "fileoutputplugin.h"
const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = { const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = {
QString("FileOutput"), QStringLiteral("FileOutput"),
QString("File output"), QStringLiteral("File output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString FileOutputPlugin::m_hardwareID = "FileOutput"; const QString FileOutputPlugin::m_hardwareID = "FileOutput";

View File

@ -30,13 +30,13 @@
#include "hackrfoutputwebapiadapter.h" #include "hackrfoutputwebapiadapter.h"
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = { const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
QString("HackRF"), QStringLiteral("HackRF"),
QString("HackRF Output"), QStringLiteral("HackRF Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString HackRFOutputPlugin::m_hardwareID = "HackRF"; const QString HackRFOutputPlugin::m_hardwareID = "HackRF";

View File

@ -33,13 +33,13 @@
#include "limesdroutputwebapiadapter.h" #include "limesdroutputwebapiadapter.h"
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
QString("LimeSDR"), QStringLiteral("LimeSDR"),
QString("LimeSDR Output"), QStringLiteral("LimeSDR Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString LimeSDROutputPlugin::m_hardwareID = "LimeSDR"; const QString LimeSDROutputPlugin::m_hardwareID = "LimeSDR";

View File

@ -29,13 +29,13 @@
#include "localoutputwebapiadapter.h" #include "localoutputwebapiadapter.h"
const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = { const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = {
QString("LocalOutput"), QStringLiteral("LocalOutput"),
QString("Local device output"), QStringLiteral("Local device output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString LocalOutputPlugin::m_hardwareID = "LocalOutput"; const QString LocalOutputPlugin::m_hardwareID = "LocalOutput";

View File

@ -29,13 +29,13 @@
#include "plutosdroutputwebapiadapter.h" #include "plutosdroutputwebapiadapter.h"
const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = {
QString("PlutoSDR"), QStringLiteral("PlutoSDR"),
QString("PlutoSDR Output"), QStringLiteral("PlutoSDR Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString PlutoSDROutputPlugin::m_hardwareID = "PlutoSDR"; const QString PlutoSDROutputPlugin::m_hardwareID = "PlutoSDR";

View File

@ -29,13 +29,13 @@
#include "remoteoutputwebapiadapter.h" #include "remoteoutputwebapiadapter.h"
const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = {
QString("RemoteOutput"), QStringLiteral("RemoteOutput"),
QString("Remote device output"), QStringLiteral("Remote device output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString RemoteOutputPlugin::m_hardwareID = "RemoteOutput"; const QString RemoteOutputPlugin::m_hardwareID = "RemoteOutput";

View File

@ -31,13 +31,13 @@
#endif #endif
const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = {
QString("SoapySDR"), QStringLiteral("SoapySDR"),
QString("SoapySDR Output"), QStringLiteral("SoapySDR Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString SoapySDROutputPlugin::m_hardwareID = "SoapySDR"; const QString SoapySDROutputPlugin::m_hardwareID = "SoapySDR";

View File

@ -28,13 +28,13 @@
#include "testsinkplugin.h" #include "testsinkplugin.h"
const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = { const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = {
QString("TestSink"), QStringLiteral("TestSink"),
QString("Test Sink Output"), QStringLiteral("Test Sink Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString TestSinkPlugin::m_hardwareID = "TestSink"; const QString TestSinkPlugin::m_hardwareID = "TestSink";

View File

@ -33,13 +33,13 @@
#include "usrpoutputwebapiadapter.h" #include "usrpoutputwebapiadapter.h"
const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = { const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = {
QString("USRP"), QStringLiteral("USRP"),
QString("URSP Output"), QStringLiteral("URSP Output"),
QString("4.21.0"), QStringLiteral("4.21.0"),
QString("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString USRPOutputPlugin::m_hardwareID = "USRP"; const QString USRPOutputPlugin::m_hardwareID = "USRP";

View File

@ -34,13 +34,13 @@
#include "xtrxoutputwebapiadapter.h" #include "xtrxoutputwebapiadapter.h"
const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = {
QString("XTRX"), QStringLiteral("XTRX"),
QString("XTRX Output"), QStringLiteral("XTRX Output"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString XTRXOutputPlugin::m_hardwareID = "XTRX"; const QString XTRXOutputPlugin::m_hardwareID = "XTRX";

View File

@ -32,13 +32,13 @@
const int AirspyPlugin::m_maxDevices = 32; const int AirspyPlugin::m_maxDevices = 32;
const PluginDescriptor AirspyPlugin::m_pluginDescriptor = { const PluginDescriptor AirspyPlugin::m_pluginDescriptor = {
QString("Airspy"), QStringLiteral("Airspy"),
QString("Airspy Input"), QStringLiteral("Airspy Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString AirspyPlugin::m_hardwareID = "Airspy"; const QString AirspyPlugin::m_hardwareID = "Airspy";

View File

@ -30,13 +30,13 @@
const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = { const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = {
QString("AirspyHF"), QStringLiteral("AirspyHF"),
QString("AirspyHF Input"), QStringLiteral("AirspyHF Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString AirspyHFPlugin::m_hardwareID = "AirspyHF"; const QString AirspyHFPlugin::m_hardwareID = "AirspyHF";

View File

@ -29,13 +29,13 @@
#endif #endif
const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = { const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = {
QString("AudioInput"), QStringLiteral("AudioInput"),
QString("Audio Input"), QStringLiteral("Audio Input"),
QString("6.0.1"), QStringLiteral("6.0.1"),
QString("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString AudioInputPlugin::m_hardwareID = "AudioInput"; const QString AudioInputPlugin::m_hardwareID = "AudioInput";

View File

@ -30,13 +30,13 @@
#endif #endif
const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = { const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = {
QString("BladeRF1"), QStringLiteral("BladeRF1"),
QString("BladeRF1 Input"), QStringLiteral("BladeRF1 Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString Blderf1InputPlugin::m_hardwareID = "BladeRF1"; const QString Blderf1InputPlugin::m_hardwareID = "BladeRF1";

View File

@ -30,13 +30,13 @@
#endif #endif
const PluginDescriptor Blderf2InputPlugin::m_pluginDescriptor = { const PluginDescriptor Blderf2InputPlugin::m_pluginDescriptor = {
QString("BladeRF2"), QStringLiteral("BladeRF2"),
QString("BladeRF2 Input"), QStringLiteral("BladeRF2 Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString Blderf2InputPlugin::m_hardwareID = "BladeRF2"; const QString Blderf2InputPlugin::m_hardwareID = "BladeRF2";

View File

@ -29,13 +29,13 @@
#include "fcdtraits.h" #include "fcdtraits.h"
const PluginDescriptor FCDProPlugin::m_pluginDescriptor = { const PluginDescriptor FCDProPlugin::m_pluginDescriptor = {
QString("FCDPro"), QStringLiteral("FCDPro"),
QString(fcd_traits<Pro>::pluginDisplayedName), fcd_traits<Pro>::pluginDisplayedName,
QString(fcd_traits<Pro>::pluginVersion), fcd_traits<Pro>::pluginVersion,
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
FCDProPlugin::FCDProPlugin(QObject* parent) : FCDProPlugin::FCDProPlugin(QObject* parent) :

View File

@ -29,13 +29,13 @@
#include "fcdtraits.h" #include "fcdtraits.h"
const PluginDescriptor FCDProPlusPlugin::m_pluginDescriptor = { const PluginDescriptor FCDProPlusPlugin::m_pluginDescriptor = {
QString("FCDProPlus"), QStringLiteral("FCDProPlus"),
QString(fcd_traits<ProPlus>::pluginDisplayedName), fcd_traits<ProPlus>::pluginDisplayedName,
QString(fcd_traits<ProPlus>::pluginVersion), fcd_traits<ProPlus>::pluginVersion,
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString FCDProPlusPlugin::m_deviceTypeID = FCDPROPLUS_DEVICE_TYPE_ID; const QString FCDProPlusPlugin::m_deviceTypeID = FCDPROPLUS_DEVICE_TYPE_ID;

View File

@ -29,13 +29,13 @@
#include "fileinputwebapiadapter.h" #include "fileinputwebapiadapter.h"
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
QString("FileInput"), QStringLiteral("FileInput"),
QString("File device input"), QStringLiteral("File device input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString FileInputPlugin::m_hardwareID = "FileInput"; const QString FileInputPlugin::m_hardwareID = "FileInput";

View File

@ -31,13 +31,13 @@
#include "hackrfinputwebapiadapter.h" #include "hackrfinputwebapiadapter.h"
const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = { const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = {
QString("HackRF"), QStringLiteral("HackRF"),
QString("HackRF Input"), QStringLiteral("HackRF Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString HackRFInputPlugin::m_hardwareID = "HackRF"; const QString HackRFInputPlugin::m_hardwareID = "HackRF";

View File

@ -30,13 +30,13 @@
#include "kiwisdrwebapiadapter.h" #include "kiwisdrwebapiadapter.h"
const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = { const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = {
QString("KiwiSDR"), QStringLiteral("KiwiSDR"),
QString("KiwiSDR input"), QStringLiteral("KiwiSDR input"),
QString("4.21.2"), QStringLiteral("4.21.2"),
QString("(c) Vort (c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Vort (c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString KiwiSDRPlugin::m_hardwareID = "KiwiSDR"; const QString KiwiSDRPlugin::m_hardwareID = "KiwiSDR";

View File

@ -33,13 +33,13 @@
#include "limesdrinputwebapiadapter.h" #include "limesdrinputwebapiadapter.h"
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
QString("LimeSDR"), QStringLiteral("LimeSDR"),
QString("LimeSDR Input"), QStringLiteral("LimeSDR Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString LimeSDRInputPlugin::m_hardwareID = "LimeSDR"; const QString LimeSDRInputPlugin::m_hardwareID = "LimeSDR";

View File

@ -29,13 +29,13 @@
#include "localinputwebapiadapter.h" #include "localinputwebapiadapter.h"
const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = { const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = {
QString("LocalInput"), QStringLiteral("LocalInput"),
QString("Local device input"), QStringLiteral("Local device input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString LocalInputPlugin::m_hardwareID = "LocalInput"; const QString LocalInputPlugin::m_hardwareID = "LocalInput";

View File

@ -31,13 +31,13 @@
#endif #endif
const PluginDescriptor PerseusPlugin::m_pluginDescriptor = { const PluginDescriptor PerseusPlugin::m_pluginDescriptor = {
QString("Perseus"), QStringLiteral("Perseus"),
QString("Perseus Input"), QStringLiteral("Perseus Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString PerseusPlugin::m_hardwareID = "Perseus"; const QString PerseusPlugin::m_hardwareID = "Perseus";

View File

@ -31,13 +31,13 @@
class DeviceAPI; class DeviceAPI;
const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = {
QString("PlutoSDR"), QStringLiteral("PlutoSDR"),
QString("PlutoSDR Input"), QStringLiteral("PlutoSDR Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString PlutoSDRInputPlugin::m_hardwareID = "PlutoSDR"; const QString PlutoSDRInputPlugin::m_hardwareID = "PlutoSDR";

View File

@ -29,13 +29,13 @@
#include "remoteinputwebapiadapter.h" #include "remoteinputwebapiadapter.h"
const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = {
QString("RemoteInput"), QStringLiteral("RemoteInput"),
QString("Remote device input"), QStringLiteral("Remote device input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString RemoteInputPlugin::m_hardwareID = "RemoteInput"; const QString RemoteInputPlugin::m_hardwareID = "RemoteInput";

View File

@ -13,13 +13,13 @@
#include "rtlsdrwebapiadapter.h" #include "rtlsdrwebapiadapter.h"
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
QString("RTLSDR"), QStringLiteral("RTLSDR"),
QString("RTL-SDR Input"), QStringLiteral("RTL-SDR Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString RTLSDRPlugin::m_hardwareID = "RTLSDR"; const QString RTLSDRPlugin::m_hardwareID = "RTLSDR";

View File

@ -29,13 +29,13 @@
#include "sdrplaywebapiadapter.h" #include "sdrplaywebapiadapter.h"
const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = { const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = {
QString("SDRPlay"), QStringLiteral("SDRPlay"),
QString("SDRPlay RSP1 Input"), QStringLiteral("SDRPlay RSP1 Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString SDRPlayPlugin::m_hardwareID = "SDRplay1"; const QString SDRPlayPlugin::m_hardwareID = "SDRplay1";

View File

@ -29,13 +29,13 @@
#include "sigmffileinputwebapiadapter.h" #include "sigmffileinputwebapiadapter.h"
const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = {
QString("SigMFFileInput"), QStringLiteral("SigMFFileInput"),
QString("File device input (SigMF)"), QStringLiteral("File device input (SigMF)"),
QString("6.0.0"), QStringLiteral("6.0.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString SigMFFileInputPlugin::m_hardwareID = "SigMFFileInput"; const QString SigMFFileInputPlugin::m_hardwareID = "SigMFFileInput";

View File

@ -30,13 +30,13 @@
#endif #endif
const PluginDescriptor SoapySDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor SoapySDRInputPlugin::m_pluginDescriptor = {
QString("SoapySDR"), QStringLiteral("SoapySDR"),
QString("SoapySDR Input"), QStringLiteral("SoapySDR Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString SoapySDRInputPlugin::m_hardwareID = "SoapySDR"; const QString SoapySDRInputPlugin::m_hardwareID = "SoapySDR";

View File

@ -29,13 +29,13 @@
#include "testsourcewebapiadapter.h" #include "testsourcewebapiadapter.h"
const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = { const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = {
QString("TestSource"), QStringLiteral("TestSource"),
QString("Test Source input"), QStringLiteral("Test Source input"),
QString("4.21.1"), QStringLiteral("4.21.1"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString TestSourcePlugin::m_hardwareID = "TestSource"; const QString TestSourcePlugin::m_hardwareID = "TestSource";

View File

@ -33,13 +33,13 @@
#include "usrpinputwebapiadapter.h" #include "usrpinputwebapiadapter.h"
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
QString("USRP"), QStringLiteral("USRP"),
QString("USRP Input"), QStringLiteral("USRP Input"),
QString("4.21.0"), QStringLiteral("4.21.0"),
QString("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString USRPInputPlugin::m_hardwareID = "USRP"; const QString USRPInputPlugin::m_hardwareID = "USRP";

View File

@ -36,13 +36,13 @@
#endif #endif
const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = {
QString("XTRX"), QStringLiteral("XTRX"),
QString("XTRX Input"), QStringLiteral("XTRX Input"),
QString("4.19.0"), QStringLiteral("4.19.0"),
QString("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
const QString XTRXInputPlugin::m_hardwareID = "XTRX"; const QString XTRXInputPlugin::m_hardwareID = "XTRX";