From cf0489d96f58a07b3e5329ae8dc7e5a1402de8ea Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 1 Apr 2023 13:42:53 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 13 +++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 13 +++++++++++++ plugins/channelrx/demoddatv/datvdemodplugin.cpp | 2 +- plugins/channelrx/heatmap/heatmapplugin.cpp | 2 +- .../radioastronomy/radioastronomyplugin.cpp | 2 +- .../gs232controller/gs232controllerplugin.cpp | 2 +- .../satellitetracker/satellitetrackerplugin.cpp | 2 +- plugins/feature/startracker/startrackerplugin.cpp | 2 +- 9 files changed, 33 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 34b6516ce..7a0ce4d3a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +sdrangel (7.12.0-1) unstable; urgency=medium + + - New ILS demod plugin. PR #1635 + - Heatmap: added 10 MS/s and fixed bandwidth limit. PR #1638 + - Correct settings keys for Satellite Tracker settings dialog. Fixes #1642. PR #1643 + - Add UTC data time in radiometerand more. Fix #1640. PR #1644 + - DATV demod: processing optimizations + - Add missing setting ket in Rotator Controller. Fix #1642. PR #1645 + - Fix missing GUI connections in Radio Astronomy plugin. Scan for features on startup. PR #1646 + - Fix settings keys in Star Tracker (Rename to settings to match). PR #1646 + + -- Edouard Griffiths, F4EXB Sat, 01 Apr 2023 11:39:53 +0200 + sdrangel (7.11.0-1) unstable; urgency=medium - New RTTY and Navtex demods. PR #1610 diff --git a/CMakeLists.txt b/CMakeLists.txt index f94d445c9..eee94db4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "11") +set(sdrangel_VERSION_MINOR "12") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index e268b42a7..bfecb8c47 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sdrangel (7.12.0-1) unstable; urgency=medium + + - New ILS demod plugin. PR #1635 + - Heatmap: added 10 MS/s and fixed bandwidth limit. PR #1638 + - Correct settings keys for Satellite Tracker settings dialog. Fixes #1642. PR #1643 + - Add UTC data time in radiometerand more. Fix #1640. PR #1644 + - DATV demod: processing optimizations + - Add missing setting ket in Rotator Controller. Fix #1642. PR #1645 + - Fix missing GUI connections in Radio Astronomy plugin. Scan for features on startup. PR #1646 + - Fix settings keys in Star Tracker (Rename to settings to match). PR #1646 + + -- Edouard Griffiths, F4EXB Sat, 01 Apr 2023 11:39:53 +0200 + sdrangel (7.11.0-1) unstable; urgency=medium - New RTTY and Navtex demods. PR #1610 diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index cd474f86c..1d599a9fb 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QStringLiteral("DATV Demodulator"), - QStringLiteral("7.8.1"), + QStringLiteral("7.12.0"), QStringLiteral("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index 13e0bbeea..9516c3bb7 100644 --- a/plugins/channelrx/heatmap/heatmapplugin.cpp +++ b/plugins/channelrx/heatmap/heatmapplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = { HeatMap::m_channelId, QStringLiteral("Heat Map"), - QStringLiteral("7.11.0"), + QStringLiteral("7.12.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 aedaafc89..c791b4134 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.8.0"), + QStringLiteral("7.12.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index 5a72b26b9..0945ff734 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("7.8.4"), + QStringLiteral("7.12.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 cb190d236..32350c320 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("7.8.4"), + QStringLiteral("7.12.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp index 6b09fce21..c8b3f147e 100644 --- a/plugins/feature/startracker/startrackerplugin.cpp +++ b/plugins/feature/startracker/startrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { StarTracker::m_featureId, QStringLiteral("Star Tracker"), - QStringLiteral("7.8.4"), + QStringLiteral("7.12.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,