1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-13 20:12:29 -04:00

Compare commits

...

3 Commits

Author SHA1 Message Date
f4exb
4538d46c5d Updated version and changelogs 2024-05-24 12:30:22 +02:00
Edouard Griffiths
f79ae3ac71
Merge pull request #2122 from srcejon/freq_scanner
Morse feature: Fix for Qt6 and Windows.
2024-05-24 11:35:00 +02:00
srcejon
77665162b7 Morse feature: Add cast to fix build on Qt6. 2024-05-24 09:20:44 +01:00
5 changed files with 15 additions and 3 deletions

View File

@ -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
* Morse decoder feature. Implements #2112

View File

@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version
set(sdrangel_VERSION_MAJOR "7")
set(sdrangel_VERSION_MINOR "21")
set(sdrangel_VERSION_PATCH "0")
set(sdrangel_VERSION_PATCH "1")
set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options

6
debian/changelog vendored
View File

@ -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
* Morse decoder feature. Implements #2112

View File

@ -28,7 +28,7 @@
const PluginDescriptor MorseDecoderPlugin::m_pluginDescriptor = {
MorseDecoder::m_featureId,
QStringLiteral("Morse Decoder"),
QStringLiteral("7.21.0"),
QStringLiteral("7.21.1"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

View File

@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
std::for_each(
dst.begin(),
dst.end(),
[&](const uint8_t c) { text.append(c); }
[&](const uint8_t c) { text.append((char) c); }
);
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();