mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-06-25 05:25:27 -04:00
Updated versions and changelogs
This commit is contained in:
parent
ba3918f2d2
commit
3814a95073
12
CHANGELOG
12
CHANGELOG
@ -1,3 +1,15 @@
|
|||||||
|
sdrangel (7.8.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Make settings assigments atomic for most device plugins. Part of #1329
|
||||||
|
* Update zlib to latest version. PR #1487
|
||||||
|
* Fixed format time to next event. PR #1488. Fix #1483
|
||||||
|
* Check for existing pipes after GUI is created. PR #1489. Attempt to fix #1484
|
||||||
|
* Fix support for using Serial or TCP for either protocol. PR #1491
|
||||||
|
* Save column sort as a setting. Fix deserialize of target satellite. PR #1492. Attempt to fix #1474
|
||||||
|
* Fix sorting of next column. PR #1493
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 01 Nov 2022 22:20:21 +0100
|
||||||
|
|
||||||
sdrangel (7.8.1-1) unstable; urgency=medium
|
sdrangel (7.8.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Update to latest airspy drivers to fix #1372. PR #1468
|
* Update to latest airspy drivers to fix #1372. PR #1468
|
||||||
|
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||||||
# configure version
|
# configure version
|
||||||
set(sdrangel_VERSION_MAJOR "7")
|
set(sdrangel_VERSION_MAJOR "7")
|
||||||
set(sdrangel_VERSION_MINOR "8")
|
set(sdrangel_VERSION_MINOR "8")
|
||||||
set(sdrangel_VERSION_PATCH "1")
|
set(sdrangel_VERSION_PATCH "2")
|
||||||
set(sdrangel_VERSION_SUFFIX "")
|
set(sdrangel_VERSION_SUFFIX "")
|
||||||
|
|
||||||
# SDRAngel cmake options
|
# SDRAngel cmake options
|
||||||
|
12
debian/changelog
vendored
12
debian/changelog
vendored
@ -1,3 +1,15 @@
|
|||||||
|
sdrangel (7.8.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Make settings assigments atomic for most device plugins. Part of #1329
|
||||||
|
* Update zlib to latest version. PR #1487
|
||||||
|
* Fixed format time to next event. PR #1488. Fix #1483
|
||||||
|
* Check for existing pipes after GUI is created. PR #1489. Attempt to fix #1484
|
||||||
|
* Fix support for using Serial or TCP for either protocol. PR #1491
|
||||||
|
* Save column sort as a setting. Fix deserialize of target satellite. PR #1492. Attempt to fix #1474
|
||||||
|
* Fix sorting of next column. PR #1493
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 01 Nov 2022 22:20:21 +0100
|
||||||
|
|
||||||
sdrangel (7.8.1-1) unstable; urgency=medium
|
sdrangel (7.8.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Update to latest airspy drivers to fix #1372. PR #1468
|
* Update to latest airspy drivers to fix #1372. PR #1468
|
||||||
|
@ -40,8 +40,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 = "7.8.1";
|
const char *fcd_traits<Pro>::pluginVersion = "7.8.2";
|
||||||
const char *fcd_traits<ProPlus>::pluginVersion = "7.8.1";
|
const char *fcd_traits<ProPlus>::pluginVersion = "7.8.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;
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.3.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("AudioOutput"),
|
QStringLiteral("AudioOutput"),
|
||||||
QStringLiteral("Audio output"),
|
QStringLiteral("Audio output"),
|
||||||
QStringLiteral("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("RemoteTCPInput"),
|
QStringLiteral("RemoteTCPInput"),
|
||||||
QStringLiteral("Remote TCP device input"),
|
QStringLiteral("Remote TCP device input"),
|
||||||
QStringLiteral("7.6.2"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -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("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
|
const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("SDRPlayV3"),
|
QStringLiteral("SDRPlayV3"),
|
||||||
QStringLiteral("SDRPlayV3 Input"),
|
QStringLiteral("SDRPlayV3 Input"),
|
||||||
QStringLiteral("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("SigMFFileInput"),
|
QStringLiteral("SigMFFileInput"),
|
||||||
QStringLiteral("File device input (SigMF)"),
|
QStringLiteral("File device input (SigMF)"),
|
||||||
QStringLiteral("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = {
|
const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("TestSource"),
|
QStringLiteral("TestSource"),
|
||||||
QStringLiteral("Test Source input"),
|
QStringLiteral("Test Source input"),
|
||||||
QStringLiteral("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("USRP"),
|
QStringLiteral("USRP"),
|
||||||
QStringLiteral("USRP Input"),
|
QStringLiteral("USRP Input"),
|
||||||
QStringLiteral("7.8.1"),
|
QStringLiteral("7.8.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,
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor XTRXInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("XTRX"),
|
QStringLiteral("XTRX"),
|
||||||
QStringLiteral("XTRX Input"),
|
QStringLiteral("XTRX Input"),
|
||||||
QStringLiteral("7.0.0"),
|
QStringLiteral("7.8.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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user