Updated changelogs and plugins versions

This commit is contained in:
f4exb 2023-11-29 05:00:58 +01:00
parent ee51ffd705
commit 07e8ae0de1
116 changed files with 161 additions and 115 deletions

View File

@ -1,3 +1,26 @@
sdrangel (7.17.1-1) unstable; urgency=medium
* Fixes to Mac build. PR #1869
* AM demod: channel/frequency entry modes. PR #1876
* SSB demod noise reduction
* Radiosonde: Added more columns, PR #1881. Fixes #1880
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
* Indicate audio FIFO underflow/overflow. PR #1887
* ix resize cursor not being cleared when mouse moves over child widgets. PR #1888
* Prevent popup menu when scrolling tables. PR #1889
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
* Use MDI restore when loading config. PR #1890
* M17: Reverse byte ordering of CRC in packet mode. PR #1891. Fixes #1826
* M17: Update packet format to comply with current spec. PR #1892. Fixes #1826
* More M17 fixes. PR #1894
* Frequency scanner: Add FRS-GMRS presets. PR #1897
* ADS-B demod: Split widgets in to 2 tabs for small Android screens. PR #1898. Fixes #1896.
* Add instant replay for RTL SDR, SDR Play V3, USRP and Airspy HF RXes. PR #1900.
* Scope trigger fix. PR #1902. Part of #1901
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Wed, 29 Nov 2023 03:00:21 +0100
sdrangel (7.17.0-1) unstable; urgency=medium
* Add frequency scanner channel plugin. PR #1852

23
debian/changelog vendored
View File

@ -1,3 +1,26 @@
sdrangel (7.17.1-1) unstable; urgency=medium
* Fixes to Mac build. PR #1869
* AM demod: channel/frequency entry modes. PR #1876
* SSB demod noise reduction
* Radiosonde: Added more columns, PR #1881. Fixes #1880
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
* Indicate audio FIFO underflow/overflow. PR #1887
* ix resize cursor not being cleared when mouse moves over child widgets. PR #1888
* Prevent popup menu when scrolling tables. PR #1889
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
* Use MDI restore when loading config. PR #1890
* M17: Reverse byte ordering of CRC in packet mode. PR #1891. Fixes #1826
* M17: Update packet format to comply with current spec. PR #1892. Fixes #1826
* More M17 fixes. PR #1894
* Frequency scanner: Add FRS-GMRS presets. PR #1897
* ADS-B demod: Split widgets in to 2 tabs for small Android screens. PR #1898. Fixes #1896.
* Add instant replay for RTL SDR, SDR Play V3, USRP and Airspy HF RXes. PR #1900.
* Scope trigger fix. PR #1902. Part of #1901
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Wed, 29 Nov 2023 03:00:21 +0100
sdrangel (7.17.0-1) unstable; urgency=medium
* Add frequency scanner channel plugin. PR #1852

View File

@ -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<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";
const char *fcd_traits<Pro>::pluginVersion = "7.15.1";
const char *fcd_traits<ProPlus>::pluginVersion = "7.15.1";
const char *fcd_traits<Pro>::pluginVersion = "7.17.1";
const char *fcd_traits<ProPlus>::pluginVersion = "7.17.1";
const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L;

View File

