From 513c0e58fa8873ec66b224e3d60a54aca13616e7 Mon Sep 17 00:00:00 2001 From: f4exb Date: Fri, 22 Sep 2023 00:55:00 +0200 Subject: [PATCH] Updated versions and changelogs --- CHANGELOG | 17 +++++++++++++++++ CMakeLists.txt | 4 ++-- debian/changelog | 17 +++++++++++++++++ plugins/channelrx/demodadsb/adsbplugin.cpp | 2 +- .../channelrx/demodpager/pagerdemodplugin.cpp | 2 +- .../remotetcpsink/remotetcpsinkplugin.cpp | 2 +- .../remotetcpinput/remotetcpinputplugin.cpp | 2 +- plugins/samplesource/rtlsdr/rtlsdrplugin.cpp | 2 +- .../samplesource/sdrplayv3/sdrplayv3plugin.cpp | 2 +- 9 files changed, 42 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8f5453b52..ccf7ecc70 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +sdrangel (7.16.0-1) unstable; urgency=medium + + * Added RTTY modulator. PR #1800 + * Added PSK31 modulator. PR #1814 + * Flush log stream after write, so data is available immediately. PR #1834. Fixes #1833 + * Remote TCP improvements. PR #1830. Fixes #1827 + * Fix ffpmeg/opencv dependencies. Enable C lang on Mac, for external project. PR #1828. Fixes #1819 + * Request authorization for access to camera and microphone on Mac. PR #1824. Fixes #1819 + * Fixed Swagger files generation and added missing files. Fixes #1821 + * Add strings describing why Microphone, Camera and Location are required on MacOS. PR #1822. Fixes #1819 + * Add windows-default preset for building with Visual Studio. PR #1816 + * Add Android SDR Driver sample source. PR #1815 + * Distingush between China and Taiwan. PR #1810. Fixes #1805 + * Add command line options to start Remote TCP Sink on a specified device/ PR #1809. + + -- Edouard Griffiths, F4EXB Thu, 21 Sep 2023 22:44:31 +0200 + sdrangel (7.15.4-1) unstable; urgency=medium * Fix Mac compilation. PR #1786 diff --git a/CMakeLists.txt b/CMakeLists.txt index b075307af..d7fda37af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "15") -set(sdrangel_VERSION_PATCH "4") +set(sdrangel_VERSION_MINOR "16") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index f48256f79..29a1859b8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +sdrangel (7.16.0-1) unstable; urgency=medium + + * Added RTTY modulator. PR #1800 + * Added PSK31 modulator. PR #1814 + * Flush log stream after write, so data is available immediately. PR #1834. Fixes #1833 + * Remote TCP improvements. PR #1830. Fixes #1827 + * Fix ffpmeg/opencv dependencies. Enable C lang on Mac, for external project. PR #1828. Fixes #1819 + * Request authorization for access to camera and microphone on Mac. PR #1824. Fixes #1819 + * Fixed Swagger files generation and added missing files. Fixes #1821 + * Add strings describing why Microphone, Camera and Location are required on MacOS. PR #1822. Fixes #1819 + * Add windows-default preset for building with Visual Studio. PR #1816 + * Add Android SDR Driver sample source. PR #1815 + * Distingush between China and Taiwan. PR #1810. Fixes #1805 + * Add command line options to start Remote TCP Sink on a specified device/ PR #1809. + + -- Edouard Griffiths, F4EXB Thu, 21 Sep 2023 22:44:31 +0200 + sdrangel (7.15.4-1) unstable; urgency=medium * Fix Mac compilation. PR #1786 diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 00daed3f0..bad85348b 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("7.10.0"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodpager/pagerdemodplugin.cpp b/plugins/channelrx/demodpager/pagerdemodplugin.cpp index 919c81e8b..6931c60a1 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("7.0.0"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp index d6896f421..160e4e510 100644 --- a/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp +++ b/plugins/channelrx/remotetcpsink/remotetcpsinkplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = { RemoteTCPSink::m_channelId, QStringLiteral("Remote TCP channel sink"), - QStringLiteral("7.6.1"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp index a9d3187e8..248b29958 100644 --- a/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp +++ b/plugins/samplesource/remotetcpinput/remotetcpinputplugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteTCPInput"), QStringLiteral("Remote TCP device input"), - QStringLiteral("7.8.3"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp index 5a933d77c..2961959f0 100644 --- a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp +++ b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp @@ -18,7 +18,7 @@ const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { QStringLiteral("RTLSDR"), QStringLiteral("RTL-SDR Input"), - QStringLiteral("7.15.4"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index 3211baabd..f630f1acc 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("7.10.0"), + QStringLiteral("7.16.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,