diff --git a/CHANGELOG b/CHANGELOG index 6fbcfd982..98bec6145 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,18 @@ +sdrangel (7.10.0-1) unstable; urgency=medium + + - Copy fftw3f and libusb dlls to bin directory. PR #1503 + - Removed unncecessary call to updateChannels in VORLocalizer and DemodAnalyzer. Fixes #1572 + - TestSource: use queued connection for connecting worker's deleteLater. Fixes possible crash on exit + - FT8 support: corrected possible code glitch + - DSD demod: disable audio for YSF wide mode if AMBE feature is active. Fixes #1587 + - Fix SDRplay RSPdx LNA table, to have correct number of entries, for #1532. PR #1591 + - Heat Map Rx channel plugin. Changes to Map. PR #1600 + - Autostack: Fix channel windows being made to wide when SDRangel starts. PR #1601 + - Android: Prevent app from being put to sleep when running. Add menu to keep screen on. PR #1602 + - SSB demod GUI: display channel marker in correct stream if connected to a MIMO device + + -- Edouard Griffiths, F4EXB Wed, 23 Feb 2023 23:59:54 +0100 + sdrangel (7.9.0-1) unstable; urgency=medium - FT8 demodulator. Implements #1561 diff --git a/CMakeLists.txt b/CMakeLists.txt index 9727f5e31..d0c525d6a 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 "9") +set(sdrangel_VERSION_MINOR "10") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index ae7d0d286..5eb1829e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +sdrangel (7.10.0-1) unstable; urgency=medium + + - Copy fftw3f and libusb dlls to bin directory. PR #1503 + - Removed unncecessary call to updateChannels in VORLocalizer and DemodAnalyzer. Fixes #1572 + - TestSource: use queued connection for connecting worker's deleteLater. Fixes possible crash on exit + - FT8 support: corrected possible code glitch + - DSD demod: disable audio for YSF wide mode if AMBE feature is active. Fixes #1587 + - Fix SDRplay RSPdx LNA table, to have correct number of entries, for #1532. PR #1591 + - Heat Map Rx channel plugin. Changes to Map. PR #1600 + - Autostack: Fix channel windows being made to wide when SDRangel starts. PR #1601 + - Android: Prevent app from being put to sleep when running. Add menu to keep screen on. PR #1602 + - SSB demod GUI: display channel marker in correct stream if connected to a MIMO device + + -- Edouard Griffiths, F4EXB Wed, 23 Feb 2023 23:59:54 +0100 + sdrangel (7.9.0-1) unstable; urgency=medium - FT8 demodulator. Implements #1561 diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index b35ae17fc..00daed3f0 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.8.0"), + QStringLiteral("7.10.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodft8/ft8plugin.cpp b/plugins/channelrx/demodft8/ft8plugin.cpp index 3d4255eac..e9beca3ba 100644 --- a/plugins/channelrx/demodft8/ft8plugin.cpp +++ b/plugins/channelrx/demodft8/ft8plugin.cpp @@ -12,7 +12,7 @@ const PluginDescriptor FT8Plugin::m_pluginDescriptor = { FT8Demod::m_channelId, QStringLiteral("FT8 Demodulator"), - QStringLiteral("7.9.0"), + QStringLiteral("7.10.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 cf5f9b61a..93de05612 100644 --- a/plugins/channelrx/demodssb/ssbplugin.cpp +++ b/plugins/channelrx/demodssb/ssbplugin.cpp @@ -12,7 +12,7 @@ const PluginDescriptor SSBPlugin::m_pluginDescriptor = { SSBDemod::m_channelId, QStringLiteral("SSB Demodulator"), - QStringLiteral("7.8.6"), + QStringLiteral("7.10.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index c1e5d1b68..a168e97d8 100644 --- a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { DemodAnalyzer::m_featureId, QStringLiteral("Demod Analyzer"), - QStringLiteral("7.8.4"), + QStringLiteral("7.10.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 035f5bcc1..4260996f2 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.9.0"), + QStringLiteral("7.10.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 ea205ca25..ea8a81fd1 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.8.4"), + QStringLiteral("7.10.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index 4ca8ddbf0..3211baabd 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("7.9.0"), + QStringLiteral("7.10.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/testsource/testsourceplugin.cpp b/plugins/samplesource/testsource/testsourceplugin.cpp index 90883ee32..7ed6537f5 100644 --- a/plugins/samplesource/testsource/testsourceplugin.cpp +++ b/plugins/samplesource/testsource/testsourceplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = { QStringLiteral("TestSource"), QStringLiteral("Test Source input"), - QStringLiteral("7.8.2"), + QStringLiteral("7.10.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,