Skip to content

Commit ae5dc86

Browse files
committed
Updated versions and changelogs
1 parent bf837e0 commit ae5dc86

File tree

20 files changed

+47
-18
lines changed

20 files changed

+47
-18
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
sdrangel (7.22.3-1) unstable; urgency=medium
22

3+
* Add deb dependencies for pipewire. PR #2314
4+
* Added compilation options for WebAssembly. PR #2313
5+
* ADS-B: Use settings keys. PR #2310
6+
* AIS Demod: Remove spacing around messages. PR #2310
7+
* Freuqency Scanner: Add multiplex mode. PR #2310
38
* Build snap, MAC, Windows and Ubuntu .deb with Github actions. Various PRs
49
* Server: Use Sink/MIMO signals rather than Source. Part of #2294. PR #2304
510
* Updated some Python scripts to Python3. PR #2298
@@ -13,6 +18,8 @@ sdrangel (7.22.3-1) unstable; urgency=medium
1318
* Update Qt optional packages for 6.8 , PR #2287
1419
* Use Qt 6.8 for Windows build. PR #2287
1520

21+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 09 Nov 2024 17:30:44 +0100
22+
1623
sdrangel (7.22.2-1) unstable; urgency=medium
1724

1825
* ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284

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 "2")
23+
set(sdrangel_VERSION_PATCH "3")
2424
set(sdrangel_VERSION_SUFFIX "")
2525

2626
# SDRAngel cmake options

debian/changelog

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
sdrangel (7.22.3-1) unstable; urgency=medium
2+
3+
* Add deb dependencies for pipewire. PR #2314
4+
* Added compilation options for WebAssembly. PR #2313
5+
* ADS-B: Use settings keys. PR #2310
6+
* AIS Demod: Remove spacing around messages. PR #2310
7+
* Freuqency Scanner: Add multiplex mode. PR #2310
8+
* Build snap, MAC, Windows and Ubuntu .deb with Github actions. Various PRs
9+
* Server: Use Sink/MIMO signals rather than Source. Part of #2294. PR #2304
10+
* Updated some Python scripts to Python3. PR #2298
11+
* RemoteTCPSink: Does use IQ only setting for RTL0. PR #2301
12+
* Server: wait for set sample source/sink/MIMO to complete before loading the device settings. Fixes #2294
13+
* Fix spectrum peak measurement for SSB spectra. Fixes #2282. PR #2299
14+
* Upgrade C++ standard to c++17
15+
* Fixes for Android . PR #2288
16+
* Add qtshadertools. PR #2287
17+
* Add more Qt modules and set ENABLE_QT6=ON. PR #2287
18+
* Update Qt optional packages for 6.8 , PR #2287
19+
* Use Qt 6.8 for Windows build. PR #2287
20+
21+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 09 Nov 2024 17:30:44 +0100
22+
123
sdrangel (7.22.2-1) unstable; urgency=medium
224

325
* ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284

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\.2\"\)/" $FILE
7+
sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.3\"\)/" $FILE
88
done
99

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.1"),
33+
QStringLiteral("7.22.3"),
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.1"),
36+
QStringLiteral("7.22.3"),
3737
QStringLiteral("(c) Jon Beniston, M7RCE"),
3838
QStringLiteral("https://github.com/f4exb/sdrangel"),
3939
true,

plugins/channelrx/demodpager/pagerdemodplugin.cpp

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

plugins/channelrx/freqscanner/freqscannerplugin.cpp

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

plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = {
3636
RemoteTCPSink::m_channelId,
3737
QStringLiteral("Remote TCP channel sink"),
38-
QStringLiteral("7.22.2"),
38+
QStringLiteral("7.22.3"),
3939
QStringLiteral("(c) Jon Beniston, M7RCE"),
4040
QStringLiteral("https://github.com/f4exb/sdrangel"),
4141
true,

plugins/feature/antennatools/antennatoolsplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = {
3535
AntennaTools::m_featureId,
3636
QStringLiteral("Antenna Tools"),
37-
QStringLiteral("7.22.1"),
37+
QStringLiteral("7.22.3"),
3838
QStringLiteral("(c) Jon Beniston, M7RCE"),
3939
QStringLiteral("https://github.com/f4exb/sdrangel"),
4040
true,

0 commit comments

Comments
 (0)