diff --git a/CHANGELOG b/CHANGELOG index 68210ec55..6afade98c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +sdrangel (6.15.1-1) unstable; urgency=medium + + * Demod Analyzer: fixed sample rate handling. Fixes #931 + * Enable LimeRFE on Windows. PR #942 + * Demod Analyzer: allow complex input. Fixes #932 + * Noise Figure: compile only if Boost >= 1.70.0. Fixes #943 + * Update airspyhf library to latest version to fix #928. PR #945 + * Save and restore position and size of main window. Fixes #89. PR #946 + * SatelliteTracker: Web API fixes. Fixes #948. PR #949 + * Fixes to web API request mapper. PR #950 + * Web API doc: added missing doc swagger yaml files + + -- Edouard Griffiths, F4EXB Sun, 04 Jul 2021 03:28:04 +0200 + sdrangel (6.15.0-1) unstable; urgency=medium * New Radio Clock plugin. PRs #394, #936 and #939 diff --git a/CMakeLists.txt b/CMakeLists.txt index ad4b1c87c..25b38934a 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 "15") -set(sdrangel_VERSION_PATCH "0") +set(sdrangel_VERSION_PATCH "1") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index fc336bd4b..251786454 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +sdrangel (6.15.1-1) unstable; urgency=medium + + * Demod Analyzer: fixed sample rate handling. Fixes #931 + * Enable LimeRFE on Windows. PR #942 + * Demod Analyzer: allow complex input. Fixes #932 + * Noise Figure: compile only if Boost >= 1.70.0. Fixes #943 + * Update airspyhf library to latest version to fix #928. PR #945 + * Save and restore position and size of main window. Fixes #89. PR #946 + * SatelliteTracker: Web API fixes. Fixes #948. PR #949 + * Fixes to web API request mapper. PR #950 + * Web API doc: added missing doc swagger yaml files + + -- Edouard Griffiths, F4EXB Sun, 04 Jul 2021 03:28:04 +0200 + sdrangel (6.15.0-1) unstable; urgency=medium * New Radio Clock plugin. PRs #394, #936 and #939 diff --git a/plugins/channelrx/noisefigure/noisefigureplugin.cpp b/plugins/channelrx/noisefigure/noisefigureplugin.cpp index 3725ffb22..8f26c18c7 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("6.14.0"), + QStringLiteral("6.15.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index ba3c359a9..7745543f2 100644 --- a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp @@ -1,4 +1,4 @@ -/////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2020 Edouard Griffiths, F4EXB // // // // This program is free software; you can redistribute it and/or modify // @@ -29,7 +29,7 @@ const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { DemodAnalyzer::m_featureId, QStringLiteral("Demod Analyzer"), - QStringLiteral("6.14.0"), + QStringLiteral("6.15.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index 558441975..5fe498361 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.13.0"), + QStringLiteral("6.15.1"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,