1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Updated versions and changelogs

This commit is contained in:
f4exb 2022-03-30 22:16:08 +02:00
parent ce31c8be2e
commit 7f1c838cec
106 changed files with 147 additions and 105 deletions

View File

@ -1,3 +1,24 @@
sdrangel (6.20.2-1) unstable; urgency=medium
* MainCore: signals to notify changes in devices channels and features. Part of #1139
* Implement signal when main preferences are changed. Partially implements #1139
* Moved device and feature sets add and remove signals where appropriate. Improves #1139
* Added signals to SampleSinkFifo including samples timings. Implements #1143 and part of #1139
* VOR localizer feature: use added channel signal for automatic update
* Add FeatureLayout - to try to better use space in Feature window. PR #1178
* Replace obsolete QGLWidget by QOpenGLWidget
* Fixed cleanup method on shader classes. Fixes #1179
* GLSpectrum GUI: use a custom flow layout for the 3 main horizontal layouts
* ADS-B: Use QSplitter for table and map. PR #1180
* Update station icon on map when My Position preference changes. PR #1182
* ADS-B: Remove device set refresh button, as now automatic. Fix possible crash on close. PR #1184
* Fixed some signal/slot connects. Removed unnecessary m_channelMessageQueue in ChannelAPI. Fixes #1185
* Demod analyzer feature: change addRollupWidget placement to fix #1183. Fixes #1183
* Implement new message pipes. Implements #1154
* Fix satellite tracks when timezone isn't UTC. Fixes #1188. PR #1190
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Wed, 30 Mar 2022 19:29:43 +0200
sdrangel (6.20.1-1) unstable; urgency=medium sdrangel (6.20.1-1) unstable; urgency=medium
* Removed built in HIDAPI. Fixes #1160 * Removed built in HIDAPI. Fixes #1160

View File

@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version # configure version
set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MAJOR "6")
set(sdrangel_VERSION_MINOR "20") set(sdrangel_VERSION_MINOR "20")
set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_PATCH "2")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options # SDRAngel cmake options

21
debian/changelog vendored
View File

@ -1,3 +1,24 @@
sdrangel (6.20.2-1) unstable; urgency=medium
* MainCore: signals to notify changes in devices channels and features. Part of #1139
* Implement signal when main preferences are changed. Partially implements #1139
* Moved device and feature sets add and remove signals where appropriate. Improves #1139
* Added signals to SampleSinkFifo including samples timings. Implements #1143 and part of #1139
* VOR localizer feature: use added channel signal for automatic update
* Add FeatureLayout - to try to better use space in Feature window. PR #1178
* Replace obsolete QGLWidget by QOpenGLWidget
* Fixed cleanup method on shader classes. Fixes #1179
* GLSpectrum GUI: use a custom flow layout for the 3 main horizontal layouts
* ADS-B: Use QSplitter for table and map. PR #1180
* Update station icon on map when My Position preference changes. PR #1182
* ADS-B: Remove device set refresh button, as now automatic. Fix possible crash on close. PR #1184
* Fixed some signal/slot connects. Removed unnecessary m_channelMessageQueue in ChannelAPI. Fixes #1185
* Demod analyzer feature: change addRollupWidget placement to fix #1183. Fixes #1183
* Implement new message pipes. Implements #1154
* Fix satellite tracks when timezone isn't UTC. Fixes #1188. PR #1190
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Wed, 30 Mar 2022 19:29:43 +0200
sdrangel (6.20.1-1) unstable; urgency=medium sdrangel (6.20.1-1) unstable; urgency=medium
* Removed built in HIDAPI. Fixes #1160 * Removed built in HIDAPI. Fixes #1160

View File

@ -35,8 +35,8 @@ const char *fcd_traits<ProPlus>::displayedName = "FunCube Dongle Pro+";
const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input"; const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input";
const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input"; const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";
const char *fcd_traits<Pro>::pluginVersion = "6.20.1"; const char *fcd_traits<Pro>::pluginVersion = "6.20.2";
const char *fcd_traits<ProPlus>::pluginVersion = "6.20.1"; const char *fcd_traits<ProPlus>::pluginVersion = "6.20.2";
const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L; const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L; const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L;

View File

