From d67aac3b277080fa697b8a0eaa47c0de5f5c0597 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 18 Mar 2023 13:45:42 +0100 Subject: [PATCH] Updated version and changelogs --- CHANGELOG | 18 ++++++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 18 ++++++++++++++++++ plugins/channelrx/demoddsd/dsddemodplugin.cpp | 2 +- plugins/channelrx/demodvor/vordemodplugin.cpp | 2 +- plugins/channelrx/heatmap/heatmapplugin.cpp | 2 +- .../noisefigure/noisefigureplugin.cpp | 2 +- plugins/feature/map/mapplugin.cpp | 2 +- .../vorlocalizer/vorlocalizerplugin.cpp | 2 +- .../audioinput/audioinputplugin.cpp | 2 +- 10 files changed, 44 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 98bec6145..34b6516ce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +sdrangel (7.11.0-1) unstable; urgency=medium + + - New RTTY and Navtex demods. PR #1610 + - Noise figure: Fix saving of power on command. PR #1604 + - Disable MSAA for 2D maps by default. PR #1604 + - Fix Heat Map Display Chart Seg Fault. Fixes #1606. PR #1607 + - Prevent MDI scrolling when trying to zoom in on spectrum PR #1611 + - VOR Demod: Improve filtering for voice over ident. Issue #1590. PR #1615 + - Fix DSD Demod crash on exit Fixes #1617. PR #1618 + - Fix updateVORs so it doesn't delete selected VORs. Issue #1590. PR #1619 + - Set timer to be precise before calling start, otherwise it is ignored on Windows. PR #1626 + - Audio inout: added DC block and IQ imbalance + - Audio input: Added Fc control + - MainWindow: disconnect prior to connect in device re-numeration. Fixes #1620 + - Fixing errors when compiling using qt6. Fixes #1625. PR #1629 + + -- Edouard Griffiths, F4EXB Sat, 18 Mar 2023 12:41:20 +0100 + sdrangel (7.10.0-1) unstable; urgency=medium - Copy fftw3f and libusb dlls to bin directory. PR #1503 diff --git a/CMakeLists.txt b/CMakeLists.txt index 06a5e838d..89e77d5d0 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 "10") +set(sdrangel_VERSION_MINOR "11") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index 5eb1829e6..e268b42a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +sdrangel (7.11.0-1) unstable; urgency=medium + + - New RTTY and Navtex demods. PR #1610 + - Noise figure: Fix saving of power on command. PR #1604 + - Disable MSAA for 2D maps by default. PR #1604 + - Fix Heat Map Display Chart Seg Fault. Fixes #1606. PR #1607 + - Prevent MDI scrolling when trying to zoom in on spectrum PR #1611 + - VOR Demod: Improve filtering for voice over ident. Issue #1590. PR #1615 + - Fix DSD Demod crash on exit Fixes #1617. PR #1618 + - Fix updateVORs so it doesn't delete selected VORs. Issue #1590. PR #1619 + - Set timer to be precise before calling start, otherwise it is ignored on Windows. PR #1626 + - Audio inout: added DC block and IQ imbalance + - Audio input: Added Fc control + - MainWindow: disconnect prior to connect in device re-numeration. Fixes #1620 + - Fixing errors when compiling using qt6. Fixes #1625. PR #1629 + + -- Edouard Griffiths, F4EXB Sat, 18 Mar 2023 12:41:20 +0100 + sdrangel (7.10.0-1) unstable; urgency=medium - Copy fftw3f and libusb dlls to bin directory. PR #1503 diff --git a/plugins/channelrx/demoddsd/dsddemodplugin.cpp b/plugins/channelrx/demoddsd/dsddemodplugin.cpp index 04a133bc3..21054ea63 100644 --- a/plugins/channelrx/demoddsd/dsddemodplugin.cpp +++ b/plugins/channelrx/demoddsd/dsddemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { DSDDemod::m_channelId, QStringLiteral("DSD Demodulator"), - QStringLiteral("7.8.1"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodvor/vordemodplugin.cpp b/plugins/channelrx/demodvor/vordemodplugin.cpp index 7e599641c..b2e1410c1 100644 --- a/plugins/channelrx/demodvor/vordemodplugin.cpp +++ b/plugins/channelrx/demodvor/vordemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = { VORDemod::m_channelId, QStringLiteral("VOR Demodulator"), - QStringLiteral("7.0.0"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/heatmap/heatmapplugin.cpp b/plugins/channelrx/heatmap/heatmapplugin.cpp index fb7429542..13e0bbeea 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.10.0"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/noisefigure/noisefigureplugin.cpp b/plugins/channelrx/noisefigure/noisefigureplugin.cpp index 45728ddea..96c1539a6 100644 --- a/plugins/channelrx/noisefigure/noisefigureplugin.cpp +++ b/plugins/channelrx/noisefigure/noisefigureplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = { NoiseFigure::m_channelId, QStringLiteral("Noise Figure"), - QStringLiteral("7.10.1"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 4260996f2..de6d2d7a0 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("7.10.0"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp index ea8a81fd1..8d5c6e250 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("7.10.0"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/audioinput/audioinputplugin.cpp b/plugins/samplesource/audioinput/audioinputplugin.cpp index 7df779f16..6d053df95 100644 --- a/plugins/samplesource/audioinput/audioinputplugin.cpp +++ b/plugins/samplesource/audioinput/audioinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = { QStringLiteral("AudioInput"), QStringLiteral("Audio Input"), - QStringLiteral("7.9.0"), + QStringLiteral("7.11.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,