Skip to content

Commit

Permalink
Updated versions and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed May 29, 2023
1 parent 21cb260 commit 9e51ace
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 6 deletions.
8 changes: 8 additions & 0 deletions 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 <f4exb06@gmail.com> 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.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions 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 <f4exb06@gmail.com> 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.
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp
Expand Up @@ -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,
Expand Down
16 changes: 14 additions & 2 deletions plugins/feature/simpleptt/readme.md
Expand Up @@ -84,15 +84,27 @@ Enable/disable execution of a transition script (12) when PTT is switched from R

<h3>12: Rx to Tx transition script</h3>

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)


<h3>13: Enable Tx to Rx transition script</h3>

Enable/disable execution of a transition script (14) when PTT is switched from Tx to Rx.

<h3>14: Tx to Rx transition script</h3>

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)


<h3>15: Enable Rx to Tx GPIO activation</h3>

Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/simpleptt/simplepttplugin.cpp
Expand Up @@ -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,
Expand Down
Expand Up @@ -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,
Expand Down

0 comments on commit 9e51ace

Please sign in to comment.