mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-13 03:41:47 -05:00
Updated versions and changelogs
This commit is contained in:
parent
4d5958f630
commit
1d87e1e051
13
CHANGELOG
13
CHANGELOG
@ -1,3 +1,16 @@
|
||||
sdrangel (7.21.0-1) unstable; urgency=medium
|
||||
|
||||
* Morse decoder feature. Implements #2112
|
||||
* Fix crash quitting sdrangel when the SID window is open. PR #2121. Fixes #2119
|
||||
* SSB demod: apply clamping also when squelch opens
|
||||
* Remove unneeded calls to disconnect signals. PR #2120
|
||||
* Fix memleaks. PR #2120 PR #2058.
|
||||
* Do not create objects if there is no message queue to send to. PR #2058.
|
||||
* Do not create a Message if there is no worker to send to. PT #2058
|
||||
* Add cmake option to optionally compile with LeakSanitizer. PR #2058
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 23 May 2024 22:18:08 +0200
|
||||
|
||||
sdrangel (7.20.1-1) unstable; urgency=medium
|
||||
|
||||
* Fix Qt6 build. PR #2069
|
||||
|
@ -19,8 +19,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "20")
|
||||
set(sdrangel_VERSION_PATCH "1")
|
||||
set(sdrangel_VERSION_MINOR "21")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
|
13
debian/changelog
vendored
13
debian/changelog
vendored
@ -1,3 +1,16 @@
|
||||
sdrangel (7.21.0-1) unstable; urgency=medium
|
||||
|
||||
* Morse decoder feature. Implements #2112
|
||||
* Fix crash quitting sdrangel when the SID window is open. PR #2121. Fixes #2119
|
||||
* SSB demod: apply clamping also when squelch opens
|
||||
* Remove unneeded calls to disconnect signals. PR #2120
|
||||
* Fix memleaks. PR #2120 PR #2058.
|
||||
* Do not create objects if there is no message queue to send to. PR #2058.
|
||||
* Do not create a Message if there is no worker to send to. PT #2058
|
||||
* Add cmake option to optionally compile with LeakSanitizer. PR #2058
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 23 May 2024 22:18:08 +0200
|
||||
|
||||
sdrangel (7.20.1-1) unstable; urgency=medium
|
||||
|
||||
* Fix Qt6 build. PR #2069
|
||||
|
@ -33,7 +33,7 @@
|
||||
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
||||
SSBDemod::m_channelId,
|
||||
QStringLiteral("SSB Demodulator"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor AFCPlugin::m_pluginDescriptor = {
|
||||
AFC::m_featureId,
|
||||
QStringLiteral("AFC"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
|
||||
DemodAnalyzer::m_featureId,
|
||||
QStringLiteral("Demod Analyzer"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
|
||||
GS232Controller::m_featureId,
|
||||
QStringLiteral("Rotator Controller"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
|
||||
Map::m_featureId,
|
||||
QStringLiteral("Map"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = {
|
||||
PERTester::m_featureId,
|
||||
QStringLiteral("Packet Error Rate Tester"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
|
||||
SatelliteTracker::m_featureId,
|
||||
QStringLiteral("Satellite Tracker"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor SIDPlugin::m_pluginDescriptor = {
|
||||
SIDMain::m_featureId,
|
||||
QStringLiteral("SID"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor SkyMapPlugin::m_pluginDescriptor = {
|
||||
SkyMap::m_featureId,
|
||||
QStringLiteral("Sky Map"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -34,7 +34,7 @@
|
||||
const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = {
|
||||
StarTracker::m_featureId,
|
||||
QStringLiteral("Star Tracker"),
|
||||
QStringLiteral("7.20.0"),
|
||||
QStringLiteral("7.21.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user