diff --git a/CHANGELOG b/CHANGELOG index d725e29b3..e7963eb6b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (6.10.3-1) unstable; urgency=medium + + * Satellite tracker plugin: Fixed memory leaks. PR #979, Fixes #877. + * More memory leak fixes in some plugins. PR #879. + * Revision of mutex locks in FIFOs. Fixes #870. + * DAB: Use UTF-8 rather than latin encoding for program names. Fixes #874. + * DAB: Use latest DAB lib API. Don't write MOT data to files. PR #880 + + -- Edouard Griffiths, F4EXB Sat, 01 May 2021 09:03:34 +0200 + sdrangel (6.10.2-1) unstable; urgency=medium * Satellite and Star tracker plugins: dark theme option for charts as default diff --git a/CMakeLists.txt b/CMakeLists.txt index 443665c31..7ef67bf1b 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 "2") +set(sdrangel_VERSION_PATCH "3") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 70773b256..61328cf41 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (6.10.3-1) unstable; urgency=medium + + * Satellite tracker plugin: Fixed memory leaks. PR #979, Fixes #877. + * More memory leak fixes in some plugins. PR #879. + * Revision of mutex locks in FIFOs. Fixes #870. + * DAB: Use UTF-8 rather than latin encoding for program names. Fixes #874. + * DAB: Use latest DAB lib API. Don't write MOT data to files. PR #880 + + -- Edouard Griffiths, F4EXB Sat, 01 May 2021 09:03:34 +0200 + sdrangel (6.10.2-1) unstable; urgency=medium * Satellite and Star tracker plugins: dark theme option for charts as default diff --git a/plugins/channelrx/demoddab/dabdemodplugin.cpp b/plugins/channelrx/demoddab/dabdemodplugin.cpp index d5121da64..c443dc39a 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.2"), + QStringLiteral("6.10.3"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpacket/packetdemodplugin.cpp b/plugins/channelrx/demodpacket/packetdemodplugin.cpp index e0f770d16..a9fc9db8c 100644 --- a/plugins/channelrx/demodpacket/packetdemodplugin.cpp +++ b/plugins/channelrx/demodpacket/packetdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = { PacketDemod::m_channelId, QStringLiteral("Packet Demodulator"), - QStringLiteral("6.8.0"), + QStringLiteral("6.10.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp index 20fb5b111..47fd1709e 100644 --- a/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp +++ b/plugins/channeltx/mod802.15.4/ieee_802_15_4_modplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = { IEEE_802_15_4_Mod::m_channelId, QStringLiteral("802.15.4 Modulator"), - QStringLiteral("6.8.0"), + QStringLiteral("6.10.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/moddatv/datvmodplugin.cpp b/plugins/channeltx/moddatv/datvmodplugin.cpp index f51566e5e..d915f1598 100644 --- a/plugins/channeltx/moddatv/datvmodplugin.cpp +++ b/plugins/channeltx/moddatv/datvmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { DATVMod::m_channelId, QStringLiteral("DATV Modulator"), - QStringLiteral("6.10.0"), + QStringLiteral("6.10.3"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index 199338f9f..e4bee59ce 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.10.2"), + QStringLiteral("6.10.3s"), 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 44030b6c4..5d5029454 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.10.2"), + QStringLiteral("6.10.3"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,