Updated version and changelogs

This commit is contained in:
f4exb 2020-06-27 10:52:43 +02:00
parent 48e3a2808e
commit b7284b6b5c
7 changed files with 21 additions and 5 deletions

View File

@ -1,3 +1,11 @@
sdrangel (4.14.12-1) unstable; urgency=medium
* RTL-SDR: Bias tee support. Implements #533
* Frequency tracker: added tracking delta frequency in API report. Implements #550
* Local sink: added decoupling FIFO. Implements #549
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 27 Jun 2020 08:50:27 +0200
sdrangel (4.14.11-1) unstable; urgency=medium sdrangel (4.14.11-1) unstable; urgency=medium
* I/Q swap option on transverter. Implements #493 * I/Q swap option on transverter. Implements #493

View File

@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
# configure version # configure version
set(sdrangel_VERSION_MAJOR "4") set(sdrangel_VERSION_MAJOR "4")
set(sdrangel_VERSION_MINOR "14") set(sdrangel_VERSION_MINOR "14")
set(sdrangel_VERSION_PATCH "11") set(sdrangel_VERSION_PATCH "12")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options # SDRAngel cmake options

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
sdrangel (4.14.12-1) unstable; urgency=medium
* RTL-SDR: Bias tee support. Implements #533
* Frequency tracker: added tracking delta frequency in API report. Implements #550
* Local sink: added decoupling FIFO. Implements #549
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 27 Jun 2020 08:50:27 +0200
sdrangel (4.14.11-1) unstable; urgency=medium sdrangel (4.14.11-1) unstable; urgency=medium
* I/Q swap option on transverter. Implements #493 * I/Q swap option on transverter. Implements #493

View File

@ -28,7 +28,7 @@
const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = { const PluginDescriptor FreqTrackerPlugin::m_pluginDescriptor = {
FreqTracker::m_channelId, FreqTracker::m_channelId,
QString("Frequency Tracker"), QString("Frequency Tracker"),
QString("4.12.3"), QString("4.14.12"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = { const PluginDescriptor LocalSinkPlugin::m_pluginDescriptor = {
LocalSink::m_channelId, LocalSink::m_channelId,
QString("Local channel sink"), QString("Local channel sink"),
QString("4.12.3"), QString("4.14.12"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = { const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
LocalSource::m_channelId, LocalSource::m_channelId,
QString("Local channel source"), QString("Local channel source"),
QString("4.12.3"), QString("4.14.12"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -15,7 +15,7 @@
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
QString("RTLSDR"), QString("RTLSDR"),
QString("RTL-SDR Input"), QString("RTL-SDR Input"),
QString("4.14.11"), QString("4.14.12"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,