summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorf4exb <f4exb06@gmail.com>2024-06-06 22:10:04 +0200
committerf4exb <f4exb06@gmail.com>2024-06-06 22:10:04 +0200
commit1b2a549463c01659ff51f30bca80bcd27c986089 (patch)
treecc60dfca3d22059b02f2bc8c612eb5dc1bc56243
parent6989b769027470670de6c217f03ebb479bc29f69 (diff)
Updated versions and changelogsv7.21.2
-rw-r--r--CHANGELOG30
-rw-r--r--CMakeLists.txt2
-rw-r--r--debian/changelog30
-rw-r--r--plugins/channelrx/channelpower/channelpowerplugin.cpp2
-rw-r--r--plugins/channelrx/demodadsb/adsbplugin.cpp2
-rw-r--r--plugins/channelrx/demodchirpchat/chirpchatplugin.cpp2
-rw-r--r--plugins/channelrx/radioastronomy/radioastronomyplugin.cpp2
-rw-r--r--plugins/channeltx/modwfm/wfmmodplugin.cpp2
-rw-r--r--plugins/feature/morsedecoder/morsedecoderplugin.cpp2
-rw-r--r--plugins/feature/satellitetracker/satellitetrackerplugin.cpp2
-rw-r--r--plugins/feature/skymap/skymapplugin.cpp2
-rw-r--r--plugins/samplesink/audiooutput/audiooutputplugin.cpp2
-rw-r--r--plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp2
-rw-r--r--plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp2
-rw-r--r--plugins/samplesource/audioinput/audioinputplugin.cpp2
-rw-r--r--plugins/samplesource/sdrplay/sdrplayplugin.cpp2
-rw-r--r--plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp2
17 files changed, 75 insertions, 15 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2a8b0b02e..163f54b9d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+sdrangel (7.21.2-1) unstable; urgency=medium
+
+ * Morse Decoder feature: build for Windows. Issue #2152
+ * Satellite Tracker Settings: add missing help description of Replay tab, PR #2151
+ * Satellite Tracker Settings: update help page for new button. PR #2151
+ * Satellite Tracker Settings: add a button to reset the list of TLE. PR #2151
+ * Move defines to the header so they can be reused elsewhere. PR #2151
+ * Factor out the code that updates the widget containing the list of TLEs. PR #2151
+ * Use https for all addresses. PR #2151
+ * Set CMAKE_PREFIX_PATH to include ffmpeg@5. PR #2149
+ * Github mac CI: Try ffmpeg@5. PR #2149
+ * CUDAvkFFTEngine: Add required include.. PR #2149
+ * Fix memleaks. PR #2133
+ * Remove extra margins from some dialog. PR #2148
+ * SDRPlay v1: fix setting of hardware flavour. Fixes #2127
+ * Audio Input: list plugin as a built in device for multiple times instantiation. Fixes #2143
+ * Do not exit after listing available devices. Fixes #2144
+ * Fix and refactor FindSoapySDR.cmake. PR #2146
+ * Morse Decoder: returm to the original GGMorse library
+ * Fix WFM mod: remove feedback sink. PR #2138
+ * Fix ADSB demod: Message length. PR #2138
+ * Fix Sigmf Record: overwriting sigmf-data or sigmf-meta. PR #2136
+ * Highlight the current workspace and device. PR #2126
+ * Web API: Sort some files by name in the resources file. PR #2124
+ * Web API: Add missing files to resources file. PR #2124
+ * Install subversion for Mac build. PR #2123
+ * Fix ggmorse paths on ma. PR #2123
+
+ -- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Fri, 06 Jun 2024 20:09:11 +0200
+
sdrangel (7.21.1-1) unstable; urgency=medium
* Morse Decoder feature: Fix for Qt6 and Windows. PR #2122
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8130a9ae0..07f18ceac 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 "21")
-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 003b79eba..634e3d28a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,33 @@
+sdrangel (7.21.2-1) unstable; urgency=medium
+
+ * Morse Decoder feature: build for Windows. Issue #2152
+ * Satellite Tracker Settings: add missing help description of Replay tab, PR #2151
+ * Satellite Tracker Settings: update help page for new button. PR #2151
+ * Satellite Tracker Settings: add a button to reset the list of TLE. PR #2151
+ * Move defines to the header so they can be reused elsewhere. PR #2151
+ * Factor out the code that updates the widget containing the list of TLEs. PR #2151
+ * Use https for all addresses. PR #2151
+ * Set CMAKE_PREFIX_PATH to include ffmpeg@5. PR #2149
+ * Github mac CI: Try ffmpeg@5. PR #2149
+ * CUDAvkFFTEngine: Add required include.. PR #2149
+ * Fix memleaks. PR #2133
+ * Remove extra margins from some dialog. PR #2148
+ * SDRPlay v1: fix setting of hardware flavour. Fixes #2127
+ * Audio Input: list plugin as a built in device for multiple times instantiation. Fixes #2143
+ * Do not exit after listing available devices. Fixes #2144
+ * Fix and refactor FindSoapySDR.cmake. PR #2146
+ * Morse Decoder: returm to the original GGMorse library
+ * Fix WFM mod: remove feedback sink. PR #2138
+ * Fix ADSB demod: Message length. PR #2138
+ * Fix Sigmf Record: overwriting sigmf-data or sigmf-meta. PR #2136
+ * Highlight the current workspace and device. PR #2126
+ * Web API: Sort some files by name in the resources file. PR #2124
+ * Web API: Add missing files to resources file. PR #2124
+ * Install subversion for Mac build. PR #2123
+ * Fix ggmorse paths on ma. PR #2123
+
+ -- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Fri, 06 Jun 2024 20:09:11 +0200
+
sdrangel (7.21.1-1) unstable; urgency=medium
* Morse Decoder feature: Fix for Qt6 and Windows. PR #2122
diff --git a/plugins/channelrx/channelpower/channelpowerplugin.cpp b/plugins/channelrx/channelpower/channelpowerplugin.cpp
index 4bc59db2f..8bb18b930 100644
--- a/plugins/channelrx/channelpower/channelpowerplugin.cpp
+++ b/plugins/channelrx/channelpower/channelpowerplugin.cpp
@@ -29,7 +29,7 @@
const PluginDescriptor ChannelPowerPlugin::m_pluginDescriptor = {
ChannelPower::m_channelId,
QStringLiteral("Channel Power"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp
index d5f5e5d9d..88fcdd86d 100644
--- a/plugins/channelrx/demodadsb/adsbplugin.cpp
+++ b/plugins/channelrx/demodadsb/adsbplugin.cpp
@@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
index 89dc18908..bc18172c9 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.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp b/plugins/channelrx/radioastronomy/radioastronomyplugin.cpp
index 28f1395cc..a18024572 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.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/channeltx/modwfm/wfmmodplugin.cpp b/plugins/channeltx/modwfm/wfmmodplugin.cpp
index d587ad870..fcbe73cfa 100644
--- a/plugins/channeltx/modwfm/wfmmodplugin.cpp
+++ b/plugins/channeltx/modwfm/wfmmodplugin.cpp
@@ -32,7 +32,7 @@
const PluginDescriptor WFMModPlugin::m_pluginDescriptor = {
WFMMod::m_channelId,
QStringLiteral("WFM Modulator"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/feature/morsedecoder/morsedecoderplugin.cpp b/plugins/feature/morsedecoder/morsedecoderplugin.cpp
index 6db17bb98..f706c2c42 100644
--- a/plugins/feature/morsedecoder/morsedecoderplugin.cpp
+++ b/plugins/feature/morsedecoder/morsedecoderplugin.cpp
@@ -28,7 +28,7 @@
const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = {
MorseDecoder::m_featureId,
QStringLiteral("Morse Decoder"),
- QStringLiteral("7.21.1"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
index 4497e8c13..06906edda 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.21.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/feature/skymap/skymapplugin.cpp b/plugins/feature/skymap/skymapplugin.cpp
index c6ddc04f9..bad127b1d 100644
--- a/plugins/feature/skymap/skymapplugin.cpp
+++ b/plugins/feature/skymap/skymapplugin.cpp
@@ -34,7 +34,7 @@
const PluginDescriptor SkyMapPlugin::m_pluginDescriptor = {
SkyMap::m_featureId,
QStringLiteral("Sky Map"),
- QStringLiteral("7.21.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesink/audiooutput/audiooutputplugin.cpp b/plugins/samplesink/audiooutput/audiooutputplugin.cpp
index 47433c66b..843511f5f 100644
--- a/plugins/samplesink/audiooutput/audiooutputplugin.cpp
+++ b/plugins/samplesink/audiooutput/audiooutputplugin.cpp
@@ -31,7 +31,7 @@
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioOutput"),
QStringLiteral("Audio output"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp b/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp
index bef9d0546..c95e95659 100644
--- a/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp
+++ b/plugins/samplesink/soapysdroutput/soapysdroutputplugin.cpp
@@ -34,7 +34,7 @@
const PluginDescriptor SoapySDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("SoapySDR"),
QStringLiteral("SoapySDR Output"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp b/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp
index c02bf362d..c05d4470f 100644
--- a/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp
+++ b/plugins/samplesource/aaroniartsainput/aaroniartsainputplugin.cpp
@@ -33,7 +33,7 @@
const PluginDescriptor AaroniaRTSAInputPlugin::m_pluginDescriptor = {
QStringLiteral("AaroniaRTSA"),
QStringLiteral("AaroniaRTSA input"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesource/audioinput/audioinputplugin.cpp b/plugins/samplesource/audioinput/audioinputplugin.cpp
index f3647f964..1e278c11e 100644
--- a/plugins/samplesource/audioinput/audioinputplugin.cpp
+++ b/plugins/samplesource/audioinput/audioinputplugin.cpp
@@ -32,7 +32,7 @@
const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioInput"),
QStringLiteral("Audio Input"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesource/sdrplay/sdrplayplugin.cpp b/plugins/samplesource/sdrplay/sdrplayplugin.cpp
index e7169c609..46e8cdea5 100644
--- a/plugins/samplesource/sdrplay/sdrplayplugin.cpp
+++ b/plugins/samplesource/sdrplay/sdrplayplugin.cpp
@@ -32,7 +32,7 @@
const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = {
QStringLiteral("SDRPlay"),
QStringLiteral("SDRPlay RSP1 Input"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
diff --git a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
index 0f2709d74..b8ff9baf3 100644
--- a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
+++ b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
@@ -33,7 +33,7 @@
const PluginDescriptor SoapySDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("SoapySDR"),
QStringLiteral("SoapySDR Input"),
- QStringLiteral("7.20.0"),
+ QStringLiteral("7.21.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,