1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

Updated versions and changelogs

This commit is contained in:
f4exb 2021-05-11 10:50:46 +02:00
parent 4a523edc8b
commit 93aefd6de3
8 changed files with 22 additions and 6 deletions

View File

@ -1,3 +1,11 @@
sdrangel (6.12.0-1) unstable; urgency=medium
* New AIS mod, demod and feature plugins. PR #891. Implements #858.
* PlutoSDR MIMO. Fixes in REST API
* Sat Tracker: catch TLE exception to avoid crash. PR #894.
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 11 May 2021 08:48:43 +0200
sdrangel (6.11.0-1) unstable; urgency=medium sdrangel (6.11.0-1) unstable; urgency=medium
* New PlutoSDR MIMO plugin for Pluto+. Implements #869. * New PlutoSDR MIMO plugin for Pluto+. Implements #869.

View File

@ -15,7 +15,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 "11") set(sdrangel_VERSION_MINOR "12")
set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_PATCH "0")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
sdrangel (6.12.0-1) unstable; urgency=medium
* New AIS mod, demod and feature plugins. PR #891. Implements #858.
* PlutoSDR MIMO. Fixes in REST API
* Sat Tracker: catch TLE exception to avoid crash. PR #894.
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 11 May 2021 08:48:43 +0200
sdrangel (6.11.0-1) unstable; urgency=medium sdrangel (6.11.0-1) unstable; urgency=medium
* New PlutoSDR MIMO plugin for Pluto+. Implements #869. * New PlutoSDR MIMO plugin for Pluto+. Implements #869.

View File

@ -29,7 +29,7 @@
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
AISDemod::m_channelId, AISDemod::m_channelId,
QStringLiteral("AIS Demodulator"), QStringLiteral("AIS Demodulator"),
QStringLiteral("6.11.1"), QStringLiteral("6.12.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor AISModPlugin::m_pluginDescriptor = { const PluginDescriptor AISModPlugin::m_pluginDescriptor = {
AISMod::m_channelId, AISMod::m_channelId,
QStringLiteral("AIS Modulator"), QStringLiteral("AIS Modulator"),
QStringLiteral("6.11.1"), QStringLiteral("6.12.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor AISPlugin::m_pluginDescriptor = { const PluginDescriptor AISPlugin::m_pluginDescriptor = {
AIS::m_featureId, AIS::m_featureId,
QStringLiteral("AIS"), QStringLiteral("AIS"),
QStringLiteral("6.11.1"), QStringLiteral("6.12.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor MapPlugin::m_pluginDescriptor = { const PluginDescriptor MapPlugin::m_pluginDescriptor = {
Map::m_featureId, Map::m_featureId,
QStringLiteral("Map"), QStringLiteral("Map"),
QStringLiteral("6.5.1"), QStringLiteral("6.12.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -31,7 +31,7 @@
const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = { const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"), QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR MIMO"), QStringLiteral("PlutoSDR MIMO"),
QStringLiteral("6.11.0"), QStringLiteral("6.12.0"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,