diff --git a/CHANGELOG b/CHANGELOG index af9e4ea12..e912dd529 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,23 @@ +sdrangel (6.19.0-1) unstable; urgency=medium + + * Map: added 3D to map feature. PR #1127 + * APT demod: many updates see PR #1127 + * ADS-B demod: many updates see PR #1127 + * AIS: many updates see PR #1127 + * AIS: remove vessels afer some idle time. Issue #1086. PR #1127 + * Satellite tracker: many updates see PR #1127 + * Satellite tracker: export data via API. Issue #1106. PR #1130. + * Spectrum calibration. Implements #1120 + * SDRPlayV3: added transverter feature. Implemented #1125 + * Spectrum markers: save .csv in Qt default writable location. Implements #1114 + * Fixed removing all feature sets causing segfault. Fixes #1118 + * BFM demod: added readme and link to help button. + * Fixed LIB_SUFFIX for Fedora and lib64 systems. PR #1115 + * DATV Demod: Make AVCodecs cons. PR #1128 + * Install debug symbols on Windows for debug builds. PR #1131 + + -- Edouard Griffiths, F4EXB Mon, 07 Feb 2022 20:41:51 +0100 + sdrangel (6.18.1-1) unstable; urgency=medium * APRS: implemented Mic-E decoding. PR #1108 diff --git a/CMakeLists.txt b/CMakeLists.txt index 59d7bc1f1..9a876e29d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") -set(sdrangel_VERSION_MINOR "18") -set(sdrangel_VERSION_PATCH "1") +set(sdrangel_VERSION_MINOR "19") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 5a1ae3763..12b39e501 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +sdrangel (6.19.0-1) unstable; urgency=medium + + * Map: added 3D to map feature. PR #1127 + * APT demod: many updates see PR #1127 + * ADS-B demod: many updates see PR #1127 + * AIS: many updates see PR #1127 + * AIS: remove vessels afer some idle time. Issue #1086. PR #1127 + * Satellite tracker: many updates see PR #1127 + * Satellite tracker: export data via API. Issue #1106. PR #1130. + * Spectrum calibration. Implements #1120 + * SDRPlayV3: added transverter feature. Implemented #1125 + * Spectrum markers: save .csv in Qt default writable location. Implements #1114 + * Fixed removing all feature sets causing segfault. Fixes #1118 + * BFM demod: added readme and link to help button. + * Fixed LIB_SUFFIX for Fedora and lib64 systems. PR #1115 + * DATV Demod: Make AVCodecs cons. PR #1128 + * Install debug symbols on Windows for debug builds. PR #1131 + + -- Edouard Griffiths, F4EXB Mon, 07 Feb 2022 20:41:51 +0100 + sdrangel (6.18.1-1) unstable; urgency=medium * APRS: implemented Mic-E decoding. PR #1108 diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 18b20b27f..b117e060e 100644 --- a/plugins/channelrx/demodadsb/adsbplugin.cpp +++ b/plugins/channelrx/demodadsb/adsbplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { ADSBDemod::m_channelId, QStringLiteral("ADS-B Demodulator"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp index b810d08ea..b094b625f 100644 --- a/plugins/channelrx/demodais/aisdemodplugin.cpp +++ b/plugins/channelrx/demodais/aisdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = { AISDemod::m_channelId, QStringLiteral("AIS Demodulator"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp index ad430e904..668a46c33 100644 --- a/plugins/channelrx/demodapt/aptdemodplugin.cpp +++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = { APTDemod::m_channelId, QStringLiteral("APT Demodulator"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodbfm/bfmplugin.cpp b/plugins/channelrx/demodbfm/bfmplugin.cpp index cd34b910f..926cf3dd5 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.1"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index eb49440dc..b28bf9d98 100644 --- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp +++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = { DATVDemod::m_channelId, QString("DATV Demodulator"), - QString("6.18.0"), + QString("6.19.0"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/ais/aisplugin.cpp b/plugins/feature/ais/aisplugin.cpp index e78b2138e..7ca3d5d2e 100644 --- a/plugins/feature/ais/aisplugin.cpp +++ b/plugins/feature/ais/aisplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor AISPlugin::m_pluginDescriptor = { AIS::m_featureId, QStringLiteral("AIS"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index fe92169c0..6548ef9b7 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp index fdf6d80a7..2d5702d31 100644 --- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp +++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = { SatelliteTracker::m_featureId, QStringLiteral("Satellite Tracker"), - QStringLiteral("6.18.0"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index 2d3ea2a3a..fb69d2e3e 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("6.16.5"), + QStringLiteral("6.19.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,