1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Updated versions and chagnelogs

This commit is contained in:
f4exb 2021-04-25 21:33:06 +02:00
parent e8dec5db83
commit 37a5bf3395
7 changed files with 31 additions and 5 deletions

View File

@ -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 <f4exb06@gmail.com> Sun, 25 Apr 2021 19:01:51 +0200
sdrangel (6.10.1-1) unstable; urgency=medium sdrangel (6.10.1-1) unstable; urgency=medium
* DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853 * DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853

View File

@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version # configure version
set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MAJOR "6")
set(sdrangel_VERSION_MINOR "10") set(sdrangel_VERSION_MINOR "10")
set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_PATCH "2")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options # SDRAngel cmake options

13
debian/changelog vendored
View File

@ -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 <f4exb06@gmail.com> Sun, 25 Apr 2021 19:01:51 +0200
sdrangel (6.10.1-1) unstable; urgency=medium sdrangel (6.10.1-1) unstable; urgency=medium
* DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853 * DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853

View File

@ -29,7 +29,7 @@
const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = { const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
APTDemod::m_channelId, APTDemod::m_channelId,
QStringLiteral("APT Demodulator"), QStringLiteral("APT Demodulator"),
QStringLiteral("6.6.0"), QStringLiteral("6.10.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = {
DABDemod::m_channelId, DABDemod::m_channelId,
QStringLiteral("DAB Demodulator"), QStringLiteral("DAB Demodulator"),
QStringLiteral("6.10.0"), QStringLiteral("6.10.2"),
QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
SatelliteTracker::m_featureId, SatelliteTracker::m_featureId,
QStringLiteral("Satellite Tracker"), QStringLiteral("Satellite Tracker"),
QStringLiteral("6.8.0"), QStringLiteral("6.10.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = {
StarTracker::m_featureId, StarTracker::m_featureId,
QStringLiteral("Star Tracker"), QStringLiteral("Star Tracker"),
QStringLiteral("6.5.1"), QStringLiteral("6.10.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,