mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-07 17:16:02 -05:00
Updated version and changelogs
This commit is contained in:
parent
aed70cecee
commit
d67aac3b27
18
CHANGELOG
18
CHANGELOG
@ -1,3 +1,21 @@
|
||||
sdrangel (7.11.0-1) unstable; urgency=medium
|
||||
|
||||
- New RTTY and Navtex demods. PR #1610
|
||||
- Noise figure: Fix saving of power on command. PR #1604
|
||||
- Disable MSAA for 2D maps by default. PR #1604
|
||||
- Fix Heat Map Display Chart Seg Fault. Fixes #1606. PR #1607
|
||||
- Prevent MDI scrolling when trying to zoom in on spectrum PR #1611
|
||||
- VOR Demod: Improve filtering for voice over ident. Issue #1590. PR #1615
|
||||
- Fix DSD Demod crash on exit Fixes #1617. PR #1618
|
||||
- Fix updateVORs so it doesn't delete selected VORs. Issue #1590. PR #1619
|
||||
- Set timer to be precise before calling start, otherwise it is ignored on Windows. PR #1626
|
||||
- Audio inout: added DC block and IQ imbalance
|
||||
- Audio input: Added Fc control
|
||||
- MainWindow: disconnect prior to connect in device re-numeration. Fixes #1620
|
||||
- Fixing errors when compiling using qt6. Fixes #1625. PR #1629
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 18 Mar 2023 12:41:20 +0100
|
||||
|
||||
sdrangel (7.10.0-1) unstable; urgency=medium
|
||||
|
||||
- Copy fftw3f and libusb dlls to bin directory. PR #1503
|
||||
|
@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "10")
|
||||
set(sdrangel_VERSION_MINOR "11")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
|
18
debian/changelog
vendored
18
debian/changelog
vendored
@ -1,3 +1,21 @@
|
||||
sdrangel (7.11.0-1) unstable; urgency=medium
|
||||
|
||||
- New RTTY and Navtex demods. PR #1610
|
||||
- Noise figure: Fix saving of power on command. PR #1604
|
||||
- Disable MSAA for 2D maps by default. PR #1604
|
||||
- Fix Heat Map Display Chart Seg Fault. Fixes #1606. PR #1607
|
||||
- Prevent MDI scrolling when trying to zoom in on spectrum PR #1611
|
||||
- VOR Demod: Improve filtering for voice over ident. Issue #1590. PR #1615
|
||||
- Fix DSD Demod crash on exit Fixes #1617. PR #1618
|
||||
- Fix updateVORs so it doesn't delete selected VORs. Issue #1590. PR #1619
|
||||
- Set timer to be precise before calling start, otherwise it is ignored on Windows. PR #1626
|
||||
- Audio inout: added DC block and IQ imbalance
|
||||
- Audio input: Added Fc control
|
||||
- MainWindow: disconnect prior to connect in device re-numeration. Fixes #1620
|
||||
- Fixing errors when compiling using qt6. Fixes #1625. PR #1629
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 18 Mar 2023 12:41:20 +0100
|
||||
|
||||
sdrangel (7.10.0-1) unstable; urgency=medium
|
||||
|
||||
- Copy fftw3f and libusb dlls to bin directory. PR #1503
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
|
||||
DSDDemod::m_channelId,
|
||||
QStringLiteral("DSD Demodulator"),
|
||||
QStringLiteral("7.8.1"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
|
||||
VORDemod::m_channelId,
|
||||
QStringLiteral("VOR Demodulator"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = {
|
||||
HeatMap::m_channelId,
|
||||
QStringLiteral("Heat Map"),
|
||||
QStringLiteral("7.10.0"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
|
||||
NoiseFigure::m_channelId,
|
||||
QStringLiteral("Noise Figure"),
|
||||
QStringLiteral("7.10.1"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
|
||||
Map::m_featureId,
|
||||
QStringLiteral("Map"),
|
||||
QStringLiteral("7.10.0"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = {
|
||||
VORLocalizer::m_featureId,
|
||||
QStringLiteral("VOR Localizer"),
|
||||
QStringLiteral("7.10.0"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor AudioInputPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("AudioInput"),
|
||||
QStringLiteral("Audio Input"),
|
||||
QStringLiteral("7.9.0"),
|
||||
QStringLiteral("7.11.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user