Skip to content

Commit c4e57a1

Browse files
committed
Updated versions and changelogs
1 parent 99011d8 commit c4e57a1

File tree

64 files changed

+110
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+110
-62
lines changed

CHANGELOG

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
sdrangel (7.22.5-1) unstable; urgency=medium
2+
3+
* Windows: upload signed releases rather than unsigned releases to Github releases page. PR #2347
4+
* Windows: fixed signed releases. PR #2344
5+
* FT8 Demod: limit upper bandwidth to 5.8 kHz. Fixes #2339
6+
* Stop device while changing channel set. Fixes #2332. PR #2342
7+
* ADSB: Update URL of OpenSkyNetwork Aircraft database. PR #2341
8+
* Don't stop source if being deleted. For #2315. PR #2340
9+
* Send DSPSignalNotification in audio mods for #2336. PR #2340
10+
* Radiosonde: limit precision of floating point numbers sent to SondeHub. PR #2338
11+
* Windows signed releases: use relative path. Increase timeout to 30 minutes. PR #2335
12+
* ADSB: Include adsbdemodsettings.h PR #2334
13+
* Use release signing certificate for Windows installer. PR #2331
14+
* Fix memory leak and race condition relating to DSP*Engines. Part of #2159 PR #2330
15+
* FreeDV: Fix memory allocation/free issues. Part of #2315. PR #2330
16+
* Wav Files: Add support for meta-data. PR #2328
17+
* DemodAnalyzer: Ensure sample rate is set in worker. Fixes #2309. PR #2328
18+
^ SDRplayv3: Mac: link with libsdrplay_api.so.3 rather than libsdrplay_api.so.3.15. PR #2327
19+
* ADS-B: Fix memory use after delete. For #1734 and part of #2315 PR #2326
20+
* Fixed Appveyor Docker image build
21+
* Fix output-artifact-directory and unzip file. PR #2323
22+
23+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 05 Dec 2024 01:07:27 +0100
24+
125
sdrangel (7.22.4-1) unstable; urgency=medium
226

327
* Use macos-12 for Mac x86 build. PR #2321

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2020
# configure version
2121
set(sdrangel_VERSION_MAJOR "7")
2222
set(sdrangel_VERSION_MINOR "22")
23-
set(sdrangel_VERSION_PATCH "4")
23+
set(sdrangel_VERSION_PATCH "5")
2424
set(sdrangel_VERSION_SUFFIX "")
2525

2626
# SDRAngel cmake options

debian/changelog

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
sdrangel (7.22.5-1) unstable; urgency=medium
2+
3+
* Windows: upload signed releases rather than unsigned releases to Github releases page. PR #2347
4+
* Windows: fixed signed releases. PR #2344
5+
* FT8 Demod: limit upper bandwidth to 5.8 kHz. Fixes #2339
6+
* Stop device while changing channel set. Fixes #2332. PR #2342
7+
* ADSB: Update URL of OpenSkyNetwork Aircraft database. PR #2341
8+
* Don't stop source if being deleted. For #2315. PR #2340
9+
* Send DSPSignalNotification in audio mods for #2336. PR #2340
10+
* Radiosonde: limit precision of floating point numbers sent to SondeHub. PR #2338
11+
* Windows signed releases: use relative path. Increase timeout to 30 minutes. PR #2335
12+
* ADSB: Include adsbdemodsettings.h PR #2334
13+
* Use release signing certificate for Windows installer. PR #2331
14+
* Fix memory leak and race condition relating to DSP*Engines. Part of #2159 PR #2330
15+
* FreeDV: Fix memory allocation/free issues. Part of #2315. PR #2330
16+
* Wav Files: Add support for meta-data. PR #2328
17+
* DemodAnalyzer: Ensure sample rate is set in worker. Fixes #2309. PR #2328
18+
^ SDRplayv3: Mac: link with libsdrplay_api.so.3 rather than libsdrplay_api.so.3.15. PR #2327
19+
* ADS-B: Fix memory use after delete. For #1734 and part of #2315 PR #2326
20+
* Fixed Appveyor Docker image build
21+
* Fix output-artifact-directory and unzip file. PR #2323
22+
23+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 05 Dec 2024 01:07:27 +0100
24+
125
sdrangel (7.22.4-1) unstable; urgency=medium
226

327
* Use macos-12 for Mac x86 build. PR #2321

gitdiff.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ PLUGINS=$(git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | so
44
for plugin in $PLUGINS
55
do
66
FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp")
7-
sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.4\"\)/" $FILE
7+
sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.5\"\)/" $FILE
88
done
99

plugins/channelrx/chanalyzer/chanalyzerplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
2828
ChannelAnalyzer::m_channelId,
2929
QStringLiteral("Channel Analyzer"),
30-
QStringLiteral("7.22.1"),
30+
QStringLiteral("7.22.5"),
3131
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
3232
QStringLiteral("https://github.com/f4exb/sdrangel"),
3333
true,

plugins/channelrx/channelpower/channelpowerplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
const PluginDescriptor ChannelPowerPlugin::m_pluginDescriptor = {
3030
ChannelPower::m_channelId,
3131
QStringLiteral("Channel Power"),
32-
QStringLiteral("7.22.1"),
32+
QStringLiteral("7.22.5"),
3333
QStringLiteral("(c) Jon Beniston, M7RCE"),
3434
QStringLiteral("https://github.com/f4exb/sdrangel"),
3535
true,

plugins/channelrx/demodadsb/adsbplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
3131
ADSBDemod::m_channelId,
3232
QStringLiteral("ADS-B Demodulator"),
33-
QStringLiteral("7.22.3"),
33+
QStringLiteral("7.22.5"),
3434
QStringLiteral("(c) Jon Beniston, M7RCE"),
3535
QStringLiteral("https://github.com/f4exb/sdrangel"),
3636
true,

plugins/channelrx/demodais/aisdemodplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
3434
AISDemod::m_channelId,
3535
QStringLiteral("AIS Demodulator"),
36-
QStringLiteral("7.22.3"),
36+
QStringLiteral("7.22.5"),
3737
QStringLiteral("(c) Jon Beniston, M7RCE"),
3838
QStringLiteral("https://github.com/f4exb/sdrangel"),
3939
true,

plugins/channelrx/demodam/amdemodplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
3030
AMDemod::m_channelId,
3131
QStringLiteral("AM Demodulator"),
32-
QStringLiteral("7.22.1"),
32+
QStringLiteral("7.22.5"),
3333
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
3434
QStringLiteral("https://github.com/f4exb/sdrangel"),
3535
true,

plugins/channelrx/demodapt/aptdemodplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
3030
APTDemod::m_channelId,
3131
QStringLiteral("APT Demodulator"),
32-
QStringLiteral("7.22.1"),
32+
QStringLiteral("7.22.5"),
3333
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
3434
QStringLiteral("https://github.com/f4exb/sdrangel"),
3535
true,

0 commit comments

Comments
 (0)