From a57c856a261e4c9fc59b1e595f7bb13dd5778e5e Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 27 Jun 2021 19:17:28 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 14 ++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 14 ++++++++++++++ .../interferometer/interferometerplugin.cpp | 2 +- plugins/channelrx/chanalyzer/chanalyzerplugin.cpp | 2 +- plugins/channelrx/demodapt/aptdemodplugin.cpp | 2 +- .../channelrx/demodpacket/packetdemodplugin.cpp | 2 +- plugins/channelrx/radioclock/radioclockplugin.cpp | 2 +- plugins/feature/startracker/startrackerplugin.cpp | 2 +- plugins/samplesource/airspy/airspyplugin.cpp | 2 +- 10 files changed, 36 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 487d11e1b..68210ec55 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +sdrangel (6.15.0-1) unstable; urgency=medium + + * New Radio Clock plugin. PRs #394, #936 and #939 + * Add image zooming to APT demodulator. PR #941 + * Add Star Tracker galactic line of sight plot. PR #938 + * Improved packet demod performance. PR #935 + * Scope GUI: refactor of amplitude scale and offset. Issue #937 + * Scope: allow complex float possibly unscaled input. Issue #929 + * Fixed SWGModelFactory so that init() is invoked on complex objects. Fixes #899 + * Fixed multiple streams input. Fixes #925 + * Upgraded libairspy to v1.0.10 + + -- Edouard Griffiths, F4EXB Sun, 27 Jun 2021 17:12:08 +0200 + sdrangel (6.14.0-1) unstable; urgency=medium * New noise figure Rx channel plugin PR #917 and #919 diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b7fd4a29..2b07657d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") -set(sdrangel_VERSION_MINOR "14") +set(sdrangel_VERSION_MINOR "15") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index 3f4ad1fd3..fc336bd4b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +sdrangel (6.15.0-1) unstable; urgency=medium + + * New Radio Clock plugin. PRs #394, #936 and #939 + * Add image zooming to APT demodulator. PR #941 + * Add Star Tracker galactic line of sight plot. PR #938 + * Improved packet demod performance. PR #935 + * Scope GUI: refactor of amplitude scale and offset. Issue #937 + * Scope: allow complex float possibly unscaled input. Issue #929 + * Fixed SWGModelFactory so that init() is invoked on complex objects. Fixes #899 + * Fixed multiple streams input. Fixes #925 + * Upgraded libairspy to v1.0.10 + + -- Edouard Griffiths, F4EXB Sun, 27 Jun 2021 17:12:08 +0200 + sdrangel (6.14.0-1) unstable; urgency=medium * New noise figure Rx channel plugin PR #917 and #919 diff --git a/plugins/channelmimo/interferometer/interferometerplugin.cpp b/plugins/channelmimo/interferometer/interferometerplugin.cpp index 95d779284..cdbfba0e1 100644 --- a/plugins/channelmimo/interferometer/interferometerplugin.cpp +++ b/plugins/channelmimo/interferometer/interferometerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { Interferometer::m_channelId, QStringLiteral("Interferometer"), - QStringLiteral("6.14.0"), + QStringLiteral("6.15.0"), 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 16781eeb5..90cc67d25 100644 --- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp @@ -26,7 +26,7 @@ const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { ChannelAnalyzer::m_channelId, QStringLiteral("Channel Analyzer"), - QStringLiteral("6.14.0"), + QStringLiteral("6.15.0"), 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 8618ac07a..64f059581 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("6.10.2"), + QStringLiteral("6.15.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpacket/packetdemodplugin.cpp b/plugins/channelrx/demodpacket/packetdemodplugin.cpp index a9fc9db8c..db9cf951a 100644 --- a/plugins/channelrx/demodpacket/packetdemodplugin.cpp +++ b/plugins/channelrx/demodpacket/packetdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = { PacketDemod::m_channelId, QStringLiteral("Packet Demodulator"), - QStringLiteral("6.10.3"), + QStringLiteral("6.15.0"), 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 117ea5a79..208139c51 100644 --- a/plugins/channelrx/radioclock/radioclockplugin.cpp +++ b/plugins/channelrx/radioclock/radioclockplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = { RadioClock::m_channelId, QStringLiteral("Radio Clock"), - QStringLiteral("6.14.1"), + QStringLiteral("6.15.0"), 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 b82b51711..cafe69438 100644 --- a/plugins/feature/startracker/startrackerplugin.cpp +++ b/plugins/feature/startracker/startrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { StarTracker::m_featureId, QStringLiteral("Star Tracker"), - QStringLiteral("6.13.0"), + QStringLiteral("6.15.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/airspy/airspyplugin.cpp b/plugins/samplesource/airspy/airspyplugin.cpp index 7abfb5498..c2ea2beb3 100644 --- a/plugins/samplesource/airspy/airspyplugin.cpp +++ b/plugins/samplesource/airspy/airspyplugin.cpp @@ -34,7 +34,7 @@ const int AirspyPlugin::m_maxDevices = 32; const PluginDescriptor AirspyPlugin::m_pluginDescriptor = { QStringLiteral("Airspy"), QStringLiteral("Airspy Input"), - QStringLiteral("4.19.0"), + QStringLiteral("6.15.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,