From bb99edddc14a472c5986bf859fa36307f8e59334 Mon Sep 17 00:00:00 2001 From: f4exb Date: Fri, 26 Nov 2021 22:51:28 +0100 Subject: [PATCH] Updated version and changelogs --- CHANGELOG | 24 +++++++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 24 +++++++++++++++++++ plugins/channelrx/demodais/aisdemodplugin.cpp | 2 +- .../demodchirpchat/chirpchatplugin.cpp | 2 +- .../demodpacket/packetdemodplugin.cpp | 2 +- .../channelrx/demodpager/pagerdemodplugin.cpp | 2 +- .../channelrx/remotesink/remotesinkplugin.cpp | 2 +- .../mod802.15.4/ieee_802_15_4_modplugin.cpp | 2 +- plugins/channeltx/modais/aismodplugin.cpp | 2 +- .../modchirpchat/chirpchatmodplugin.cpp | 2 +- .../channeltx/modpacket/packetmodplugin.cpp | 2 +- plugins/feature/aprs/aprsplugin.cpp | 2 +- plugins/feature/map/mapplugin.cpp | 2 +- .../satellitetrackerplugin.cpp | 2 +- 15 files changed, 61 insertions(+), 13 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9c8467a50..a4c70b65c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,27 @@ +sdrangel (6.17.4-1) unstable; urgency=medium + + * Basic instance save and restore wihth scripts dump.py and config,py + * API: fixes in features processing + * Use dark theme for APRS charts. PR #1060 + * Move Feature workers to thread. PR #1059 + * Make Sat Tracker GUI expanding. PR #1057 + * Add links to documentation in channel and feature GUIs. PR #1056 + * Save/restore rollup state in channel plugins. PR #1055 + * Remove sorting of channels and features when saving presets in GUI. Fixes #1051 + * ChirpChat demod: API changes and fixes + * Add better Map API key support. PR #1054 + * Save/restore rollup state in features. PR #1053 + * GS232 Rotator Controller updates. Fixes #1045. PR #1052 + * IEEE 802.15.4 modulator: API and GUI changes + * Packet modulator: API changes + * Remote Input: prevent nullptr + * Center ADS-B map on My Location when map is first opened. PR #1048 + * ADS-B Updates. Fix positioning of Home antenna. PR #1047 + * Add support for POWER architecture. PR #1046 + * ADSB demod: added auto target checkbox in notifications table. + + -- Edouard Griffiths, F4EXB Fri, 26 Nov 2021 21:16:24 +0100 + sdrangel (6.17.3-1) unstable; urgency=medium * Noise Figure: add support for sweeping gain and other device settings. PR #1020 diff --git a/CMakeLists.txt b/CMakeLists.txt index 059d97d37..d2492450f 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 "17") -set(sdrangel_VERSION_PATCH "3") +set(sdrangel_VERSION_PATCH "4") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 5b97bb0d3..65e78b771 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +sdrangel (6.17.4-1) unstable; urgency=medium + + * Basic instance save and restore wihth scripts dump.py and config,py + * API: fixes in features processing + * Use dark theme for APRS charts. PR #1060 + * Move Feature workers to thread. PR #1059 + * Make Sat Tracker GUI expanding. PR #1057 + * Add links to documentation in channel and feature GUIs. PR #1056 + * Save/restore rollup state in channel plugins. PR #1055 + * Remove sorting of channels and features when saving presets in GUI. Fixes #1051 + * ChirpChat demod: API changes and fixes + * Add better Map API key support. PR #1054 + * Save/restore rollup state in features. PR #1053 + * GS232 Rotator Controller updates. Fixes #1045. PR #1052 + * IEEE 802.15.4 modulator: API and GUI changes + * Packet modulator: API changes + * Remote Input: prevent nullptr + * Center ADS-B map on My Location when map is first opened. PR #1048 + * ADS-B Updates. Fix positioning of Home antenna. PR #1047 + * Add support for POWER architecture. PR #1046 + * ADSB demod: added auto target checkbox in notifications table. + + -- Edouard Griffiths, F4EXB Fri, 26 Nov 2021 21:16:24 +0100 + sdrangel (6.17.3-1) unstable; urgency=medium * Noise Figure: add support for sweeping gain and other device settings. PR #1020 diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index 6886a3769..32a78439c 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.17.3"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp index 2e9707383..5ceb713f7 100644 --- a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp +++ b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp @@ -27,7 +27,7 @@ const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = { ChirpChatDemod::m_channelId, QStringLiteral("ChirpChat Demodulator"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.4"), 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 a43e6c36f..417f72879 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.17.3"), + QStringLiteral("6.17.4"), 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 c986be1ed..d69d761ff 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.17.3"), + QStringLiteral("6.17.4"), 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 681a36f3e..9b19568f6 100644 --- a/plugins/channelrx/remotesink/remotesinkplugin.cpp +++ b/plugins/channelrx/remotesink/remotesinkplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor RemoteSinkPlugin::m_pluginDescriptor = { RemoteSink::m_channelId, QStringLiteral("Remote channel sink"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.4"), 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 6c803f7a7..0a3394854 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.17.3"), + QStringLiteral("6.17.4"), 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 020914663..cce5f072b 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.17.3"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp index dd33d8257..06342bfc4 100644 --- a/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp +++ b/plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = { ChirpChatMod::m_channelId, QStringLiteral("ChirpChat Modulator"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.4"), 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 12cc631bc..591b03929 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.17.3"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/aprs/aprsplugin.cpp b/plugins/feature/aprs/aprsplugin.cpp index 302579f73..566a31ed1 100644 --- a/plugins/feature/aprs/aprsplugin.cpp +++ b/plugins/feature/aprs/aprsplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor APRSPlugin::m_pluginDescriptor = { APRS::m_featureId, QStringLiteral("APRS"), - QStringLiteral("6.8.0"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 088857dac..a094505c0 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index 6a1985ef2..fcc07163b 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.4"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,