From 1bd384fd6c92d52e96418c782700119133ad8e05 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 17 Jul 2021 10:28:23 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 10 ++++++++++ CMakeLists.txt | 2 +- debian/changelog | 10 ++++++++++ plugins/channelrx/demodais/aisdemodplugin.cpp | 2 +- plugins/channelrx/demodpager/pagerdemodplugin.cpp | 2 +- plugins/channelrx/radioclock/radioclockplugin.cpp | 2 +- .../channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp | 2 +- plugins/channeltx/modais/aismodplugin.cpp | 2 +- plugins/channeltx/modpacket/packetmodplugin.cpp | 2 +- 9 files changed, 27 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1ad0920ee..81f27e977 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (6.16.1-1) unstable; urgency=medium + + * AIS: fixed window size when scope is visible. PR #962. Issue #981 + * Other fixes in AIS demod. PR #962 + * ScopeVis: allow Projection cache only if in single stream mode. Issue #872 + * Scope GUI: reworked serialize and deserialize + * AIS, IEEE 802.15.4, Pager, Radio Clock: scope and spectrum feed optimization + + -- Edouard Griffiths, F4EXB Sat, 17 Jul 2021 08:23:22 +0200 + sdrangel (6.16.0-1) unstable; urgency=medium * New Pager demodulator. PR #960 diff --git a/CMakeLists.txt b/CMakeLists.txt index ca7a15578..dea272c04 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MINOR "16") -set(sdrangel_VERSION_PATCH "0") +set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 2e97b9096..b909aeefd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (6.16.1-1) unstable; urgency=medium + + * AIS: fixed window size when scope is visible. PR #962. Issue #981 + * Other fixes in AIS demod. PR #962 + * ScopeVis: allow Projection cache only if in single stream mode. Issue #872 + * Scope GUI: reworked serialize and deserialize + * AIS, IEEE 802.15.4, Pager, Radio Clock: scope and spectrum feed optimization + + -- Edouard Griffiths, F4EXB Sat, 17 Jul 2021 08:23:22 +0200 + sdrangel (6.16.0-1) unstable; urgency=medium * New Pager demodulator. PR #960 diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index 8e102bb20..0abc85af3 100644 --- a/plugins/channelrx/demodais/aisdemodplugin.cpp +++ b/plugins/channelrx/demodais/aisdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { AISDemod::m_channelId, QStringLiteral("AIS Demodulator"), - QStringLiteral("6.16.0"), + QStringLiteral("6.16.1"), 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 5ce60f6a7..34a2c78f0 100644 --- a/plugins/channelrx/demodpager/pagerdemodplugin.cpp +++ b/plugins/channelrx/demodpager/pagerdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = { PagerDemod::m_channelId, QStringLiteral("Pager Demodulator"), - QStringLiteral("6.16.0"), + QStringLiteral("6.16.1"), 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 012002cfc..7faf704f4 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.16.0"), + QStringLiteral("6.16.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), 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 47fd1709e..7728aa386 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 @@ -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.10.3"), + QStringLiteral("6.16.1"), 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 bfcb4a5b1..809d19ce4 100644 --- a/plugins/channeltx/modais/aismodplugin.cpp +++ b/plugins/channeltx/modais/aismodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AISModPlugin::m_pluginDescriptor = { AISMod::m_channelId, QStringLiteral("AIS Modulator"), - QStringLiteral("6.12.0"), + QStringLiteral("6.16.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modpacket/packetmodplugin.cpp b/plugins/channeltx/modpacket/packetmodplugin.cpp index ba3c698fe..53772335d 100644 --- a/plugins/channeltx/modpacket/packetmodplugin.cpp +++ b/plugins/channeltx/modpacket/packetmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { PacketMod::m_channelId, QStringLiteral("Packet Modulator"), - QStringLiteral("6.4.0"), + QStringLiteral("6.16.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,