diff --git a/CHANGELOG b/CHANGELOG index fa9badfcb3..64b734258a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,26 @@ +sdrangel (7.4.0-1) unstable; urgency=medium + + * 3D Spectrogram and OpenGL code fixes. PR #1291 + * USRP: fixed possible KeyError exception. Fixes #1284. PR #1288 + * Add support for Broadcast FM Demod audio in Demod Analyzer. PR #1292 + * Spectrum: Prevent null texture warning when only histogram is displayed. PR #1294 + * 3D Spectrogram: Fixes #1297. PR #1298 + * External libraries: removed unnecessary SerialDV dependency to fix MSVC builds + * Spectrum: And fill and gradient styles. PR #1299 + * Allow 2D waterfall color map to be changed. PR #1299 + * Change frequency zoom so that frequency under cursor remains the same. PR #1300 + * Spectrum markers dialog: Fix show field in CSV export. PR #1301 + * Value dial: Check for completed animation before using m_value. PR #1303 + * Reworked spectrum GUI controls + * Spectrum: Fix mouse wheel to zoom in waterfall. PR #1304 + * Spectrum: Allow frequency scolling with mouse. PR #1305 + * Spectrum markers: Allow all to be displayed. PR #1306 + * SpectrumGUI: Go to combo to set center frequency from annotation marker. PR #1309 + * Added minimal default cmake preset + * Added cmake enablers for all non sampling device plugins. Fixes #1308 + + -- Edouard Griffiths, F4EXB Sun, 26 Jun 2022 04:25:21 +0200 + sdrangel (7.3.2-1) unstable; urgency=medium * Use libusb 1.0.26 on Windows diff --git a/CMakeLists.txt b/CMakeLists.txt index 358bceaa18..09c50222c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "3") -set(sdrangel_VERSION_PATCH "2") +set(sdrangel_VERSION_MINOR "4") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index a8fc25191a..e9e637e9a2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,26 @@ +sdrangel (7.4.0-1) unstable; urgency=medium + + * 3D Spectrogram and OpenGL code fixes. PR #1291 + * USRP: fixed possible KeyError exception. Fixes #1284. PR #1288 + * Add support for Broadcast FM Demod audio in Demod Analyzer. PR #1292 + * Spectrum: Prevent null texture warning when only histogram is displayed. PR #1294 + * 3D Spectrogram: Fixes #1297. PR #1298 + * External libraries: removed unnecessary SerialDV dependency to fix MSVC builds + * Spectrum: And fill and gradient styles. PR #1299 + * Allow 2D waterfall color map to be changed. PR #1299 + * Change frequency zoom so that frequency under cursor remains the same. PR #1300 + * Spectrum markers dialog: Fix show field in CSV export. PR #1301 + * Value dial: Check for completed animation before using m_value. PR #1303 + * Reworked spectrum GUI controls + * Spectrum: Fix mouse wheel to zoom in waterfall. PR #1304 + * Spectrum: Allow frequency scolling with mouse. PR #1305 + * Spectrum markers: Allow all to be displayed. PR #1306 + * SpectrumGUI: Go to combo to set center frequency from annotation marker. PR #1309 + * Added minimal default cmake preset + * Added cmake enablers for all non sampling device plugins. Fixes #1308 + + -- Edouard Griffiths, F4EXB Sun, 26 Jun 2022 04:25:21 +0200 + sdrangel (7.3.2-1) unstable; urgency=medium * Use libusb 1.0.26 on Windows diff --git a/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp b/plugins/samplesink/usrpoutput/usrpoutputplugin.cpp index 9743be448e..7f2c0b4919 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.2"), + QStringLiteral("7.4.0"), 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 8ef69beb60..d984064efa 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.2"), + QStringLiteral("7.4.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,