diff --git a/CHANGELOG b/CHANGELOG index bc6d5c6de..fa9badfcb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +sdrangel (7.3.2-1) unstable; urgency=medium + + * Use libusb 1.0.26 on Windows + * NFM mod: make pre-emphasis and CTCSS highpass filter optional + * ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280 + * ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280 + * ADS-B: Support different map types for mapboxgl. PR #1280 + * Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280 + * Disable NAN and INF optimisations, as NANs are used in some code. PR #1281 + * VOR Localizer: Add support for DVORs. PR #1282 + * Add DVORs to ADS-B. PR #1282 + * USRP: Check if device supports automatic clock rate. Issue #1278 + * Radio Clock: fixed common channel settings menu trigger. Fixes #1286 + * Features: fixed common settings menu placement. Issue #1286 + + -- Edouard Griffiths, F4EXB Sun, 12 Jun 2022 21:42:51 +0200 + sdrangel (7.3.1-1) unstable; urgency=medium * DOA2 plugin: various fixes diff --git a/CMakeLists.txt b/CMakeLists.txt index b4066e662..4d63dd2c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") set(sdrangel_VERSION_MINOR "3") -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 8318d2126..a8fc25191 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +sdrangel (7.3.2-1) unstable; urgency=medium + + * Use libusb 1.0.26 on Windows + * NFM mod: make pre-emphasis and CTCSS highpass filter optional + * ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280 + * ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280 + * ADS-B: Support different map types for mapboxgl. PR #1280 + * Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280 + * Disable NAN and INF optimisations, as NANs are used in some code. PR #1281 + * VOR Localizer: Add support for DVORs. PR #1282 + * Add DVORs to ADS-B. PR #1282 + * USRP: Check if device supports automatic clock rate. Issue #1278 + * Radio Clock: fixed common channel settings menu trigger. Fixes #1286 + * Features: fixed common settings menu placement. Issue #1286 + + -- Edouard Griffiths, F4EXB Sun, 12 Jun 2022 21:42:51 +0200 + sdrangel (7.3.1-1) unstable; urgency=medium * DOA2 plugin: various fixes diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index f14c5da6e..041b15a90 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.0.0"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/radioclock/radioclockplugin.cpp b/plugins/channelrx/radioclock/radioclockplugin.cpp index 39c6e617e..7f5d17cfb 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("7.0.0"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modnfm/nfmmodplugin.cpp b/plugins/channeltx/modnfm/nfmmodplugin.cpp index 2b3ebc0c1..4f1a10e91 100644 --- a/plugins/channeltx/modnfm/nfmmodplugin.cpp +++ b/plugins/channeltx/modnfm/nfmmodplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { NFMMod::m_channelId, QStringLiteral("NFM Modulator"), - QStringLiteral("7.0.0"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index a7d2e99e7..fb9a0be21 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("7.0.0"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp index c677029ac..5ca995b7c 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("7.0.0"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp b/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp index 177e6d108..9743be448 100644 --- a/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp +++ b/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("URSP Output"), - QStringLiteral("7.3.1"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/usrpinput/usrpinputplugin.cpp b/plugins/samplesource/usrpinput/usrpinputplugin.cpp index 2bcf09ac2..8ef69beb6 100644 --- a/plugins/samplesource/usrpinput/usrpinputplugin.cpp +++ b/plugins/samplesource/usrpinput/usrpinputplugin.cpp @@ -35,7 +35,7 @@ const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = { QStringLiteral("USRP"), QStringLiteral("USRP Input"), - QStringLiteral("7.3.1"), + QStringLiteral("7.3.2"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,