diff --git a/CHANGELOG b/CHANGELOG index eba4a430c..af9e4ea12 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +sdrangel (6.18.1-1) unstable; urgency=medium + + * APRS: implemented Mic-E decoding. PR #1108 + * Spectrum: implemented annotation markers. Issue #887 + * BFM Demod: fixed RDS text clearscreen. Fixes #1101 + * BFM Demod: keep last message on a second line. + * BFM demod: make rds active setting persistent + * BFM demopd: clear BAS area when clearing RDS fields + * Metis: set output FIFO size to size policy. Fixes #1100 + * Removed unused symbol synchronization object and irrelevant references to liquidsdr. Fixes #1104 + * API: added histogram and waterfall markers to spectrum settings + + -- Edouard Griffiths, F4EXB Sun, 23 Jan 2022 22:17:30 +0100 + sdrangel (6.18.0-1) unstable; urgency=medium * New Jogdial Control feature. Implements #1088 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ab0b9973..ea3aaa9dd 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 "18") -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 69636dbf8..5a1ae3763 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +sdrangel (6.18.1-1) unstable; urgency=medium + + * APRS: implemented Mic-E decoding. PR #1108 + * Spectrum: implemented annotation markers. Issue #887 + * BFM Demod: fixed RDS text clearscreen. Fixes #1101 + * BFM Demod: keep last message on a second line. + * BFM demod: make rds active setting persistent + * BFM demopd: clear BAS area when clearing RDS fields + * Metis: set output FIFO size to size policy. Fixes #1100 + * Removed unused symbol synchronization object and irrelevant references to liquidsdr. Fixes #1104 + * API: added histogram and waterfall markers to spectrum settings + + -- Edouard Griffiths, F4EXB Sun, 23 Jan 2022 22:17:30 +0100 + sdrangel (6.18.0-1) unstable; urgency=medium * New Jogdial Control feature. Implements #1088 diff --git a/plugins/channelrx/demodbfm/bfmplugin.cpp b/plugins/channelrx/demodbfm/bfmplugin.cpp index 69e2e5518..cd34b910f 100644 --- a/plugins/channelrx/demodbfm/bfmplugin.cpp +++ b/plugins/channelrx/demodbfm/bfmplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor BFMPlugin::m_pluginDescriptor = { BFMDemod::m_channelId, QStringLiteral("Broadcast FM Demodulator"), - QStringLiteral("6.18.0"), + QStringLiteral("6.18.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/aprs/aprsplugin.cpp b/plugins/feature/aprs/aprsplugin.cpp index c9f4c7453..4e1bfc3a9 100644 --- a/plugins/feature/aprs/aprsplugin.cpp +++ b/plugins/feature/aprs/aprsplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor APRSPlugin::m_pluginDescriptor = { APRS::m_featureId, QStringLiteral("APRS"), - QStringLiteral("6.18.0"), + QStringLiteral("6.18.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplemimo/metismiso/metismisoplugin.cpp b/plugins/samplemimo/metismiso/metismisoplugin.cpp index 53ce38407..45712c9c8 100644 --- a/plugins/samplemimo/metismiso/metismisoplugin.cpp +++ b/plugins/samplemimo/metismiso/metismisoplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = { QStringLiteral("MetisMISO"), QStringLiteral("Metis MISO"), - QStringLiteral("6.17.1"), + QStringLiteral("6.18.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,