diff --git a/CHANGELOG b/CHANGELOG index b0ded9fff..d725e29b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +sdrangel (6.10.2-1) unstable; urgency=medium + + * Satellite and Star tracker plugins: dark theme option for charts as default + * Spectrum: increase maximum FFT size to 32k + * Change delete order of channel and GUI. Fixes #860 + * APT demod: moved processPixels process to a separate thread. Implements #865 + * APT demod optimization: do a full image process only every 20 lines + * DAB/DAB+ demod: added images in GUI and various fixes. PR #866 + * DAB/DAB+ demod: fixed right-click audio selection. PR #856 fixes #853 + * SampleSinkFIFO: read/write return immediately if size is zero. Fixes #868 + + -- Edouard Griffiths, F4EXB Sun, 25 Apr 2021 19:01:51 +0200 + sdrangel (6.10.1-1) unstable; urgency=medium * DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853 diff --git a/CMakeLists.txt b/CMakeLists.txt index 50b7e9e58..443665c31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MINOR "10") -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 2c872710e..70773b256 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sdrangel (6.10.2-1) unstable; urgency=medium + + * Satellite and Star tracker plugins: dark theme option for charts as default + * Spectrum: increase maximum FFT size to 32k + * Change delete order of channel and GUI. Fixes #860 + * APT demod: moved processPixels process to a separate thread. Implements #865 + * APT demod optimization: do a full image process only every 20 lines + * DAB/DAB+ demod: added images in GUI and various fixes. PR #866 + * DAB/DAB+ demod: fixed right-click audio selection. PR #856 fixes #853 + * SampleSinkFIFO: read/write return immediately if size is zero. Fixes #868 + + -- Edouard Griffiths, F4EXB Sun, 25 Apr 2021 19:01:51 +0200 + sdrangel (6.10.1-1) unstable; urgency=medium * DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853 diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp index fb8a2a163..8618ac07a 100644 --- a/plugins/channelrx/demodapt/aptdemodplugin.cpp +++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = { APTDemod::m_channelId, QStringLiteral("APT Demodulator"), - QStringLiteral("6.6.0"), + QStringLiteral("6.10.2"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddab/dabdemodplugin.cpp b/plugins/channelrx/demoddab/dabdemodplugin.cpp index 787614d44..d5121da64 100644 --- a/plugins/channelrx/demoddab/dabdemodplugin.cpp +++ b/plugins/channelrx/demoddab/dabdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = { DABDemod::m_channelId, QStringLiteral("DAB Demodulator"), - QStringLiteral("6.10.0"), + QStringLiteral("6.10.2"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index 8238bd3ac..199338f9f 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("6.8.0"), + QStringLiteral("6.10.2"), 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 8b7df695a..44030b6c4 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("6.5.1"), + QStringLiteral("6.10.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,