@ -33,7 +33,7 @@
const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = {
BeamSteeringCWMod::m_channelId,
QStringLiteral("BeamSteeringCWMod"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -27,7 +27,7 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId,
QStringLiteral("Channel Analyzer"),
QStringLiteral("7.13.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
QStringLiteral("7.17.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -29,7 +29,7 @@
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
AMDemod::m_channelId,
QStringLiteral("AM Demodulator"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
APTDemod::m_channelId,
QStringLiteral("APT Demodulator"),
QStringLiteral("7.8.3"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -32,7 +32,7 @@
const PluginDescriptor BFMPlugin::m_pluginDescriptor = {
BFMDemod::m_channelId,
QStringLiteral("Broadcast FM Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
ChirpChatDemod::m_channelId,
QStringLiteral("ChirpChat Demodulator"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = {
DABDemod::m_channelId,
QStringLiteral("DAB Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -33,7 +33,7 @@
const PluginDescriptor DSCDemodPlugin::m_pluginDescriptor = {
DSCDemod::m_channelId,
QStringLiteral("DSC Demodulator"),
QStringLiteral("7.17.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -30,7 +30,7 @@
const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = {
FreeDVDemod::m_channelId,
QStringLiteral("FreeDV Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -28,7 +28,7 @@
const PluginDescriptor FT8Plugin::m_pluginDescriptor = {
FT8Demod::m_channelId,
QStringLiteral("FT8 Demodulator"),
QStringLiteral("7.10.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -31,7 +31,7 @@
const PluginDescriptor M17DemodPlugin::m_pluginDescriptor = {
M17Demod::m_channelId,
QStringLiteral("M17 Demodulator"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor NavtexDemodPlugin::m_pluginDescriptor = {
NavtexDemod::m_channelId,
QStringLiteral("Navtex Demodulator"),
QStringLiteral("7.11.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
NFMDemod::m_channelId,
QStringLiteral("NFM Demodulator"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = {
PacketDemod::m_channelId,
QStringLiteral("Packet Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
PagerDemod::m_channelId,
QStringLiteral("Pager Demodulator"),
QStringLiteral("7.16.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = {
RadiosondeDemod::m_channelId,
QStringLiteral("Radiosonde Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RttyDemodPlugin::m_pluginDescriptor = {
RttyDemod::m_channelId,
QStringLiteral("RTTY Demodulator"),
QStringLiteral("7.11.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
VORDemod::m_channelId,
QStringLiteral("VOR Demodulator"),
QStringLiteral("7.11.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -33,7 +33,7 @@
const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = {
FileSink::m_channelId,
QStringLiteral("File Sink"),
QStringLiteral("7.6.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -30,7 +30,7 @@
const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = {
FreqTracker::m_channelId,
QStringLiteral("Frequency Tracker"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -34,7 +34,7 @@
const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = {
LocalSink::m_channelId,
QStringLiteral("Local channel sink"),
QStringLiteral("7.8.5"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
NoiseFigure::m_channelId,
QStringLiteral("Noise Figure"),
QStringLiteral("7.11.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = {
RadioAstronomy::m_channelId,
QStringLiteral("Radio Astronomy"),
QStringLiteral("7.14.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
RadioClock::m_channelId,
QStringLiteral("Radio Clock"),
QStringLiteral("7.3.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = {
RemoteSink::m_channelId,
QStringLiteral("Remote channel sink"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -35,7 +35,7 @@
const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = {
RemoteTCPSink::m_channelId,
QStringLiteral("Remote TCP channel sink"),
QStringLiteral("7.16.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = {
SigMFFileSink::m_channelId,
QStringLiteral("SigMF File Sink"),
QStringLiteral("7.14.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = {
UDPSink::m_channelId,
QStringLiteral("UDP Channel Sink"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = {
FileSource::m_channelId,
QStringLiteral("File channel source"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
LocalSource::m_channelId,
QStringLiteral("Local channel source"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -32,7 +32,7 @@
const PluginDescriptor AMModPlugin::m_pluginDescriptor = {
AMMod::m_channelId,
QStringLiteral("AM Modulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor ATVModPlugin::m_pluginDescriptor = {
ATVMod::m_channelId,
QStringLiteral("ATV Modulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -32,7 +32,7 @@
const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = {
FreeDVMod::m_channelId,
QStringLiteral("FreeDV Modulator"),
QStringLiteral("7.3.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor M17ModPlugin::m_pluginDescriptor = {
M17Mod::m_channelId,
QStringLiteral("M17 Modulator"),
QStringLiteral("7.6.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
NFMMod::m_channelId,
QStringLiteral("NFM Modulator"),
QStringLiteral("7.6.3"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

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

View File

@ -32,7 +32,7 @@
const PluginDescriptor SSBModPlugin::m_pluginDescriptor = {
SSBMod::m_channelId,
QStringLiteral("SSB Modulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor WFMModPlugin::m_pluginDescriptor = {
WFMMod::m_channelId,
QStringLiteral("WFM Modulator"),
QStringLiteral("7.6.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = {
RemoteSource::m_channelId,
QStringLiteral("Remote channel source"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = {
UDPSource::m_channelId,
QStringLiteral("UDP Channel Source"),
QStringLiteral("7.0.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor AFCPlugin::m_pluginDescriptor = {
AFC::m_featureId,
QStringLiteral("AFC"),
QStringLiteral("7.13.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -31,7 +31,7 @@
const PluginDescriptor AMBEPlugin::m_pluginDescriptor = {
AMBE::m_featureId,
QStringLiteral("AMBE Controller"),
QStringLiteral("7.8.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -34,7 +34,7 @@
const PluginDescriptor APRSPlugin::m_pluginDescriptor = {
APRS::m_featureId,
QStringLiteral("APRS"),
QStringLiteral("7.8.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
DemodAnalyzer::m_featureId,
QStringLiteral("Demod Analyzer"),
QStringLiteral("7.13.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
GS232Controller::m_featureId,
QStringLiteral("Rotator Controller"),
QStringLiteral("7.15.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor JogdialControllerPlugin::m_pluginDescriptor = {
JogdialController::m_featureId,
QStringLiteral("Jogdial Controller"),
QStringLiteral("7.8.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor LimeRFEPlugin::m_pluginDescriptor = {
LimeRFE::m_featureId,
QStringLiteral("LimeRFE USB Controller"),
QStringLiteral("7.9.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -34,7 +34,7 @@
const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = {
PERTester::m_featureId,
QStringLiteral("Packet Error Rate Tester"),
QStringLiteral("7.8.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RadiosondePlugin::m_pluginDescriptor = {
Radiosonde::m_featureId,
QStringLiteral("Radiosonde"),
QStringLiteral("7.8.5"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RemoteControlPlugin::m_pluginDescriptor = {
RemoteControl::m_featureId,
QStringLiteral("Remote Control"),
QStringLiteral("7.8.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor RigCtlServerPlugin::m_pluginDescriptor = {
RigCtlServer::m_featureId,
QStringLiteral("RigCtl Server"),
QStringLiteral("7.8.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -34,7 +34,7 @@
const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = {
StarTracker::m_featureId,
QStringLiteral("Star Tracker"),
QStringLiteral("7.15.4"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = {
VORLocalizer::m_featureId,
QStringLiteral("VOR Localizer"),
QStringLiteral("7.11.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -33,7 +33,7 @@
const PluginDescriptor AaroniaRTSAOutputPlugin::m_pluginDescriptor = {
QStringLiteral("AaroniaRTSAOutput"),
QStringLiteral("AaroniaRTSA output"),
QStringLiteral("7.14.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioOutput"),
QStringLiteral("Audio output"),
QStringLiteral("7.15.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -35,7 +35,7 @@
const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF1"),
QStringLiteral("BladeRF1 Output"),
QStringLiteral("7.8.5"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -35,7 +35,7 @@
const PluginDescriptor BladeRF2OutputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF2"),
QStringLiteral("BladeRF2 Output"),
QStringLiteral("7.8.6"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -32,7 +32,7 @@
const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = {
QStringLiteral("FileOutput"),
QStringLiteral("File output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
QStringLiteral("HackRF"),
QStringLiteral("HackRF Output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -37,7 +37,7 @@
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = {
QStringLiteral("LocalOutput"),
QStringLiteral("Local device output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Output"),
QStringLiteral("7.15.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -33,7 +33,7 @@
const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = {
QStringLiteral("RemoteOutput"),
QStringLiteral("Remote device output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -35,7 +35,7 @@
const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("SoapySDR"),
QStringLiteral("SoapySDR Output"),
QStringLiteral("7.8.1"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -37,7 +37,7 @@
const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = {
QStringLiteral("USRP"),
QStringLiteral("URSP Output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -40,7 +40,7 @@ const int AirspyPlugin::m_maxDevices = 32;
const PluginDescriptor AirspyPlugin::m_pluginDescriptor = {
QStringLiteral("Airspy"),
QStringLiteral("Airspy Input"),
QStringLiteral("7.13.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -37,7 +37,7 @@
const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = {
QStringLiteral("AirspyHF"),
QStringLiteral("AirspyHF Input"),
QStringLiteral("7.8.2"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -34,7 +34,7 @@
const PluginDescriptor AndroidSDRDriverInputPlugin::m_pluginDescriptor = {
QStringLiteral("AndroidSDRDriverInput"),
QStringLiteral("Android SDR Driver input"),
QStringLiteral("7.16.0"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -35,7 +35,7 @@
const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = {
QStringLiteral("BladeRF1"),
QStringLiteral("BladeRF1 Input"),
QStringLiteral("7.8.6"),
QStringLiteral("7.17.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

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