From ed410d039a312b58495960f43b5a596d4e1a6969 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 20 Oct 2024 10:53:00 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 23 +++++++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 23 +++++++++++++++++++ gitdiff.sh | 2 +- .../demodchirpchat/chirpchatplugin.cpp | 2 +- .../channelrx/demodpager/pagerdemodplugin.cpp | 2 +- plugins/channelrx/heatmap/heatmapplugin.cpp | 2 +- .../remotetcpsink/remotetcpsinkplugin.cpp | 2 +- .../modchirpchat/chirpchatmodplugin.cpp | 2 +- plugins/channeltx/modssb/ssbmodplugin.cpp | 2 +- plugins/feature/map/mapplugin.cpp | 2 +- .../remotetcpinput/remotetcpinputplugin.cpp | 2 +- plugins/samplesource/rtlsdr/rtlsdrplugin.cpp | 2 +- 13 files changed, 57 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ac5925b45..a1153e249 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,26 @@ +sdrangel (7.22.2-1) unstable; urgency=medium + + * ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284 + * RTLSDR: Apply driver settings in RTLSDRThread Add sync read for WebAssembly. PR #2281 + * SSB demod: fixed GUI and returned to previous threading model. Fixes #2273 + * HeatMap: Catch memory allocation failures... For #2083 PR #2277 + * Add default-qt6-windows cmake config. PR #2276 + * Add pager notifications. Add option to ignore duplicates. Support plotting pager messages on the map. PR #2276 + * Don't load defaults if loading a preset. PR #2274 + * DeviceGUI::closeEvent - Don't automatically delete the GUI,.. PR #2274 + * MainWindow: Add FSMs to avoid blocking on the GUI thread... PR #2274 + * Fix replay buffer when FixReal is qint16. PR #2270 + * snap: Try to get version number from latest tag. PR #2270 + * Add libflac to snap. Set ARCH_OPT to nehalem. PR #2270 + * Fix flac on Mac. PR #2270 + * RemoteTCP: Update docs. PR #2270 + * Map: Fix Kiwi list. Add SDRangel wss support. PR #2270 + * RemoteTCPSink: Report server init errors via GUI. Send protocol to public list. PR #2270 + * RemoteTCPInput: Add wss protocol support. PR #2270 + * Fix DeviceAPI::deserialize. Fixes #2266. PR #2267 + +-- Edouard Griffiths, F4EXB Sun, 20 Oct 2024 08:26:38 +0200 + sdrangel (7.22.1-1) unstable; urgency=medium * wdsprx: Fix path to help file. diff --git a/CMakeLists.txt b/CMakeLists.txt index 50dfaadc0..296b8b856 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 "22") -set(sdrangel_VERSION_PATCH "1") +set(sdrangel_VERSION_PATCH "2") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 5fd312ed4..684551798 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,26 @@ +sdrangel (7.22.2-1) unstable; urgency=medium + + * ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284 + * RTLSDR: Apply driver settings in RTLSDRThread Add sync read for WebAssembly. PR #2281 + * SSB demod: fixed GUI and returned to previous threading model. Fixes #2273 + * HeatMap: Catch memory allocation failures... For #2083 PR #2277 + * Add default-qt6-windows cmake config. PR #2276 + * Add pager notifications. Add option to ignore duplicates. Support plotting pager messages on the map. PR #2276 + * Don't load defaults if loading a preset. PR #2274 + * DeviceGUI::closeEvent - Don't automatically delete the GUI,.. PR #2274 + * MainWindow: Add FSMs to avoid blocking on the GUI thread... PR #2274 + * Fix replay buffer when FixReal is qint16. PR #2270 + * snap: Try to get version number from latest tag. PR #2270 + * Add libflac to snap. Set ARCH_OPT to nehalem. PR #2270 + * Fix flac on Mac. PR #2270 + * RemoteTCP: Update docs. PR #2270 + * Map: Fix Kiwi list. Add SDRangel wss support. PR #2270 + * RemoteTCPSink: Report server init errors via GUI. Send protocol to public list. PR #2270 + * RemoteTCPInput: Add wss protocol support. PR #2270 + * Fix DeviceAPI::deserialize. Fixes #2266. PR #2267 + +-- Edouard Griffiths, F4EXB Sun, 20 Oct 2024 08:26:38 +0200 + sdrangel (7.22.1-1) unstable; urgency=medium * wdsprx: Fix path to help file. diff --git a/gitdiff.sh b/gitdiff.sh index a2620e51b..927b12ee7 100755 --- a/gitdiff.sh +++ b/gitdiff.sh @@ -4,6 +4,6 @@ PLUGINS=$(git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | so for plugin in $PLUGINS do FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp") - sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.1\"\)/" $FILE + sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.2\"\)/" $FILE done diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp index 345c05bdc..4d348d8b8 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.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpager/pagerdemodplugin.cpp b/plugins/channelrx/demodpager/pagerdemodplugin.cpp index 957b2f27e..bd376b0b7 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.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index 234bec5c2..148256b1d 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.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp index f91d816f0..d589fe556 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.22.1"), + QStringLiteral("7.22.2"), 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 ff411e95f..55f08ebbf 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.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modssb/ssbmodplugin.cpp b/plugins/channeltx/modssb/ssbmodplugin.cpp index 0edecbf35..86865e565 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.22.1"), + QStringLiteral("7.22.2"), 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 cfda49a5c..ddf18830e 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.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp index 10a5d4e53..7f88936a3 100644 --- a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp +++ b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteTCPInput"), QStringLiteral("Remote TCP device input"), - QStringLiteral("7.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp index d6ec4c760..14e9aa9da 100644 --- a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp +++ b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp @@ -39,7 +39,7 @@ const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { QStringLiteral("RTLSDR"), QStringLiteral("RTL-SDR Input"), - QStringLiteral("7.22.1"), + QStringLiteral("7.22.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,