Skip to content

Commit

Permalink
Updated versions and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Mar 30, 2022
1 parent ce31c8b commit 7f1c838
Show file tree
Hide file tree
Showing 106 changed files with 147 additions and 105 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
sdrangel (6.20.2-1) unstable; urgency=medium

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

-- Edouard Griffiths, F4EXB <[email protected]> Wed, 30 Mar 2022 19:29:43 +0200

sdrangel (6.20.1-1) unstable; urgency=medium

* Removed built in HIDAPI. Fixes #1160
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version
set(sdrangel_VERSION_MAJOR "6")
set(sdrangel_VERSION_MINOR "20")
set(sdrangel_VERSION_PATCH "1")
set(sdrangel_VERSION_PATCH "2")
set(sdrangel_VERSION_SUFFIX "")

# SDRAngel cmake options
Expand Down
21 changes: 21 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
sdrangel (6.20.2-1) unstable; urgency=medium

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

-- Edouard Griffiths, F4EXB <[email protected]> Wed, 30 Mar 2022 19:29:43 +0200

sdrangel (6.20.1-1) unstable; urgency=medium

* Removed built in HIDAPI. Fixes #1160
Expand Down
4 changes: 2 additions & 2 deletions fcdlib/fcdtraits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const char *fcd_traits<ProPlus>::displayedName = "FunCube Dongle Pro+";
const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input";
const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";

const char *fcd_traits<Pro>::pluginVersion = "6.20.1";
const char *fcd_traits<ProPlus>::pluginVersion = "6.20.1";
const char *fcd_traits<Pro>::pluginVersion = "6.20.2";
const char *fcd_traits<ProPlus>::pluginVersion = "6.20.2";

const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = {
BeamSteeringCWMod::m_channelId,
QStringLiteral("BeamSteeringCWMod"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = {
Interferometer::m_channelId,
QStringLiteral("Interferometer"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/chanalyzer/chanalyzerplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId,
QStringLiteral("Channel Analyzer"),
QStringLiteral("6.19.1"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodadsb/adsbplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
QStringLiteral("6.20.1"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodais/aisdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
AISDemod::m_channelId,
QStringLiteral("AIS Demodulator"),
QStringLiteral("6.19.1"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodam/amdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
AMDemod::m_channelId,
QStringLiteral("AM Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodapt/aptdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
APTDemod::m_channelId,
QStringLiteral("APT Demodulator"),
QStringLiteral("6.19.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodatv/atvdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor =
{
ATVDemod::m_channelId,
QString("ATV Demodulator"),
QString("6.18.0"),
QString("6.20.2"),
QString("(c) F4HKW for F4EXB / SDRAngel"),
QString("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodbfm/bfmplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
const PluginDescriptor BFMPlugin::m_pluginDescriptor = {
BFMDemod::m_channelId,
QStringLiteral("Broadcast FM Demodulator"),
QStringLiteral("6.19.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
ChirpChatDemod::m_channelId,
QStringLiteral("ChirpChat Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddab/dabdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = {
DABDemod::m_channelId,
QStringLiteral("DAB Demodulator"),
QStringLiteral("6.19.1"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddatv/datvdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
{
DATVDemod::m_channelId,
QString("DATV Demodulator"),
QString("6.20.0"),
QString("6.20.2"),
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
QString("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddsd/dsddemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
DSDDemod::m_channelId,
QStringLiteral("DSD Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodfreedv/freedvplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = {
FreeDVDemod::m_channelId,
QStringLiteral("FreeDV Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodnfm/nfmplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
NFMDemod::m_channelId,
QStringLiteral("NFM Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodpacket/packetdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = {
PacketDemod::m_channelId,
QStringLiteral("Packet Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodpager/pagerdemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
PagerDemod::m_channelId,
QStringLiteral("Pager Demodulator"),
QStringLiteral("6.19.1"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor RadiosondeDemodPlugin::m_pluginDescriptor = {
RadiosondeDemod::m_channelId,
QStringLiteral("Radiosonde Demodulator"),
QStringLiteral("6.20.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodssb/ssbplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
SSBDemod::m_channelId,
QStringLiteral("SSB Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodvor/vordemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
VORDemod::m_channelId,
QStringLiteral("VOR Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodvorsc/vordemodscplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor VORDemodSCPlugin::m_pluginDescriptor = {
VORDemodSC::m_channelId,
QStringLiteral("VOR Single Channel Demodulator"),
QStringLiteral("6.20.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodwfm/wfmplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
WFMDemod::m_channelId,
QStringLiteral("WFM Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/filesink/filesinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = {
FileSink::m_channelId,
QStringLiteral("File Sink"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/freqtracker/freqtrackerplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = {
FreqTracker::m_channelId,
QStringLiteral("Frequency Tracker"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/localsink/localsinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = {
LocalSink::m_channelId,
QStringLiteral("Local channel sink"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/noisefigure/noisefigureplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
NoiseFigure::m_channelId,
QStringLiteral("Noise Figure"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/radioastronomy/radioastronomyplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = {
RadioAstronomy::m_channelId,
QStringLiteral("Radio Astronomy"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/radioclock/radioclockplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
RadioClock::m_channelId,
QStringLiteral("Radio Clock"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/remotesink/remotesinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = {
RemoteSink::m_channelId,
QStringLiteral("Remote channel sink"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = {
SigMFFileSink::m_channelId,
QStringLiteral("SigMF File Sink"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/udpsink/udpsinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = {
UDPSink::m_channelId,
QStringLiteral("UDP Channel Sink"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/filesource/filesourceplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = {
FileSource::m_channelId,
QStringLiteral("File channel source"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/localsource/localsourceplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
LocalSource::m_channelId,
QStringLiteral("Local channel source"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = {
IEEE_802_15_4_Mod::m_channelId,
QStringLiteral("802.15.4 Modulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/modais/aismodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor AISModPlugin::m_pluginDescriptor = {
AISMod::m_channelId,
QStringLiteral("AIS Modulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/modam/ammodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
const PluginDescriptor AMModPlugin::m_pluginDescriptor = {
AMMod::m_channelId,
QStringLiteral("AM Modulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.20.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
Loading

0 comments on commit 7f1c838

Please sign in to comment.