diff --git a/CHANGELOG b/CHANGELOG index 27eef8ee7..c0051e7df 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +sdrangel (7.15.2-1) unstable; urgency=medium + + * Fixed some spellings. PR #1742 + * Rotator Controller: Use floats for az/el offsets. PR #1744. Fixes #1739 + * Switch to codec2-dev repo to access v1.0.3 tag. PR #1746. Fixes #1741 + * Move find_package from external/CMakeLists.txt to root CMakeLists.txt. PR #1750 + * Have some libraries and plugins built in the Ubuntu package. PR #1750. Fixes #1740 + * Remove external projects from .deb. PR #1754. Fixes #1740 + * OpenGL code: Clear with alpha=1 to fix #1735. PR #1735 + * DSD demod UI: Connect slot 1/2 on/off buttons. PR #1758. Fixes #1752 + * Use texture() instead of texture2d() in v330 shaders, so they work on Mac. PR #1759. Fixes #1757 + + -- Edouard Griffiths, F4EXB Fri, 04 Aug 2023 01:17:54 +0200 + sdrangel (7.15.1-1) unstable; urgency=medium * Remove comparison of strings and chars. Fix #1713, PR #1718 diff --git a/CMakeLists.txt b/CMakeLists.txt index 45443c5bf..bc067f58d 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 "15") -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 1b8e71956..e5b0d7220 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +sdrangel (7.15.2-1) unstable; urgency=medium + + * Fixed some spellings. PR #1742 + * Rotator Controller: Use floats for az/el offsets. PR #1744. Fixes #1739 + * Switch to codec2-dev repo to access v1.0.3 tag. PR #1746. Fixes #1741 + * Move find_package from external/CMakeLists.txt to root CMakeLists.txt. PR #1750 + * Have some libraries and plugins built in the Ubuntu package. PR #1750. Fixes #1740 + * Remove external projects from .deb. PR #1754. Fixes #1740 + * OpenGL code: Clear with alpha=1 to fix #1735. PR #1735 + * DSD demod UI: Connect slot 1/2 on/off buttons. PR #1758. Fixes #1752 + * Use texture() instead of texture2d() in v330 shaders, so they work on Mac. PR #1759. Fixes #1757 + + -- Edouard Griffiths, F4EXB Fri, 04 Aug 2023 01:17:54 +0200 + sdrangel (7.15.1-1) unstable; urgency=medium * Remove comparison of strings and chars. Fix #1713, PR #1718 diff --git a/plugins/channelrx/demoddsd/dsddemodplugin.cpp b/plugins/channelrx/demoddsd/dsddemodplugin.cpp index 21054ea63..501d88260 100644 --- a/plugins/channelrx/demoddsd/dsddemodplugin.cpp +++ b/plugins/channelrx/demoddsd/dsddemodplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { DSDDemod::m_channelId, QStringLiteral("DSD Demodulator"), - QStringLiteral("7.11.0"), + QStringLiteral("7.15.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index cf4257bd9..0a46180d8 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("7.14.1"), + QStringLiteral("7.15.2"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,