diff --git a/CHANGELOG b/CHANGELOG index 81f27e977..4c6a76f06 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +sdrangel (6.16.2-1) unstable; urgency=medium + + * Pager demod: Add support for character set mapping. PR #966 + * Pager demod: Add extra Hebrew charaters. PR #975 + * Radio Clock: Add support for WWVB and display daylight saving. PR #968 + * Antenna Tools: various additions and enhancements. PR #970 + * Satellite Tracker: LOS handling fixes. Issue #893. PR #974 + * DATV Mod: Add UDP buffer utiliziation in GUI on Windows. PR #976 + * File record. timestamp resolution to milliseconds. Issue #980. PR #981 + * Spectrum markers enhancements. Issue #923 + + -- Edouard Griffiths, F4EXB Sun, 08 Aug 2021 04:25:47 +0200 + sdrangel (6.16.1-1) unstable; urgency=medium * AIS: fixed window size when scope is visible. PR #962. Issue #981 diff --git a/CMakeLists.txt b/CMakeLists.txt index dea272c04..9e35f845c 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 "16") -set(sdrangel_VERSION_PATCH "1") +set(sdrangel_VERSION_PATCH "2") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index b909aeefd..a213bd2ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sdrangel (6.16.2-1) unstable; urgency=medium + + * Pager demod: Add support for character set mapping. PR #966 + * Pager demod: Add extra Hebrew charaters. PR #975 + * Radio Clock: Add support for WWVB and display daylight saving. PR #968 + * Antenna Tools: various additions and enhancements. PR #970 + * Satellite Tracker: LOS handling fixes. Issue #893. PR #974 + * DATV Mod: Add UDP buffer utiliziation in GUI on Windows. PR #976 + * File record. timestamp resolution to milliseconds. Issue #980. PR #981 + * Spectrum markers enhancements. Issue #923 + + -- Edouard Griffiths, F4EXB Sun, 08 Aug 2021 04:25:47 +0200 + sdrangel (6.16.1-1) unstable; urgency=medium * AIS: fixed window size when scope is visible. PR #962. Issue #981 diff --git a/plugins/channelrx/demodpager/pagerdemodplugin.cpp b/plugins/channelrx/demodpager/pagerdemodplugin.cpp index 34a2c78f0..ada2ba8c8 100644 --- a/plugins/channelrx/demodpager/pagerdemodplugin.cpp +++ b/plugins/channelrx/demodpager/pagerdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = { PagerDemod::m_channelId, QStringLiteral("Pager Demodulator"), - QStringLiteral("6.16.1"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/filesink/filesinkplugin.cpp b/plugins/channelrx/filesink/filesinkplugin.cpp index 287af616c..a3d9cb2ad 100644 --- a/plugins/channelrx/filesink/filesinkplugin.cpp +++ b/plugins/channelrx/filesink/filesinkplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = { FileSink::m_channelId, QStringLiteral("File Sink"), - QStringLiteral("6.6.2"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioclock/radioclockplugin.cpp b/plugins/channelrx/radioclock/radioclockplugin.cpp index 7faf704f4..b04ea1c39 100644 --- a/plugins/channelrx/radioclock/radioclockplugin.cpp +++ b/plugins/channelrx/radioclock/radioclockplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = { RadioClock::m_channelId, QStringLiteral("Radio Clock"), - QStringLiteral("6.16.1"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/filesource/filesourceplugin.cpp b/plugins/channeltx/filesource/filesourceplugin.cpp index 45816eb4b..9435a863c 100644 --- a/plugins/channeltx/filesource/filesourceplugin.cpp +++ b/plugins/channeltx/filesource/filesourceplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = { FileSource::m_channelId, QStringLiteral("File channel source"), - QStringLiteral("6.3.3"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/moddatv/datvmodplugin.cpp b/plugins/channeltx/moddatv/datvmodplugin.cpp index d915f1598..41e6139c0 100644 --- a/plugins/channeltx/moddatv/datvmodplugin.cpp +++ b/plugins/channeltx/moddatv/datvmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DATVModPlugin::m_pluginDescriptor = { DATVMod::m_channelId, QStringLiteral("DATV Modulator"), - QStringLiteral("6.10.3"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/antennatools/antennatoolsplugin.cpp b/plugins/feature/antennatools/antennatoolsplugin.cpp index 8e4f199eb..d09c21593 100644 --- a/plugins/feature/antennatools/antennatoolsplugin.cpp +++ b/plugins/feature/antennatools/antennatoolsplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { AntennaTools::m_featureId, QStringLiteral("Antenna Tools"), - QStringLiteral("6.12.2"), + QStringLiteral("6.16.2"), 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 4668320fb..553071c25 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.16.0"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/fileoutput/fileoutputplugin.cpp b/plugins/samplesink/fileoutput/fileoutputplugin.cpp index 01e8a848f..70bebbe79 100644 --- a/plugins/samplesink/fileoutput/fileoutputplugin.cpp +++ b/plugins/samplesink/fileoutput/fileoutputplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = { QStringLiteral("FileOutput"), QStringLiteral("File output"), - QStringLiteral("4.19.0"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/fileinput/fileinputplugin.cpp b/plugins/samplesource/fileinput/fileinputplugin.cpp index ae32fe71a..85dd27153 100644 --- a/plugins/samplesource/fileinput/fileinputplugin.cpp +++ b/plugins/samplesource/fileinput/fileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { QStringLiteral("FileInput"), QStringLiteral("File device input"), - QStringLiteral("6.7.0"), + QStringLiteral("6.16.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,