Updated versions and changelogs

This commit is contained in:
f4exb 2022-02-20 22:37:25 +01:00
parent 8e79cd7ff2
commit 308ffcad54
12 changed files with 42 additions and 10 deletions

View File

@ -1,3 +1,19 @@
sdrangel (6.19.1-1) unstable; urgency=medium
* Fix stereo sound in DAB demod. PR #1150.
* Make Channel API inherit from QObject. Issue #1147
* Channel Analyzer: fixed reverse API handling and a few other things. Fixes #1144
* Metis MISO: set spectrum sink input back in GUI. Fixes #1145
* DATV Demod - Increase max RF bandwidth in GUI to 50MHz. PR #1142. Issue #1136.
* DATV Mod - Increase RF bandwidth slider to 50M. PR #1137. Issue #1136
* Spectrum markers update. PR #1141
* Pager demod: fixed typo in POCSAG. Fixes #1138
* Metis MISO: save stream and spectrum stream indices in settings. Fixes #1126
* Map feature, ADSB and AIS demods updates. PR #1135
* Do not write tail audio samples and write to sample buffer only if necessary. Issue #1132
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 20 Feb 2022 21:31:55 +0100
sdrangel (6.19.0-1) unstable; urgency=medium
* Map: added 3D to map feature. PR #1127

View File

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

16
debian/changelog vendored
View File

@ -1,3 +1,19 @@
sdrangel (6.19.1-1) unstable; urgency=medium
* Fix stereo sound in DAB demod. PR #1150.
* Make Channel API inherit from QObject. Issue #1147
* Channel Analyzer: fixed reverse API handling and a few other things. Fixes #1144
* Metis MISO: set spectrum sink input back in GUI. Fixes #1145
* DATV Demod - Increase max RF bandwidth in GUI to 50MHz. PR #1142. Issue #1136.
* DATV Mod - Increase RF bandwidth slider to 50M. PR #1137. Issue #1136
* Spectrum markers update. PR #1141
* Pager demod: fixed typo in POCSAG. Fixes #1138
* Metis MISO: save stream and spectrum stream indices in settings. Fixes #1126
* Map feature, ADSB and AIS demods updates. PR #1135
* Do not write tail audio samples and write to sample buffer only if necessary. Issue #1132
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 20 Feb 2022 21:31:55 +0100
sdrangel (6.19.0-1) unstable; urgency=medium
* Map: added 3D to map feature. PR #1127

View File

@ -26,7 +26,7 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId,
QStringLiteral("Channel Analyzer"),
QStringLiteral("6.18.0"),
QStringLiteral("6.19.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
QStringLiteral("6.19.0"),
QStringLiteral("6.19.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

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

View File

@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
{
DATVDemod::m_channelId,
QString("DATV Demodulator"),
QString("6.19.0"),
QString("6.19.1"),
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
QString("https://github.com/f4exb/sdrangel"),
true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
PagerDemod::m_channelId,
QStringLiteral("Pager Demodulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.19.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor DATVModPlugin::m_pluginDescriptor = {
DATVMod::m_channelId,
QStringLiteral("DATV Modulator"),
QStringLiteral("6.18.0"),
QStringLiteral("6.19.1"),
QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

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

View File

@ -32,7 +32,7 @@
const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
QStringLiteral("MetisMISO"),
QStringLiteral("Metis MISO"),
QStringLiteral("6.18.1"),
QStringLiteral("6.19.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,