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 Oct 20, 2024
1 parent 6c617be commit ed410d0
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 11 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Sun, 20 Oct 2024 08:26:38 +0200

sdrangel (7.22.1-1) unstable; urgency=medium

* wdsprx: Fix path to help file.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
23 changes: 23 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Sun, 20 Oct 2024 08:26:38 +0200

sdrangel (7.22.1-1) unstable; urgency=medium

* wdsprx: Fix path to help file.
Expand Down
2 changes: 1 addition & 1 deletion gitdiff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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 @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/heatmap/heatmapplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/modchirpchat/chirpchatmodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/modssb/ssbmodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/map/mapplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesource/rtlsdr/rtlsdrplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ed410d0

Please sign in to comment.