Skip to content

Commit

Permalink
Updated version and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Mar 18, 2023
1 parent aed70ce commit d67aac3
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 "")

Expand Down
18 changes: 18 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demoddsd/dsddemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodvor/vordemodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/heatmap/heatmapplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/noisefigure/noisefigureplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/map/mapplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/vorlocalizer/vorlocalizerplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesource/audioinput/audioinputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d67aac3

Please sign in to comment.