From 1236b119002a3a02a1a46e6cfa7974f6691dec85 Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 13 Jan 2026 19:07:23 +0100 Subject: [PATCH] Publish version v7.23.0 --- CHANGELOG | 6 ++++++ CMakeLists.txt | 4 ++-- CMakePresets.json | 1 + debian/changelog | 6 ++++++ gitdiff.sh | 2 +- .../beamsteeringcwmod/beamsteeringcwmodplugin.cpp | 2 +- plugins/channelmimo/doa2/doa2plugin.cpp | 2 +- plugins/channelmimo/interferometer/interferometerplugin.cpp | 2 +- plugins/channelrx/demodam/amdemodplugin.cpp | 2 +- plugins/channelrx/demodbfm/bfmplugin.cpp | 2 +- plugins/channelrx/demodft8/ft8plugin.cpp | 2 +- plugins/channelrx/demodinmarsat/inmarsatdemodplugin.cpp | 2 +- plugins/channelrx/demodnfm/nfmplugin.cpp | 2 +- plugins/channelrx/demodssb/ssbplugin.cpp | 2 +- plugins/channelrx/demodwfm/wfmplugin.cpp | 2 +- plugins/channelrx/freqscanner/freqscannerplugin.cpp | 2 +- plugins/channelrx/radioastronomy/radioastronomyplugin.cpp | 2 +- plugins/channelrx/wdsprx/wdsprxplugin.cpp | 2 +- plugins/channeltx/moddatv/datvmodplugin.cpp | 2 +- plugins/feature/denoiser/denoiserplugin.cpp | 2 +- plugins/feature/map/mapplugin.cpp | 2 +- plugins/feature/satellitetracker/satellitetrackerplugin.cpp | 2 +- plugins/samplesink/fileoutput/fileoutputplugin.cpp | 2 +- plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp | 2 +- plugins/samplesink/testsink/testsinkplugin.cpp | 2 +- plugins/samplesource/hackrfinput/hackrfinputplugin.cpp | 2 +- 26 files changed, 37 insertions(+), 24 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c23773e57..89a065ef1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +sdrangel (7.23.0-1) unstable; urgency=medium + + * See Github release + + -- Edouard Griffiths, F4EXB Tue, 13 Dec 2025 18:06:47 +0100 + sdrangel (7.22.10-1) unstable; urgency=medium * See Github release diff --git a/CMakeLists.txt b/CMakeLists.txt index 98be77192..ec6aeaff9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "22") -set(sdrangel_VERSION_PATCH "10") +set(sdrangel_VERSION_MINOR "23") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/CMakePresets.json b/CMakePresets.json index d0d0a251b..8f62401de 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -30,6 +30,7 @@ "XTRX_DIR": "/opt/install/xtrx-images", "GGMORSE_DIR": "/opt/install/ggmorse", "RNNOISE_DIR": "/opt/install/rnnoise", + "INMARSATC_DIR": "/opt/install/inmarsatc", "CMAKE_INSTALL_PREFIX": "/opt/install/sdrangel" }, "warnings": { diff --git a/debian/changelog b/debian/changelog index 32c1cb819..9add36d8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sdrangel (7.23.0-1) unstable; urgency=medium + + * See Github release + + -- Edouard Griffiths, F4EXB Tue, 13 Dec 2025 18:06:47 +0100 + sdrangel (7.22.10-1) unstable; urgency=medium * See Github release diff --git a/gitdiff.sh b/gitdiff.sh index e6b631979..31ed4ddee 100755 --- a/gitdiff.sh +++ b/gitdiff.sh @@ -5,5 +5,5 @@ for plugin in $PLUGINS do FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp") echo $FILE - sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.10\"\)/" $FILE + sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.23\.0\"\)/" $FILE done diff --git a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp index c5ee97aa3..b62495327 100644 --- a/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp +++ b/plugins/channelmimo/beamsteeringcwmod/beamsteeringcwmodplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor BeamSteeringCWModPlugin::m_pluginDescriptor = { BeamSteeringCWMod::m_channelId, QStringLiteral("BeamSteeringCWMod"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/doa2/doa2plugin.cpp b/plugins/channelmimo/doa2/doa2plugin.cpp index 7e9440538..b153d8379 100644 --- a/plugins/channelmimo/doa2/doa2plugin.cpp +++ b/plugins/channelmimo/doa2/doa2plugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor DOA2Plugin::m_pluginDescriptor = { DOA2::m_channelId, QStringLiteral("DOA 2 sources"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelmimo/interferometer/interferometerplugin.cpp b/plugins/channelmimo/interferometer/interferometerplugin.cpp index aa0c0f3fa..3758c7604 100644 --- a/plugins/channelmimo/interferometer/interferometerplugin.cpp +++ b/plugins/channelmimo/interferometer/interferometerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { Interferometer::m_channelId, QStringLiteral("Interferometer"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodam/amdemodplugin.cpp b/plugins/channelrx/demodam/amdemodplugin.cpp index 617ef8939..3f30c4af2 100644 --- a/plugins/channelrx/demodam/amdemodplugin.cpp +++ b/plugins/channelrx/demodam/amdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = { AMDemod::m_channelId, QStringLiteral("AM Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodbfm/bfmplugin.cpp b/plugins/channelrx/demodbfm/bfmplugin.cpp index e2c893f50..9decde46e 100644 --- a/plugins/channelrx/demodbfm/bfmplugin.cpp +++ b/plugins/channelrx/demodbfm/bfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor BFMPlugin::m_pluginDescriptor = { BFMDemod::m_channelId, QStringLiteral("Broadcast FM Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodft8/ft8plugin.cpp b/plugins/channelrx/demodft8/ft8plugin.cpp index 601572cb2..d126c3896 100644 --- a/plugins/channelrx/demodft8/ft8plugin.cpp +++ b/plugins/channelrx/demodft8/ft8plugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor FT8Plugin::m_pluginDescriptor = { FT8Demod::m_channelId, QStringLiteral("FT8 Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodinmarsat/inmarsatdemodplugin.cpp b/plugins/channelrx/demodinmarsat/inmarsatdemodplugin.cpp index cd85c1717..b6bd1e5ac 100644 --- a/plugins/channelrx/demodinmarsat/inmarsatdemodplugin.cpp +++ b/plugins/channelrx/demodinmarsat/inmarsatdemodplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor InmarsatDemodPlugin::m_pluginDescriptor = { InmarsatDemod::m_channelId, QStringLiteral("Inmarsat C Demodulator"), - QStringLiteral("7.22.11"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodnfm/nfmplugin.cpp b/plugins/channelrx/demodnfm/nfmplugin.cpp index fb7385d0f..af257b1b3 100644 --- a/plugins/channelrx/demodnfm/nfmplugin.cpp +++ b/plugins/channelrx/demodnfm/nfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor NFMPlugin::m_pluginDescriptor = { NFMDemod::m_channelId, QStringLiteral("NFM Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp index d8673e277..f52b6bd2f 100644 --- a/plugins/channelrx/demodssb/ssbplugin.cpp +++ b/plugins/channelrx/demodssb/ssbplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor SSBPlugin::m_pluginDescriptor = { SSBDemod::m_channelId, QStringLiteral("SSB Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodwfm/wfmplugin.cpp b/plugins/channelrx/demodwfm/wfmplugin.cpp index e4c6bdec7..c70084d8c 100644 --- a/plugins/channelrx/demodwfm/wfmplugin.cpp +++ b/plugins/channelrx/demodwfm/wfmplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor WFMPlugin::m_pluginDescriptor = { WFMDemod::m_channelId, QStringLiteral("WFM Demodulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/freqscanner/freqscannerplugin.cpp b/plugins/channelrx/freqscanner/freqscannerplugin.cpp index 2de89d36e..ea4ad9142 100644 --- a/plugins/channelrx/freqscanner/freqscannerplugin.cpp +++ b/plugins/channelrx/freqscanner/freqscannerplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = { FreqScanner::m_channelId, QStringLiteral("Frequency Scanner"), - QStringLiteral("7.22.10"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp index 5f42ea18b..ef4747600 100644 --- a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp +++ b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadioAstronomyPlugin::m_pluginDescriptor = { RadioAstronomy::m_channelId, QStringLiteral("Radio Astronomy"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/wdsprx/wdsprxplugin.cpp b/plugins/channelrx/wdsprx/wdsprxplugin.cpp index 0e1d8f9d1..bb6c03131 100644 --- a/plugins/channelrx/wdsprx/wdsprxplugin.cpp +++ b/plugins/channelrx/wdsprx/wdsprxplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor WDSPRxPlugin::m_pluginDescriptor = { WDSPRx::m_channelId, QStringLiteral("WDSP Receiver"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/moddatv/datvmodplugin.cpp b/plugins/channeltx/moddatv/datvmodplugin.cpp index 351d759c7..6ae5bbcfa 100644 --- a/plugins/channeltx/moddatv/datvmodplugin.cpp +++ b/plugins/channeltx/moddatv/datvmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { DATVMod::m_channelId, QStringLiteral("DATV Modulator"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/denoiser/denoiserplugin.cpp b/plugins/feature/denoiser/denoiserplugin.cpp index 4e46e1092..198d4feb8 100644 --- a/plugins/feature/denoiser/denoiserplugin.cpp +++ b/plugins/feature/denoiser/denoiserplugin.cpp @@ -27,7 +27,7 @@ const PluginDescriptor DenoiserPlugin::m_pluginDescriptor = { Denoiser::m_featureId, QStringLiteral("Denoiser"), - QStringLiteral("7.22.11"), + QStringLiteral("7.23.0"), 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 99d3f0d55..2c4ebeed1 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.10"), + QStringLiteral("7.23.0"), 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 edb625430..b70b8b151 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -34,7 +34,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/fileoutput/fileoutputplugin.cpp b/plugins/samplesink/fileoutput/fileoutputplugin.cpp index 4e934d9e8..c24d3253f 100644 --- a/plugins/samplesink/fileoutput/fileoutputplugin.cpp +++ b/plugins/samplesink/fileoutput/fileoutputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = { QStringLiteral("FileOutput"), QStringLiteral("File output"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp b/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp index 2fce5e1ee..c516c334e 100644 --- a/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp +++ b/plugins/samplesink/hackrfoutput/hackrfoutputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = { QStringLiteral("HackRF"), QStringLiteral("HackRF Output"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/testsink/testsinkplugin.cpp b/plugins/samplesink/testsink/testsinkplugin.cpp index 803980d53..c7bc56021 100644 --- a/plugins/samplesink/testsink/testsinkplugin.cpp +++ b/plugins/samplesink/testsink/testsinkplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor TestSinkPlugin::m_pluginDescriptor = { QStringLiteral("TestSink"), QStringLiteral("Test Sink Output"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp b/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp index af8b93c95..eacd92d0f 100644 --- a/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp +++ b/plugins/samplesource/hackrfinput/hackrfinputplugin.cpp @@ -33,7 +33,7 @@ const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = { QStringLiteral("HackRF"), QStringLiteral("HackRF Input"), - QStringLiteral("7.22.7"), + QStringLiteral("7.23.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,