diff --git a/CHANGELOG b/CHANGELOG index 8e46e180a..fdb681520 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,33 @@ +sdrangel (7.17.3-1) unstable; urgency=medium + + * Map updates: Allow selection of which device to tune to frequency. PR #1911 + * Map updates: Support tuning of multiple frequencies per map item. Update maplibre to maplibregl. PR #1911 + * Use common code for creating and processing device and channel Ids. PR #1911 + * Prevent crash that can occur if preset type is unknown. PR #1911 + * Add support for setting center frequency on Tx devices. PR #1911 + * Allow replay time offset to be set by ctrl+left click in waterfall. PR #1914 + * Add replay support to Lime Input. PR #1914 + * Remove space in CSV header. PR #1916 + * SDRPlayV3 on Mac: Update library path so is works with API 3.12.1. PR #1916 + * Fixed AudioNetSink stereo handling + * SSB demod: added FIR LP filter after AGC to smooth out sharp peaks + * Removed useless AGC clamping + * Fixed some AGC issues + * SSB demod: better algorithm for AGC limitation. Fixes #1918 + * AM demod: extend squelch limit to -120 dB + * Start file browser in directory of last file selected. PR #1926 + * Fix #1928. Add null-terminator between strings. PR #1929 + * Frequency Scanner: allow scanning channels of a MIMO device + * Frequency scanner: set device frequency for both Rx and MIMO devices + * Frequency Scanner: GUI: give more space to channel power display + * Frequency Scanner: handle change of I/Q stream in tracked channels (MIMO) + * AudioCATSISO: adapt to newer versions of Hamlib. Fixes #1919 + * Mac O/S: Disable build of LAME frontend. PR #1935 + * Use separate date/time fields and prefix address with leading 0. Fixes #1936. PR #1937. + * Radioastronomy: Handle negative flux values in .srd file. PR #1940. + + -- Edouard Griffiths, F4EXB Sun, 31 Dec 2023 17:58:51 +0100 + sdrangel (7.17.2-1) unstable; urgency=medium * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905 diff --git a/CMakeLists.txt b/CMakeLists.txt index a38e27335..e87990420 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MINOR "17") -set(sdrangel_VERSION_PATCH "2") +set(sdrangel_VERSION_PATCH "3") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index c49b49546..93840228a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,33 @@ +sdrangel (7.17.3-1) unstable; urgency=medium + + * Map updates: Allow selection of which device to tune to frequency. PR #1911 + * Map updates: Support tuning of multiple frequencies per map item. Update maplibre to maplibregl. PR #1911 + * Use common code for creating and processing device and channel Ids. PR #1911 + * Prevent crash that can occur if preset type is unknown. PR #1911 + * Add support for setting center frequency on Tx devices. PR #1911 + * Allow replay time offset to be set by ctrl+left click in waterfall. PR #1914 + * Add replay support to Lime Input. PR #1914 + * Remove space in CSV header. PR #1916 + * SDRPlayV3 on Mac: Update library path so is works with API 3.12.1. PR #1916 + * Fixed AudioNetSink stereo handling + * SSB demod: added FIR LP filter after AGC to smooth out sharp peaks + * Removed useless AGC clamping + * Fixed some AGC issues + * SSB demod: better algorithm for AGC limitation. Fixes #1918 + * AM demod: extend squelch limit to -120 dB + * Start file browser in directory of last file selected. PR #1926 + * Fix #1928. Add null-terminator between strings. PR #1929 + * Frequency Scanner: allow scanning channels of a MIMO device + * Frequency scanner: set device frequency for both Rx and MIMO devices + * Frequency Scanner: GUI: give more space to channel power display + * Frequency Scanner: handle change of I/Q stream in tracked channels (MIMO) + * AudioCATSISO: adapt to newer versions of Hamlib. Fixes #1919 + * Mac O/S: Disable build of LAME frontend. PR #1935 + * Use separate date/time fields and prefix address with leading 0. Fixes #1936. PR #1937. + * Star Tracker: Handle negative flux values in .srd file. PR #1940. + + -- Edouard Griffiths, F4EXB Sun, 31 Dec 2023 17:58:51 +0100 + sdrangel (7.17.2-1) unstable; urgency=medium * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905 diff --git a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp index a2ff84049..c7c921692 100644 --- a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp +++ b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = { BeamSteeringCWMod::m_channelId, QStringLiteral("BeamSteeringCWMod"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/doa2/doa2plugin.cpp b/plugins/channelmimo/doa2/doa2plugin.cpp index 2d2623952..08271c3ff 100644 --- a/plugins/channelmimo/doa2/doa2plugin.cpp +++ b/plugins/channelmimo/doa2/doa2plugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor DOA2Plugin::m_pluginDescriptor = { DOA2::m_channelId, QStringLiteral("DOA 2 sources"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/interferometer/interferometerplugin.cpp b/plugins/channelmimo/interferometer/interferometerplugin.cpp index 54673f9ce..c47e09237 100644 --- a/plugins/channelmimo/interferometer/interferometerplugin.cpp +++ b/plugins/channelmimo/interferometer/interferometerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { Interferometer::m_channelId, QStringLiteral("Interferometer"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index 918cb5ed5..c36bf87a7 100644 --- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp @@ -27,7 +27,7 @@ const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { ChannelAnalyzer::m_channelId, QStringLiteral("Channel Analyzer"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 71a75ec13..5c95417bc 100644 --- a/plugins/channelrx/demodadsb/adsbplugin.cpp +++ b/plugins/channelrx/demodadsb/adsbplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { ADSBDemod::m_channelId, QStringLiteral("ADS-B Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index 0a2a2fb55..3a9818cf5 100644 --- a/plugins/channelrx/demodais/aisdemodplugin.cpp +++ b/plugins/channelrx/demodais/aisdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { AISDemod::m_channelId, QStringLiteral("AIS Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodam/amdemodplugin.cpp b/plugins/channelrx/demodam/amdemodplugin.cpp index a81fc5027..1a9e1cdef 100644 --- a/plugins/channelrx/demodam/amdemodplugin.cpp +++ b/plugins/channelrx/demodam/amdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { AMDemod::m_channelId, QStringLiteral("AM Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp index 0e8156021..8a16a2d08 100644 --- a/plugins/channelrx/demodapt/aptdemodplugin.cpp +++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = { APTDemod::m_channelId, QStringLiteral("APT Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodatv/atvdemodplugin.cpp b/plugins/channelrx/demodatv/atvdemodplugin.cpp index d1a3dcda2..1d89995d7 100644 --- a/plugins/channelrx/demodatv/atvdemodplugin.cpp +++ b/plugins/channelrx/demodatv/atvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor = { ATVDemod::m_channelId, QStringLiteral("ATV Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) F4HKW for F4EXB / SDRAngel"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodbfm/bfmplugin.cpp b/plugins/channelrx/demodbfm/bfmplugin.cpp index 03d97b7bf..cdf46711e 100644 --- a/plugins/channelrx/demodbfm/bfmplugin.cpp +++ b/plugins/channelrx/demodbfm/bfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor BFMPlugin::m_pluginDescriptor = { BFMDemod::m_channelId, QStringLiteral("Broadcast FM Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp index 87ca89666..95f4821ad 100644 --- a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp +++ b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = { ChirpChatDemod::m_channelId, QStringLiteral("ChirpChat Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddab/dabdemodplugin.cpp b/plugins/channelrx/demoddab/dabdemodplugin.cpp index 81b12ab50..94a8ac238 100644 --- a/plugins/channelrx/demoddab/dabdemodplugin.cpp +++ b/plugins/channelrx/demoddab/dabdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = { DABDemod::m_channelId, QStringLiteral("DAB Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index adf7251cb..d75093c77 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QStringLiteral("DATV Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddsc/dscdemodplugin.cpp b/plugins/channelrx/demoddsc/dscdemodplugin.cpp index 6864524ae..1bf8fd4d7 100644 --- a/plugins/channelrx/demoddsc/dscdemodplugin.cpp +++ b/plugins/channelrx/demoddsc/dscdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor DSCDemodPlugin::m_pluginDescriptor = { DSCDemod::m_channelId, QStringLiteral("DSC Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddsd/dsddemodplugin.cpp b/plugins/channelrx/demoddsd/dsddemodplugin.cpp index ee06bc9ae..8860ea5e0 100644 --- a/plugins/channelrx/demoddsd/dsddemodplugin.cpp +++ b/plugins/channelrx/demoddsd/dsddemodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { DSDDemod::m_channelId, QStringLiteral("DSD Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodfreedv/freedvplugin.cpp b/plugins/channelrx/demodfreedv/freedvplugin.cpp index df2698062..6124d339d 100644 --- a/plugins/channelrx/demodfreedv/freedvplugin.cpp +++ b/plugins/channelrx/demodfreedv/freedvplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = { FreeDVDemod::m_channelId, QStringLiteral("FreeDV Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodft8/ft8plugin.cpp b/plugins/channelrx/demodft8/ft8plugin.cpp index 9ff19c7ba..ec5df58c9 100644 --- a/plugins/channelrx/demodft8/ft8plugin.cpp +++ b/plugins/channelrx/demodft8/ft8plugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor FT8Plugin::m_pluginDescriptor = { FT8Demod::m_channelId, QStringLiteral("FT8 Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodils/ilsdemodplugin.cpp b/plugins/channelrx/demodils/ilsdemodplugin.cpp index 381c6554d..c2a269d2d 100644 --- a/plugins/channelrx/demodils/ilsdemodplugin.cpp +++ b/plugins/channelrx/demodils/ilsdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor ILSDemodPlugin::m_pluginDescriptor = { ILSDemod::m_channelId, QStringLiteral("ILS Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodm17/m17demodplugin.cpp b/plugins/channelrx/demodm17/m17demodplugin.cpp index 9a56dce22..98ae0c23c 100644 --- a/plugins/channelrx/demodm17/m17demodplugin.cpp +++ b/plugins/channelrx/demodm17/m17demodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor M17DemodPlugin::m_pluginDescriptor = { M17Demod::m_channelId, QStringLiteral("M17 Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp b/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp index 41ffe4982..8f763674d 100644 --- a/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp +++ b/plugins/channelrx/demodnavtex/navtexdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor NavtexDemodPlugin::m_pluginDescriptor = { NavtexDemod::m_channelId, QStringLiteral("Navtex Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnfm/nfmplugin.cpp b/plugins/channelrx/demodnfm/nfmplugin.cpp index f584e58cb..7fba71694 100644 --- a/plugins/channelrx/demodnfm/nfmplugin.cpp +++ b/plugins/channelrx/demodnfm/nfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor NFMPlugin::m_pluginDescriptor = { NFMDemod::m_channelId, QStringLiteral("NFM Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpacket/packetdemodplugin.cpp b/plugins/channelrx/demodpacket/packetdemodplugin.cpp index bda9d8e41..f1c13dce7 100644 --- a/plugins/channelrx/demodpacket/packetdemodplugin.cpp +++ b/plugins/channelrx/demodpacket/packetdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = { PacketDemod::m_channelId, QStringLiteral("Packet Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpager/pagerdemodplugin.cpp b/plugins/channelrx/demodpager/pagerdemodplugin.cpp index 759dfa710..811bb2f50 100644 --- a/plugins/channelrx/demodpager/pagerdemodplugin.cpp +++ b/plugins/channelrx/demodpager/pagerdemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = { PagerDemod::m_channelId, QStringLiteral("Pager Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp b/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp index ac7f1a4cd..00aa81d4e 100644 --- a/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp +++ b/plugins/channelrx/demodradiosonde/radiosondedemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = { RadiosondeDemod::m_channelId, QStringLiteral("Radiosonde Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodrtty/rttydemodplugin.cpp b/plugins/channelrx/demodrtty/rttydemodplugin.cpp index 1e8b45f0f..e1d9f2046 100644 --- a/plugins/channelrx/demodrtty/rttydemodplugin.cpp +++ b/plugins/channelrx/demodrtty/rttydemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RttyDemodPlugin::m_pluginDescriptor = { RttyDemod::m_channelId, QStringLiteral("RTTY Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp index adaf7178a..a2ceadd9c 100644 --- a/plugins/channelrx/demodssb/ssbplugin.cpp +++ b/plugins/channelrx/demodssb/ssbplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SSBPlugin::m_pluginDescriptor = { SSBDemod::m_channelId, QStringLiteral("SSB Demodulator"), - QStringLiteral("7.17.2"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodvor/vordemodplugin.cpp b/plugins/channelrx/demodvor/vordemodplugin.cpp index c6e1011ff..22e8f28be 100644 --- a/plugins/channelrx/demodvor/vordemodplugin.cpp +++ b/plugins/channelrx/demodvor/vordemodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = { VORDemod::m_channelId, QStringLiteral("VOR Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodwfm/wfmplugin.cpp b/plugins/channelrx/demodwfm/wfmplugin.cpp index 73cb55c2b..b21d1d78d 100644 --- a/plugins/channelrx/demodwfm/wfmplugin.cpp +++ b/plugins/channelrx/demodwfm/wfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor WFMPlugin::m_pluginDescriptor = { WFMDemod::m_channelId, QStringLiteral("WFM Demodulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/filesink/filesinkplugin.cpp b/plugins/channelrx/filesink/filesinkplugin.cpp index 9fd510e53..787f37832 100644 --- a/plugins/channelrx/filesink/filesinkplugin.cpp +++ b/plugins/channelrx/filesink/filesinkplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = { FileSink::m_channelId, QStringLiteral("File Sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqscanner/freqscannerplugin.cpp b/plugins/channelrx/freqscanner/freqscannerplugin.cpp index 72623a25d..c88af2199 100644 --- a/plugins/channelrx/freqscanner/freqscannerplugin.cpp +++ b/plugins/channelrx/freqscanner/freqscannerplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = { FreqScanner::m_channelId, QStringLiteral("Frequency Scanner"), - QStringLiteral("7.17.2"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqtracker/freqtrackerplugin.cpp b/plugins/channelrx/freqtracker/freqtrackerplugin.cpp index 8516d1605..70a58882d 100644 --- a/plugins/channelrx/freqtracker/freqtrackerplugin.cpp +++ b/plugins/channelrx/freqtracker/freqtrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = { FreqTracker::m_channelId, QStringLiteral("Frequency Tracker"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index 7c314ee7b..e7c84f512 100644 --- a/plugins/channelrx/heatmap/heatmapplugin.cpp +++ b/plugins/channelrx/heatmap/heatmapplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = { HeatMap::m_channelId, QStringLiteral("Heat Map"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/localsink/localsinkplugin.cpp b/plugins/channelrx/localsink/localsinkplugin.cpp index 2e3784c17..22abf7052 100644 --- a/plugins/channelrx/localsink/localsinkplugin.cpp +++ b/plugins/channelrx/localsink/localsinkplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = { LocalSink::m_channelId, QStringLiteral("Local channel sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/noisefigure/noisefigureplugin.cpp b/plugins/channelrx/noisefigure/noisefigureplugin.cpp index 85ad2ddc9..bb4aa527a 100644 --- a/plugins/channelrx/noisefigure/noisefigureplugin.cpp +++ b/plugins/channelrx/noisefigure/noisefigureplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = { NoiseFigure::m_channelId, QStringLiteral("Noise Figure"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp index 28363290a..b6bd56079 100644 --- a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp +++ b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = { RadioAstronomy::m_channelId, QStringLiteral("Radio Astronomy"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioclock/radioclockplugin.cpp b/plugins/channelrx/radioclock/radioclockplugin.cpp index 86916e8ca..ecd8e7051 100644 --- a/plugins/channelrx/radioclock/radioclockplugin.cpp +++ b/plugins/channelrx/radioclock/radioclockplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = { RadioClock::m_channelId, QStringLiteral("Radio Clock"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotesink/remotesinkplugin.cpp b/plugins/channelrx/remotesink/remotesinkplugin.cpp index dc392f3f4..f3bcde828 100644 --- a/plugins/channelrx/remotesink/remotesinkplugin.cpp +++ b/plugins/channelrx/remotesink/remotesinkplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = { RemoteSink::m_channelId, QStringLiteral("Remote channel sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp index 99eaf307f..0d9f0bbb3 100644 --- a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp +++ b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = { RemoteTCPSink::m_channelId, QStringLiteral("Remote TCP channel sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp index fd75577bb..c767f19ee 100644 --- a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp +++ b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = { SigMFFileSink::m_channelId, QStringLiteral("SigMF File Sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/udpsink/udpsinkplugin.cpp b/plugins/channelrx/udpsink/udpsinkplugin.cpp index 36a32cc92..d3007b82a 100644 --- a/plugins/channelrx/udpsink/udpsinkplugin.cpp +++ b/plugins/channelrx/udpsink/udpsinkplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = { UDPSink::m_channelId, QStringLiteral("UDP Channel Sink"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/filesource/filesourceplugin.cpp b/plugins/channeltx/filesource/filesourceplugin.cpp index 1f13a14ea..5df73ae04 100644 --- a/plugins/channeltx/filesource/filesourceplugin.cpp +++ b/plugins/channeltx/filesource/filesourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = { FileSource::m_channelId, QStringLiteral("File channel source"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/localsource/localsourceplugin.cpp b/plugins/channeltx/localsource/localsourceplugin.cpp index 368c3ee72..16a2c9e68 100644 --- a/plugins/channeltx/localsource/localsourceplugin.cpp +++ b/plugins/channeltx/localsource/localsourceplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = { LocalSource::m_channelId, QStringLiteral("Local channel source"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp index d43fd2ce5..6fc041757 100644 --- a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp +++ b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp @@ -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.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modais/aismodplugin.cpp b/plugins/channeltx/modais/aismodplugin.cpp index 467effa08..fc0e1041f 100644 --- a/plugins/channeltx/modais/aismodplugin.cpp +++ b/plugins/channeltx/modais/aismodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AISModPlugin::m_pluginDescriptor = { AISMod::m_channelId, QStringLiteral("AIS Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modam/ammodplugin.cpp b/plugins/channeltx/modam/ammodplugin.cpp index 18b34a7f2..675d17e79 100644 --- a/plugins/channeltx/modam/ammodplugin.cpp +++ b/plugins/channeltx/modam/ammodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor AMModPlugin::m_pluginDescriptor = { AMMod::m_channelId, QStringLiteral("AM Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modatv/atvmodplugin.cpp b/plugins/channeltx/modatv/atvmodplugin.cpp index 121f1d101..d086148f4 100644 --- a/plugins/channeltx/modatv/atvmodplugin.cpp +++ b/plugins/channeltx/modatv/atvmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor ATVModPlugin::m_pluginDescriptor = { ATVMod::m_channelId, QStringLiteral("ATV Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp index c8e78b5b0..cc883d2a4 100644 --- a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp +++ b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { ChirpChatMod::m_channelId, QStringLiteral("ChirpChat Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/moddatv/datvmodplugin.cpp b/plugins/channeltx/moddatv/datvmodplugin.cpp index 2a51a4af3..61ed319ea 100644 --- a/plugins/channeltx/moddatv/datvmodplugin.cpp +++ b/plugins/channeltx/moddatv/datvmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { DATVMod::m_channelId, QStringLiteral("DATV Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modfreedv/freedvmodplugin.cpp b/plugins/channeltx/modfreedv/freedvmodplugin.cpp index d18647db9..ff1893655 100644 --- a/plugins/channeltx/modfreedv/freedvmodplugin.cpp +++ b/plugins/channeltx/modfreedv/freedvmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor FreeDVModPlugin::m_pluginDescriptor = { FreeDVMod::m_channelId, QStringLiteral("FreeDV Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modm17/m17modplugin.cpp b/plugins/channeltx/modm17/m17modplugin.cpp index 51d33f321..df8fa0a5e 100644 --- a/plugins/channeltx/modm17/m17modplugin.cpp +++ b/plugins/channeltx/modm17/m17modplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor M17ModPlugin::m_pluginDescriptor = { M17Mod::m_channelId, QStringLiteral("M17 Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modnfm/nfmmodplugin.cpp b/plugins/channeltx/modnfm/nfmmodplugin.cpp index ed1bfbd05..069020fb3 100644 --- a/plugins/channeltx/modnfm/nfmmodplugin.cpp +++ b/plugins/channeltx/modnfm/nfmmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { NFMMod::m_channelId, QStringLiteral("NFM Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpacket/packetmodplugin.cpp b/plugins/channeltx/modpacket/packetmodplugin.cpp index 16924b34d..079c5a4fd 100644 --- a/plugins/channeltx/modpacket/packetmodplugin.cpp +++ b/plugins/channeltx/modpacket/packetmodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { PacketMod::m_channelId, QStringLiteral("Packet Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpsk31/psk31modplugin.cpp b/plugins/channeltx/modpsk31/psk31modplugin.cpp index 00f275ce5..f98d2dc69 100644 --- a/plugins/channeltx/modpsk31/psk31modplugin.cpp +++ b/plugins/channeltx/modpsk31/psk31modplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor PSK31Plugin::m_pluginDescriptor = { PSK31::m_channelId, QStringLiteral("PSK31 Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modrtty/rttymodplugin.cpp b/plugins/channeltx/modrtty/rttymodplugin.cpp index f78c25546..d8ca5e6c0 100644 --- a/plugins/channeltx/modrtty/rttymodplugin.cpp +++ b/plugins/channeltx/modrtty/rttymodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RttyModPlugin::m_pluginDescriptor = { RttyMod::m_channelId, QStringLiteral("RTTY Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modssb/ssbmodplugin.cpp b/plugins/channeltx/modssb/ssbmodplugin.cpp index c2b6fb030..c55913e3d 100644 --- a/plugins/channeltx/modssb/ssbmodplugin.cpp +++ b/plugins/channeltx/modssb/ssbmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SSBModPlugin::m_pluginDescriptor = { SSBMod::m_channelId, QStringLiteral("SSB Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modwfm/wfmmodplugin.cpp b/plugins/channeltx/modwfm/wfmmodplugin.cpp index 638f89277..c8d772eed 100644 --- a/plugins/channeltx/modwfm/wfmmodplugin.cpp +++ b/plugins/channeltx/modwfm/wfmmodplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor WFMModPlugin::m_pluginDescriptor = { WFMMod::m_channelId, QStringLiteral("WFM Modulator"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/remotesource/remotesourceplugin.cpp b/plugins/channeltx/remotesource/remotesourceplugin.cpp index d6caa3808..65ed368d4 100644 --- a/plugins/channeltx/remotesource/remotesourceplugin.cpp +++ b/plugins/channeltx/remotesource/remotesourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = { RemoteSource::m_channelId, QStringLiteral("Remote channel source"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/udpsource/udpsourceplugin.cpp b/plugins/channeltx/udpsource/udpsourceplugin.cpp index a1fc25361..3047a0b5f 100644 --- a/plugins/channeltx/udpsource/udpsourceplugin.cpp +++ b/plugins/channeltx/udpsource/udpsourceplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = { UDPSource::m_channelId, QStringLiteral("UDP Channel Source"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 56d1b9df9..0c8d9b82d 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("7.17.2"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp index f9f2bdbbb..77b370648 100644 --- a/plugins/feature/startracker/startrackerplugin.cpp +++ b/plugins/feature/startracker/startrackerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { StarTracker::m_featureId, QStringLiteral("Star Tracker"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp b/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp index bd53e4952..0a171b23a 100644 --- a/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp +++ b/plugins/samplemimo/audiocatsiso/audiocatsisoplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor AudioCATSISOPlugin::m_pluginDescriptor = { QStringLiteral("AudioCATSISO"), QStringLiteral("Audio CAT SISO"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/airspyhf/airspyhfplugin.cpp b/plugins/samplesource/airspyhf/airspyhfplugin.cpp index b95002584..5fbb41795 100644 --- a/plugins/samplesource/airspyhf/airspyhfplugin.cpp +++ b/plugins/samplesource/airspyhf/airspyhfplugin.cpp @@ -37,7 +37,7 @@ const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = { QStringLiteral("AirspyHF"), QStringLiteral("AirspyHF Input"), - QStringLiteral("7.17.2"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/fileinput/fileinputplugin.cpp b/plugins/samplesource/fileinput/fileinputplugin.cpp index 2d55cd5ee..4e61f6bae 100644 --- a/plugins/samplesource/fileinput/fileinputplugin.cpp +++ b/plugins/samplesource/fileinput/fileinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { QStringLiteral("FileInput"), QStringLiteral("File device input"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp index ca1df7540..430fe0797 100644 --- a/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp +++ b/plugins/samplesource/limesdrinput/limesdrinputplugin.cpp @@ -37,7 +37,7 @@ const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { QStringLiteral("LimeSDR"), QStringLiteral("LimeSDR Input"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp index de39f9c6b..7d9ac0808 100644 --- a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp +++ b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp @@ -40,7 +40,7 @@ const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { QStringLiteral("RTLSDR"), QStringLiteral("RTL-SDR Input"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index c67f7c1fe..2f6c452cd 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("7.17.2"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/usrpinput/usrpinputplugin.cpp b/plugins/samplesource/usrpinput/usrpinputplugin.cpp index 3e2535e3b..e401099e7 100644 --- a/plugins/samplesource/usrpinput/usrpinputplugin.cpp +++ b/plugins/samplesource/usrpinput/usrpinputplugin.cpp @@ -37,7 +37,7 @@ const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("USRP Input"), - QStringLiteral("7.17.1"), + QStringLiteral("7.17.3"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,