@ -29,7 +29,7 @@
const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = { const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = {
BeamSteeringCWMod::m_channelId, BeamSteeringCWMod::m_channelId,
QStringLiteral("BeamSteeringCWMod"), QStringLiteral("BeamSteeringCWMod"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = {
Interferometer::m_channelId, Interferometer::m_channelId,
QStringLiteral("Interferometer"), QStringLiteral("Interferometer"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -26,7 +26,7 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId, ChannelAnalyzer::m_channelId,
QStringLiteral("Channel Analyzer"), QStringLiteral("Channel Analyzer"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId, ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"), QStringLiteral("ADS-B Demodulator"),
QStringLiteral("6.20.1"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
AISDemod::m_channelId, AISDemod::m_channelId,
QStringLiteral("AIS Demodulator"), QStringLiteral("AIS Demodulator"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
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

@ -11,7 +11,7 @@
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
AMDemod::m_channelId, AMDemod::m_channelId,
QStringLiteral("AM Demodulator"), QStringLiteral("AM Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 APTDemodPlugin::m_pluginDescriptor = { const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
APTDemod::m_channelId, APTDemod::m_channelId,
QStringLiteral("APT Demodulator"), QStringLiteral("APT Demodulator"),
QStringLiteral("6.19.0"), QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@ const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor =
{ {
ATVDemod::m_channelId, ATVDemod::m_channelId,
QString("ATV Demodulator"), QString("ATV Demodulator"),
QString("6.18.0"), QString("6.20.2"),
QString("(c) F4HKW for F4EXB / SDRAngel"), QString("(c) F4HKW for F4EXB / SDRAngel"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor BFMPlugin::m_pluginDescriptor = { const PluginDescriptor BFMPlugin::m_pluginDescriptor = {
BFMDemod::m_channelId, BFMDemod::m_channelId,
QStringLiteral("Broadcast FM Demodulator"), QStringLiteral("Broadcast FM Demodulator"),
QStringLiteral("6.19.0"), QStringLiteral("6.20.2"),
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

@ -27,7 +27,7 @@
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = { const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
ChirpChatDemod::m_channelId, ChirpChatDemod::m_channelId,
QStringLiteral("ChirpChat Demodulator"), QStringLiteral("ChirpChat Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 DABDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = {
DABDemod::m_channelId, DABDemod::m_channelId,
QStringLiteral("DAB Demodulator"), QStringLiteral("DAB Demodulator"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
{ {
DATVDemod::m_channelId, DATVDemod::m_channelId,
QString("DATV Demodulator"), QString("DATV Demodulator"),
QString("6.20.0"), QString("6.20.2"),
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
DSDDemod::m_channelId, DSDDemod::m_channelId,
QStringLiteral("DSD Demodulator"), QStringLiteral("DSD Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = { const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = {
FreeDVDemod::m_channelId, FreeDVDemod::m_channelId,
QStringLiteral("FreeDV Demodulator"), QStringLiteral("FreeDV Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -12,7 +12,7 @@
const PluginDescriptor NFMPlugin::m_pluginDescriptor = { const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
NFMDemod::m_channelId, NFMDemod::m_channelId,
QStringLiteral("NFM Demodulator"), QStringLiteral("NFM Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 PacketDemodPlugin::m_pluginDescriptor = { const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = {
PacketDemod::m_channelId, PacketDemod::m_channelId,
QStringLiteral("Packet Demodulator"), QStringLiteral("Packet Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = { const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
PagerDemod::m_channelId, PagerDemod::m_channelId,
QStringLiteral("Pager Demodulator"), QStringLiteral("Pager Demodulator"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = { const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = {
RadiosondeDemod::m_channelId, RadiosondeDemod::m_channelId,
QStringLiteral("Radiosonde Demodulator"), QStringLiteral("Radiosonde Demodulator"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -12,7 +12,7 @@
const PluginDescriptor SSBPlugin::m_pluginDescriptor = { const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
SSBDemod::m_channelId, SSBDemod::m_channelId,
QStringLiteral("SSB Demodulator"), QStringLiteral("SSB Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 VORDemodPlugin::m_pluginDescriptor = { const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
VORDemod::m_channelId, VORDemod::m_channelId,
QStringLiteral("VOR Demodulator"), QStringLiteral("VOR Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor VORDemodSCPlugin::m_pluginDescriptor = { const PluginDescriptor VORDemodSCPlugin::m_pluginDescriptor = {
VORDemodSC::m_channelId, VORDemodSC::m_channelId,
QStringLiteral("VOR Single Channel Demodulator"), QStringLiteral("VOR Single Channel Demodulator"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -13,7 +13,7 @@
const PluginDescriptor WFMPlugin::m_pluginDescriptor = { const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
WFMDemod::m_channelId, WFMDemod::m_channelId,
QStringLiteral("WFM Demodulator"), QStringLiteral("WFM Demodulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 FileSinkPlugin::m_pluginDescriptor = { const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = {
FileSink::m_channelId, FileSink::m_channelId,
QStringLiteral("File Sink"), QStringLiteral("File Sink"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = {
FreqTracker::m_channelId, FreqTracker::m_channelId,
QStringLiteral("Frequency Tracker"), QStringLiteral("Frequency Tracker"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = { const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = {
LocalSink::m_channelId, LocalSink::m_channelId,
QStringLiteral("Local channel sink"), QStringLiteral("Local channel sink"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 NoiseFigurePlugin::m_pluginDescriptor = { const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
NoiseFigure::m_channelId, NoiseFigure::m_channelId,
QStringLiteral("Noise Figure"), QStringLiteral("Noise Figure"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = { const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = {
RadioAstronomy::m_channelId, RadioAstronomy::m_channelId,
QStringLiteral("Radio Astronomy"), QStringLiteral("Radio Astronomy"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = { const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
RadioClock::m_channelId, RadioClock::m_channelId,
QStringLiteral("Radio Clock"), QStringLiteral("Radio Clock"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = {
RemoteSink::m_channelId, RemoteSink::m_channelId,
QStringLiteral("Remote channel sink"), QStringLiteral("Remote channel sink"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 SigMFFileSinkPlugin::m_pluginDescriptor = { const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = {
SigMFFileSink::m_channelId, SigMFFileSink::m_channelId,
QStringLiteral("SigMF File Sink"), QStringLiteral("SigMF File Sink"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 UDPSinkPlugin::m_pluginDescriptor = { const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = {
UDPSink::m_channelId, UDPSink::m_channelId,
QStringLiteral("UDP Channel Sink"), QStringLiteral("UDP Channel Sink"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = { const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = {
FileSource::m_channelId, FileSource::m_channelId,
QStringLiteral("File channel source"), QStringLiteral("File channel source"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = { const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
LocalSource::m_channelId, LocalSource::m_channelId,
QStringLiteral("Local channel source"), QStringLiteral("Local channel source"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 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("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor AISModPlugin::m_pluginDescriptor = { const PluginDescriptor AISModPlugin::m_pluginDescriptor = {
AISMod::m_channelId, AISMod::m_channelId,
QStringLiteral("AIS Modulator"), QStringLiteral("AIS Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 AMModPlugin::m_pluginDescriptor = { const PluginDescriptor AMModPlugin::m_pluginDescriptor = {
AMMod::m_channelId, AMMod::m_channelId,
QStringLiteral("AM Modulator"), QStringLiteral("AM Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor ATVModPlugin::m_pluginDescriptor = { const PluginDescriptor ATVModPlugin::m_pluginDescriptor = {
ATVMod::m_channelId, ATVMod::m_channelId,
QStringLiteral("ATV Modulator"), QStringLiteral("ATV Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
ChirpChatMod::m_channelId, ChirpChatMod::m_channelId,
QStringLiteral("ChirpChat Modulator"), QStringLiteral("ChirpChat Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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("6.19.1"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = { const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = {
FreeDVMod::m_channelId, FreeDVMod::m_channelId,
QStringLiteral("FreeDV Modulator"), QStringLiteral("FreeDV Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
NFMMod::m_channelId, NFMMod::m_channelId,
QStringLiteral("NFM Modulator"), QStringLiteral("NFM Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 PacketModPlugin::m_pluginDescriptor = { const PluginDescriptor PacketModPlugin::m_pluginDescriptor = {
PacketMod::m_channelId, PacketMod::m_channelId,
QStringLiteral("Packet Modulator"), QStringLiteral("Packet Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 SSBModPlugin::m_pluginDescriptor = { const PluginDescriptor SSBModPlugin::m_pluginDescriptor = {
SSBMod::m_channelId, SSBMod::m_channelId,
QStringLiteral("SSB Modulator"), QStringLiteral("SSB Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor WFMModPlugin::m_pluginDescriptor = { const PluginDescriptor WFMModPlugin::m_pluginDescriptor = {
WFMMod::m_channelId, WFMMod::m_channelId,
QStringLiteral("WFM Modulator"), QStringLiteral("WFM Modulator"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -28,7 +28,7 @@
const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = { const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = {
RemoteSource::m_channelId, RemoteSource::m_channelId,
QStringLiteral("Remote channel source"), QStringLiteral("Remote channel source"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 UDPSourcePlugin::m_pluginDescriptor = { const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = {
UDPSource::m_channelId, UDPSource::m_channelId,
QStringLiteral("UDP Channel Source"), QStringLiteral("UDP Channel Source"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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 AFCPlugin::m_pluginDescriptor = { const PluginDescriptor AFCPlugin::m_pluginDescriptor = {
AFC::m_featureId, AFC::m_featureId,
QStringLiteral("AFC"), QStringLiteral("AFC"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor AISPlugin::m_pluginDescriptor = { const PluginDescriptor AISPlugin::m_pluginDescriptor = {
AIS::m_featureId, AIS::m_featureId,
QStringLiteral("AIS"), QStringLiteral("AIS"),
QStringLiteral("6.19.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = {
AntennaTools::m_featureId, AntennaTools::m_featureId,
QStringLiteral("Antenna Tools"), QStringLiteral("Antenna Tools"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor APRSPlugin::m_pluginDescriptor = { const PluginDescriptor APRSPlugin::m_pluginDescriptor = {
APRS::m_featureId, APRS::m_featureId,
QStringLiteral("APRS"), QStringLiteral("APRS"),
QStringLiteral("6.18.1"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
DemodAnalyzer::m_featureId, DemodAnalyzer::m_featureId,
QStringLiteral("Demod Analyzer"), QStringLiteral("Demod Analyzer"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
GS232Controller::m_featureId, GS232Controller::m_featureId,
QStringLiteral("Rotator Controller"), QStringLiteral("Rotator Controller"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor JogdialControllerPlugin::m_pluginDescriptor = { const PluginDescriptor JogdialControllerPlugin::m_pluginDescriptor = {
JogdialController::m_featureId, JogdialController::m_featureId,
QStringLiteral("Jogdial Controller"), QStringLiteral("Jogdial Controller"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor MapPlugin::m_pluginDescriptor = { const PluginDescriptor MapPlugin::m_pluginDescriptor = {
Map::m_featureId, Map::m_featureId,
QStringLiteral("Map"), QStringLiteral("Map"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = { const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = {
PERTester::m_featureId, PERTester::m_featureId,
QStringLiteral("Packet Error Rate Tester"), QStringLiteral("Packet Error Rate Tester"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor RadiosondePlugin::m_pluginDescriptor = { const PluginDescriptor RadiosondePlugin::m_pluginDescriptor = {
Radiosonde::m_featureId, Radiosonde::m_featureId,
QStringLiteral("Radiosonde"), QStringLiteral("Radiosonde"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = { const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = {
RigCtlServer::m_featureId, RigCtlServer::m_featureId,
QStringLiteral("RigCtl Server"), QStringLiteral("RigCtl Server"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
SatelliteTracker::m_featureId, SatelliteTracker::m_featureId,
QStringLiteral("Satellite Tracker"), QStringLiteral("Satellite Tracker"),
QStringLiteral("6.19.0"), QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
SimplePTT::m_featureId, SimplePTT::m_featureId,
QStringLiteral("Simple PTT"), QStringLiteral("Simple PTT"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = {
StarTracker::m_featureId, StarTracker::m_featureId,
QStringLiteral("Star Tracker"), QStringLiteral("Star Tracker"),
QStringLiteral("6.18.0"), QStringLiteral("6.20.2"),
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

@ -29,7 +29,7 @@
const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = {
VORLocalizer::m_featureId, VORLocalizer::m_featureId,
QStringLiteral("VOR Localizer"), QStringLiteral("VOR Localizer"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = { const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2"),
QStringLiteral("BladeRF2 MIMO"), QStringLiteral("BladeRF2 MIMO"),
QStringLiteral("6.0.0"), QStringLiteral("6.20.2"),
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 LimeSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR MIMO"), QStringLiteral("LimeSDR MIMO"),
QStringLiteral("6.0.0"), QStringLiteral("6.20.2"),
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 MetisMISOPlugin::m_pluginDescriptor = { const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
QStringLiteral("MetisMISO"), QStringLiteral("MetisMISO"),
QStringLiteral("Metis MISO"), QStringLiteral("Metis MISO"),
QStringLiteral("6.19.1"), QStringLiteral("6.20.2"),
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 PlutoSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR MIMO"), QStringLiteral("PlutoSDR MIMO"),
QStringLiteral("6.12.0"), QStringLiteral("6.20.2"),
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 TestMIPlugin::m_pluginDescriptor = { const PluginDescriptor TestMIPlugin::m_pluginDescriptor = {
QStringLiteral("TestMI"), QStringLiteral("TestMI"),
QStringLiteral("Test Multiple Input"), QStringLiteral("Test Multiple Input"),
QStringLiteral("6.0.0"), QStringLiteral("6.20.2"),
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 TestMOSyncPlugin::m_pluginDescriptor = { const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = {
QStringLiteral("TestMOSync"), QStringLiteral("TestMOSync"),
QStringLiteral("Test Synchronous Multiple Output"), QStringLiteral("Test Synchronous Multiple Output"),
QStringLiteral("6.0.0"), QStringLiteral("6.20.2"),
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 XTRXMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("XTRX"), QStringLiteral("XTRX"),
QStringLiteral("XTRX MIMO"), QStringLiteral("XTRX MIMO"),
QStringLiteral("6.0.0"), QStringLiteral("6.20.2"),
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 AudioOutputPlugin::m_pluginDescriptor = { const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
QString("AudioOutput"), QString("AudioOutput"),
QString("Audio output"), QString("Audio output"),
QString("6.8.0"), QString("6.20.2"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = { const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF1"), QStringLiteral("BladeRF1"),
QStringLiteral("BladeRF1 Output"), QStringLiteral("BladeRF1 Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 BladeRF2OutputPlugin::m_pluginDescriptor = { const PluginDescriptor BladeRF2OutputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2"),
QStringLiteral("BladeRF2 Output"), QStringLiteral("BladeRF2 Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = { const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = {
QStringLiteral("FileOutput"), QStringLiteral("FileOutput"),
QStringLiteral("File output"), QStringLiteral("File output"),
QStringLiteral("6.16.2"), QStringLiteral("6.20.2"),
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 HackRFOutputPlugin::m_pluginDescriptor = { const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
QStringLiteral("HackRF"), QStringLiteral("HackRF"),
QStringLiteral("HackRF Output"), QStringLiteral("HackRF Output"),
QStringLiteral("6.7.0"), QStringLiteral("6.20.2"),
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 @@
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Output"), QStringLiteral("LimeSDR Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 LocalOutputPlugin::m_pluginDescriptor = { const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = {
QStringLiteral("LocalOutput"), QStringLiteral("LocalOutput"),
QStringLiteral("Local device output"), QStringLiteral("Local device output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 PlutoSDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Output"), QStringLiteral("PlutoSDR Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 RemoteOutputPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = {
QStringLiteral("RemoteOutput"), QStringLiteral("RemoteOutput"),
QStringLiteral("Remote device output"), QStringLiteral("Remote device output"),
QStringLiteral("6.17.6"), QStringLiteral("6.20.2"),
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 SoapySDROutputPlugin::m_pluginDescriptor = { const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("SoapySDR"), QStringLiteral("SoapySDR"),
QStringLiteral("SoapySDR Output"), QStringLiteral("SoapySDR Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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

@ -30,7 +30,7 @@
const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = { const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = {
QStringLiteral("TestSink"), QStringLiteral("TestSink"),
QStringLiteral("Test Sink Output"), QStringLiteral("Test Sink Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 @@
const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = { const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = {
QStringLiteral("USRP"), QStringLiteral("USRP"),
QStringLiteral("URSP Output"), QStringLiteral("URSP Output"),
QStringLiteral("4.21.0"), QStringLiteral("6.20.2"),
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

@ -36,7 +36,7 @@
const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = { const PluginDescriptor XTRXOutputPlugin::m_pluginDescriptor = {
QStringLiteral("XTRX"), QStringLiteral("XTRX"),
QStringLiteral("XTRX Output"), QStringLiteral("XTRX Output"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 int AirspyPlugin::m_maxDevices = 32;
const PluginDescriptor AirspyPlugin::m_pluginDescriptor = { const PluginDescriptor AirspyPlugin::m_pluginDescriptor = {
QStringLiteral("Airspy"), QStringLiteral("Airspy"),
QStringLiteral("Airspy Input"), QStringLiteral("Airspy Input"),
QStringLiteral("6.15.0"), QStringLiteral("6.20.2"),
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 AirspyHFPlugin::m_pluginDescriptor = { const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = {
QStringLiteral("AirspyHF"), QStringLiteral("AirspyHF"),
QStringLiteral("AirspyHF Input"), QStringLiteral("AirspyHF Input"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 AudioInputPlugin::m_pluginDescriptor = { const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioInput"), QStringLiteral("AudioInput"),
QStringLiteral("Audio Input"), QStringLiteral("Audio Input"),
QStringLiteral("6.0.1"), QStringLiteral("6.20.2"),
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 Blderf1InputPlugin::m_pluginDescriptor = { const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF1"), QStringLiteral("BladeRF1"),
QStringLiteral("BladeRF1 Input"), QStringLiteral("BladeRF1 Input"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 Blderf2InputPlugin::m_pluginDescriptor = { const PluginDescriptor Blderf2InputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF2"), QStringLiteral("BladeRF2"),
QStringLiteral("BladeRF2 Input"), QStringLiteral("BladeRF2 Input"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 FileInputPlugin::m_pluginDescriptor = { const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
QStringLiteral("FileInput"), QStringLiteral("FileInput"),
QStringLiteral("File device input"), QStringLiteral("File device input"),
QStringLiteral("6.17.7"), QStringLiteral("6.20.2"),
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 HackRFInputPlugin::m_pluginDescriptor = { const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = {
QStringLiteral("HackRF"), QStringLiteral("HackRF"),
QStringLiteral("HackRF Input"), QStringLiteral("HackRF Input"),
QStringLiteral("6.7.0"), QStringLiteral("6.20.2"),
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 KiwiSDRPlugin::m_pluginDescriptor = { const PluginDescriptor KiwiSDRPlugin::m_pluginDescriptor = {
QStringLiteral("KiwiSDR"), QStringLiteral("KiwiSDR"),
QStringLiteral("KiwiSDR input"), QStringLiteral("KiwiSDR input"),
QStringLiteral("4.21.2"), QStringLiteral("6.20.2"),
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

@ -35,7 +35,7 @@
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Input"), QStringLiteral("LimeSDR Input"),
QStringLiteral("6.20.0"), QStringLiteral("6.20.2"),
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 LocalInputPlugin::m_pluginDescriptor = { const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = {
QStringLiteral("LocalInput"), QStringLiteral("LocalInput"),
QStringLiteral("Local device input"), QStringLiteral("Local device input"),
QStringLiteral("4.17.5"), QStringLiteral("6.20.2"),
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 PerseusPlugin::m_pluginDescriptor = { const PluginDescriptor PerseusPlugin::m_pluginDescriptor = {
QStringLiteral("Perseus"), QStringLiteral("Perseus"),
QStringLiteral("Perseus Input"), QStringLiteral("Perseus Input"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 @@ class DeviceAPI;
const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Input"), QStringLiteral("PlutoSDR Input"),
QStringLiteral("4.19.0"), QStringLiteral("6.20.2"),
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 RemoteInputPlugin::m_pluginDescriptor = { const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = {
QStringLiteral("RemoteInput"), QStringLiteral("RemoteInput"),
QStringLiteral("Remote device input"), QStringLiteral("Remote device input"),
QStringLiteral("6.17.6"), QStringLiteral("6.20.2"),
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

@ -15,7 +15,7 @@
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
QStringLiteral("RTLSDR"), QStringLiteral("RTLSDR"),
QStringLiteral("RTL-SDR Input"), QStringLiteral("RTL-SDR Input"),
QStringLiteral("6.17.3"), QStringLiteral("6.20.2"),
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 SDRPlayPlugin::m_pluginDescriptor = { const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = {
QStringLiteral("SDRPlay"), QStringLiteral("SDRPlay"),
QStringLiteral("SDRPlay RSP1 Input"), QStringLiteral("SDRPlay RSP1 Input"),
QStringLiteral("6.17.5"), QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

Some files were not shown because too many files have changed in this diff Show More