Skip to content

Commit

Permalink
Updated versions and change logs
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Jul 11, 2023
1 parent c0c02d8 commit 8a38af4
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 8 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
sdrangel (7.15.1-1) unstable; urgency=medium

* Remove comparison of strings and chars. Fix #1713, PR #1718
* Run audio out on its own thread. Fixes #1717
* PlutoSDR: Add missing settings keys. PR #1727
* RTPSink: nullify m_byteBuffer after delete
* Audio output: forward actual sample rate to Audio Manager
* SSB demod: handle DSPConfigureAudio message correctly
* SSB mod/demod: handle DSPConfigureAudio message correctly
* Fixed some spelling mistakes. PR #1733
* Run audio in on its own thread. For #1731
* FCD/AudioInpout: use AudioDeviceManager in place of manupulating AudioInputDevice directly
* Audio Input: handle real signals with new main spectrum feature
* PlutoSDR input/output: do not apply settings to self when coming from a buddy change. Fixes #1690

-- Edouard Griffiths, F4EXB <[email protected]> Tue, 11 Jul 2023 15:45:58 +0200

sdrangel (7.15.0-1) unstable; urgency=medium

* New Audio CAT SISO plugin. Implements #1597
Expand All @@ -6,7 +23,7 @@ sdrangel (7.15.0-1) unstable; urgency=medium
* SigMFFileInput: fixed acceleration. Part of issue #1699
* SimplePTT: fixed typo in code. Fixes #1705

-- Edouard Griffiths, F4EXB <[email protected]> Sun, 18 Jun 2023 22:38:65 +0200
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 18 Jun 2023 22:38:55 +0200

sdrangel (7.14.2-1) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version
set(sdrangel_VERSION_MAJOR "7")
set(sdrangel_VERSION_MINOR "15")
set(sdrangel_VERSION_PATCH "0")
set(sdrangel_VERSION_PATCH "1")
set(sdrangel_VERSION_SUFFIX "")

# SDRAngel cmake options
Expand Down
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
sdrangel (7.15.1-1) unstable; urgency=medium

* Remove comparison of strings and chars. Fix #1713, PR #1718
* Run audio out on its own thread. Fixes #1717
* PlutoSDR: Add missing settings keys. PR #1727
* RTPSink: nullify m_byteBuffer after delete
* Audio output: forward actual sample rate to Audio Manager
* SSB demod: handle DSPConfigureAudio message correctly
* SSB mod/demod: handle DSPConfigureAudio message correctly
* Fixed some spelling mistakes. PR #1733
* Run audio in on its own thread. For #1731
* FCD/AudioInpout: use AudioDeviceManager in place of manupulating AudioInputDevice directly
* Audio Input: handle real signals with new main spectrum feature
* PlutoSDR input/output: do not apply settings to self when coming from a buddy change. Fixes #1690

-- Edouard Griffiths, F4EXB <[email protected]> Tue, 11 Jul 2023 15:45:58 +0200

sdrangel (7.15.0-1) unstable; urgency=medium

* New Audio CAT SISO plugin. Implements #1597
Expand Down
4 changes: 2 additions & 2 deletions fcdlib/fcdtraits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const char *fcd_traits<ProPlus>::displayedName = "FunCube Dongle Pro+";
const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input";
const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";

const char *fcd_traits<Pro>::pluginVersion = "7.8.4";
const char *fcd_traits<ProPlus>::pluginVersion = "7.8.4";
const char *fcd_traits<Pro>::pluginVersion = "7.15.1";
const char *fcd_traits<ProPlus>::pluginVersion = "7.15.1";

const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L;
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesink/audiooutput/audiooutputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
QStringLiteral("AudioOutput"),
QStringLiteral("Audio output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.15.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesink/plutosdroutput/plutosdroutputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Output"),
QStringLiteral("7.8.2"),
QStringLiteral("7.15.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
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.11.0"),
QStringLiteral("7.15.1"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesource/plutosdrinput/plutosdrinputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DeviceAPI;
const PluginDescriptor PlutoSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("PlutoSDR"),
QStringLiteral("PlutoSDR Input"),
QStringLiteral("7.8.2"),
QStringLiteral("7.15.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down

0 comments on commit 8a38af4

Please sign in to comment.