mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-06-15 13:02:27 -04:00
Compare commits
3 Commits
1d87e1e051
...
4538d46c5d
Author | SHA1 | Date | |
---|---|---|---|
|
4538d46c5d | ||
|
f79ae3ac71 | ||
|
77665162b7 |
@ -1,3 +1,9 @@
|
|||||||
|
sdrangel (7.21.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Morse Decoder feature: Fix for Qt6 and Windows. PR #2122
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Fri, 24 May 2024 10:29:04 +0200
|
||||||
|
|
||||||
sdrangel (7.21.0-1) unstable; urgency=medium
|
sdrangel (7.21.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Morse decoder feature. Implements #2112
|
* Morse decoder feature. Implements #2112
|
||||||
|
@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||||||
# configure version
|
# configure version
|
||||||
set(sdrangel_VERSION_MAJOR "7")
|
set(sdrangel_VERSION_MAJOR "7")
|
||||||
set(sdrangel_VERSION_MINOR "21")
|
set(sdrangel_VERSION_MINOR "21")
|
||||||
set(sdrangel_VERSION_PATCH "0")
|
set(sdrangel_VERSION_PATCH "1")
|
||||||
set(sdrangel_VERSION_SUFFIX "")
|
set(sdrangel_VERSION_SUFFIX "")
|
||||||
|
|
||||||
# SDRAngel cmake options
|
# SDRAngel cmake options
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
sdrangel (7.21.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Morse Decoder feature: Fix for Qt6 and Windows. PR #2122
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Fri, 24 May 2024 10:29:04 +0200
|
||||||
|
|
||||||
sdrangel (7.21.0-1) unstable; urgency=medium
|
sdrangel (7.21.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Morse decoder feature. Implements #2112
|
* Morse decoder feature. Implements #2112
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = {
|
const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = {
|
||||||
MorseDecoder::m_featureId,
|
MorseDecoder::m_featureId,
|
||||||
QStringLiteral("Morse Decoder"),
|
QStringLiteral("Morse Decoder"),
|
||||||
QStringLiteral("7.21.0"),
|
QStringLiteral("7.21.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,
|
||||||
|
@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
|
|||||||
std::for_each(
|
std::for_each(
|
||||||
dst.begin(),
|
dst.begin(),
|
||||||
dst.end(),
|
dst.end(),
|
||||||
[&](const uint8_t c) { text.append(c); }
|
[&](const uint8_t c) { text.append((char) c); }
|
||||||
);
|
);
|
||||||
|
|
||||||
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();
|
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user