diff --git a/CHANGELOG b/CHANGELOG index 004ddf5a5e..6957ff90d5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +sdrangel (7.14.2-1) unstable; urgency=medium + + * Implement GPIO and script control from Simple PTT feature. Implements #1558 + * Allow SigMF plugins to work in Windows. PR #1700 + * Only update widgets from UI thread. Fixes #1692. PR #1692 + + -- Edouard Griffiths, F4EXB Mon, 28 May 2023 22:04:01 +0200 + sdrangel (7.14.1-1) unstable; urgency=medium * Fix Sat Tracker crash in previous release. Fixes #1682. PR #1696. diff --git a/CMakeLists.txt b/CMakeLists.txt index 983b233549..bf1f9c73f2 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 "14") -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 11f1fa6d76..10d16d2055 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sdrangel (7.14.2-1) unstable; urgency=medium + + * Implement GPIO and script control from Simple PTT feature. Implements #1558 + * Allow SigMF plugins to work in Windows. PR #1700 + * Only update widgets from UI thread. Fixes #1692. PR #1692 + + -- Edouard Griffiths, F4EXB Mon, 28 May 2023 22:04:01 +0200 + sdrangel (7.14.1-1) unstable; urgency=medium * Fix Sat Tracker crash in previous release. Fixes #1682. PR #1696. diff --git a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp index 21fc0e5d72..4004b79a4a 100644 --- a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp +++ b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = { SigMFFileSink::m_channelId, QStringLiteral("SigMF File Sink"), - QStringLiteral("7.6.1"), + QStringLiteral("7.14.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/readme.md b/plugins/feature/simpleptt/readme.md index dda2a7c22e..cc32ab5975 100644 --- a/plugins/feature/simpleptt/readme.md +++ b/plugins/feature/simpleptt/readme.md @@ -84,7 +84,13 @@ Enable/disable execution of a transition script (12) when PTT is switched from R

12: Rx to Tx transition script

-Click on the button with a folder icon to open a file dialog where you can locate the script to be executed when transitioning from Rx to Tx. The full path of the script (if any) is shown next to the button. +Click on the button with a folder icon to open a file dialog where you can locate the script to be executed when transitioning from Rx to Tx. The full path of the script (if any) is shown next to the button. When invoked 4 positional parameters are passed as arguments to the script in this order: + + - Rx device set index (integer) + - Rx device center frequency (floating point scientific notation) + - Tx device set index (integer) + - Tx device center frequency (floating point scientific notation) +

13: Enable Tx to Rx transition script

@@ -92,7 +98,13 @@ Enable/disable execution of a transition script (14) when PTT is switched from T

14: Tx to Rx transition script

-Click on the button with a folder icon to open a file dialog where you can locate the script to be executed when transitioning from Tx to Rx. The full path of the script (if any) is shown next to the button. +Click on the button with a folder icon to open a file dialog where you can locate the script to be executed when transitioning from Tx to Rx. The full path of the script (if any) is shown next to the button. When invoked 4 positional parameters are passed as arguments to the script in this order: + + - Rx device set index (integer) + - Rx device center frequency (floating point scientific notation) + - Tx device set index (integer) + - Tx device center frequency (floating point scientific notation) +

15: Enable Rx to Tx GPIO activation

diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index 226953ea73..e014e21c41 100644 --- a/plugins/feature/simpleptt/simplepttplugin.cpp +++ b/plugins/feature/simpleptt/simplepttplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { SimplePTT::m_featureId, QStringLiteral("Simple PTT"), - QStringLiteral("7.8.4"), + QStringLiteral("7.14.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp index a6834d32f3..7f3b94e583 100644 --- a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp +++ b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { QStringLiteral("SigMFFileInput"), QStringLiteral("File device input (SigMF)"), - QStringLiteral("7.8.2"), + QStringLiteral("7.14.2"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,