Updated versions and changelogs

This commit is contained in:
f4exb 2021-09-05 22:40:56 +02:00
parent b0c35d22b8
commit 611171234a
6 changed files with 30 additions and 4 deletions

View File

@ -1,3 +1,16 @@
sdrangel (6.16.5-1) unstable; urgency=medium
* API: added PUT, PATCH, POST /sdrangel/featureset/{featureSetIndex}/preset. Issue #998.
* API: added GET /sdrangel/featurepresets and DELETE /sdrangel/featurepreset. Issue #998.
* API: added feature sets in the instance summary
* API: added /sdrangel/features (GET) to get the list of available feature plugins
* SDRplay V3: fixes for API
* Satellite Tracker: fixed compilation in server mode. Fixes #996
* Satellite Tracker: various enhancements. PR #997.
* APT demod: API: fixed APT demod settings mappings. Fixes #995
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 05 Sep 2021 20:27:06 +0200
sdrangel (6.16.4-1) unstable; urgency=medium sdrangel (6.16.4-1) unstable; urgency=medium
* API: fixed GET /sdrangel/featuresets * API: fixed GET /sdrangel/featuresets

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 "16") set(sdrangel_VERSION_MINOR "16")
set(sdrangel_VERSION_PATCH "4") set(sdrangel_VERSION_PATCH "5")
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.16.5-1) unstable; urgency=medium
* API: added PUT, PATCH, POST /sdrangel/featureset/{featureSetIndex}/preset. Issue #998.
* API: added GET /sdrangel/featurepresets and DELETE /sdrangel/featurepreset. Issue #998.
* API: added feature sets in the instance summary
* API: added /sdrangel/features (GET) to get the list of available feature plugins
* SDRplay V3: fixes for API
* Satellite Tracker: fixed compilation in server mode. Fixes #996
* Satellite Tracker: various enhancements. PR #997.
* APT demod: API: fixed APT demod settings mappings. Fixes #995
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 05 Sep 2021 20:27:06 +0200
sdrangel (6.16.4-1) unstable; urgency=medium sdrangel (6.16.4-1) unstable; urgency=medium
* API: fixed GET /sdrangel/featuresets * API: fixed GET /sdrangel/featuresets

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.15.0"), QStringLiteral("6.16.5"),
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

@ -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.16.2"), QStringLiteral("6.16.5"),
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

@ -32,7 +32,7 @@
const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3"),
QStringLiteral("SDRPlayV3 Input"), QStringLiteral("SDRPlayV3 Input"),
QStringLiteral("6.16.0"), QStringLiteral("6.16.5"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,