HackRF output: fixed setting of Fc pos from REST API. Bumped version

pull/328/head
f4exb 2019-04-16 01:00:50 +02:00
rodzic bbcae92a0b
commit c856d4035f
5 zmienionych plików z 10 dodań i 4 usunięć

Wyświetl plik

@ -27,7 +27,7 @@
#include "mainwindow.h"
#include "dsp/dsptypes.h"
#ifdef _MSC_VER
#define GIT_COMMIT_HASH_STR "v4.5.4"
#define GIT_COMMIT_HASH_STR "v4.5.5"
#else
#include "sdrangel_version.h"
#endif

6
debian/changelog vendored
Wyświetl plik

@ -1,3 +1,9 @@
sdrangel (4.5.5-1) unstable; urgency=medium
* Fixed HackRF Fc pos setting from REST API.
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 20 Apr 2019 20:14:18 +0100
sdrangel (4.5.4-1) unstable; urgency=medium
* Fixed RTL-SDR gain setting sequence. Fixes issue #321.

Wyświetl plik

@ -579,7 +579,7 @@ int HackRFOutput::webapiSettingsPutPatch(
}
if (deviceSettingsKeys.contains("fcPos"))
{
int fcPos = response.getHackRfInputSettings()->getFcPos();
int fcPos = response.getHackRfOutputSettings()->getFcPos();
fcPos = fcPos < 0 ? 0 : fcPos > 2 ? 2 : fcPos;
settings.m_fcPos = (HackRFOutputSettings::fcPos_t) fcPos;
}

Wyświetl plik

@ -31,7 +31,7 @@
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
QString("HackRF Output"),
QString("4.5.4"),
QString("4.5.5"),
QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -1,5 +1,5 @@
name: sdrangel
version: 4.5.4
version: 4.5.5
summary: SDRangel + LimeSDR
description: SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
confinement: strict