mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-24 11:12:27 -04:00
Apply PR #1888 changes to samplemimo plugins
This commit is contained in:
parent
07e8ae0de1
commit
8ce5ca51e2
@ -7,7 +7,7 @@ sdrangel (7.17.1-1) unstable; urgency=medium
|
|||||||
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
|
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
|
||||||
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
|
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
|
||||||
* Indicate audio FIFO underflow/overflow. PR #1887
|
* Indicate audio FIFO underflow/overflow. PR #1887
|
||||||
* ix resize cursor not being cleared when mouse moves over child widgets. PR #1888
|
* Fix resize cursor not being cleared when mouse moves over child widgets. PR #1888
|
||||||
* Prevent popup menu when scrolling tables. PR #1889
|
* Prevent popup menu when scrolling tables. PR #1889
|
||||||
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
|
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
|
||||||
* Use MDI restore when loading config. PR #1890
|
* Use MDI restore when loading config. PR #1890
|
||||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -7,7 +7,7 @@ sdrangel (7.17.1-1) unstable; urgency=medium
|
|||||||
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
|
* DSD Demod - Fix loss of constellation. PR #1883. Fixes #1836
|
||||||
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
|
* Remote TCP - Fix FIFO size adjustment. Fixes SR > 3 MS/s. PR #1886. Fixes #1885.
|
||||||
* Indicate audio FIFO underflow/overflow. PR #1887
|
* Indicate audio FIFO underflow/overflow. PR #1887
|
||||||
* ix resize cursor not being cleared when mouse moves over child widgets. PR #1888
|
* Fix resize cursor not being cleared when mouse moves over child widgets. PR #1888
|
||||||
* Prevent popup menu when scrolling tables. PR #1889
|
* Prevent popup menu when scrolling tables. PR #1889
|
||||||
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
|
* Use custom save/restore geometry for MDI sub=windows. PR #1890. Fixes #1835
|
||||||
* Use MDI restore when loading config. PR #1890
|
* Use MDI restore when loading config. PR #1890
|
||||||
|
@ -100,6 +100,7 @@ AudioCATSISOGUI::AudioCATSISOGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioCATSISOGUI::~AudioCATSISOGUI()
|
AudioCATSISOGUI::~AudioCATSISOGUI()
|
||||||
|
@ -105,6 +105,7 @@ BladeRF2MIMOGui::BladeRF2MIMOGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
sendSettings();
|
sendSettings();
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
BladeRF2MIMOGui::~BladeRF2MIMOGui()
|
BladeRF2MIMOGui::~BladeRF2MIMOGui()
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = {
|
const PluginDescriptor BladeRF2MIMOPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("BladeRF2"),
|
QStringLiteral("BladeRF2"),
|
||||||
QStringLiteral("BladeRF2 MIMO"),
|
QStringLiteral("BladeRF2 MIMO"),
|
||||||
QStringLiteral("7.8.2"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -107,6 +107,7 @@ LimeSDRMIMOGUI::LimeSDRMIMOGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
sendSettings();
|
sendSettings();
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
LimeSDRMIMOGUI::~LimeSDRMIMOGUI()
|
LimeSDRMIMOGUI::~LimeSDRMIMOGUI()
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
|
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("LimeSDR"),
|
QStringLiteral("LimeSDR"),
|
||||||
QStringLiteral("LimeSDR MIMO"),
|
QStringLiteral("LimeSDR MIMO"),
|
||||||
QStringLiteral("7.8.2"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -79,6 +79,7 @@ MetisMISOGui::MetisMISOGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
MetisMISOGui::~MetisMISOGui()
|
MetisMISOGui::~MetisMISOGui()
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
|
const PluginDescriptor MetisMISOPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("MetisMISO"),
|
QStringLiteral("MetisMISO"),
|
||||||
QStringLiteral("Metis MISO"),
|
QStringLiteral("Metis MISO"),
|
||||||
QStringLiteral("7.8.5"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -110,6 +110,7 @@ PlutoSDRMIMOGUI::PlutoSDRMIMOGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
PlutoSDRMIMOGUI::~PlutoSDRMIMOGUI()
|
PlutoSDRMIMOGUI::~PlutoSDRMIMOGUI()
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = {
|
const PluginDescriptor PlutoSDRMIMOPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("PlutoSDR"),
|
QStringLiteral("PlutoSDR"),
|
||||||
QStringLiteral("PlutoSDR MIMO"),
|
QStringLiteral("PlutoSDR MIMO"),
|
||||||
QStringLiteral("7.15.3"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -92,6 +92,7 @@ TestMIGui::TestMIGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
TestMIGui::~TestMIGui()
|
TestMIGui::~TestMIGui()
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor TestMIPlugin::m_pluginDescriptor = {
|
const PluginDescriptor TestMIPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("TestMI"),
|
QStringLiteral("TestMI"),
|
||||||
QStringLiteral("Test Multiple Input"),
|
QStringLiteral("Test Multiple Input"),
|
||||||
QStringLiteral("7.8.1"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -90,6 +90,7 @@ TestMOSyncGui::TestMOSyncGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
m_deviceUISet->setSpectrumScalingFactor(SDR_TX_SCALEF);
|
m_deviceUISet->setSpectrumScalingFactor(SDR_TX_SCALEF);
|
||||||
|
|
||||||
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &)));
|
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &)));
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
TestMOSyncGui::~TestMOSyncGui()
|
TestMOSyncGui::~TestMOSyncGui()
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = {
|
const PluginDescriptor TestMOSyncPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("TestMOSync"),
|
QStringLiteral("TestMOSync"),
|
||||||
QStringLiteral("Test Synchronous Multiple Output"),
|
QStringLiteral("Test Synchronous Multiple Output"),
|
||||||
QStringLiteral("7.8.2"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -105,6 +105,7 @@ XTRXMIMOGUI::XTRXMIMOGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
sendSettings();
|
sendSettings();
|
||||||
makeUIConnections();
|
makeUIConnections();
|
||||||
DialPopup::addPopupsToChildDials(this);
|
DialPopup::addPopupsToChildDials(this);
|
||||||
|
m_resizer.enableChildMouseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
XTRXMIMOGUI::~XTRXMIMOGUI()
|
XTRXMIMOGUI::~XTRXMIMOGUI()
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = {
|
const PluginDescriptor XTRXMIMOPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("XTRX"),
|
QStringLiteral("XTRX"),
|
||||||
QStringLiteral("XTRX MIMO"),
|
QStringLiteral("XTRX MIMO"),
|
||||||
QStringLiteral("7.8.2"),
|
QStringLiteral("7.17.1"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user