mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
Updated versions and changelogs
This commit is contained in:
parent
21cb26046d
commit
9e51aceeeb
@ -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.
|
||||
|
@ -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
|
||||
|
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -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.
|
||||
|
@ -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,
|
||||
|
@ -84,7 +84,13 @@ 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>
|
||||
|
||||
@ -92,7 +98,13 @@ Enable/disable execution of a transition script (14) when PTT is switched from T
|
||||
|
||||
<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>
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user