mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
Updated versions and changelogs
This commit is contained in:
parent
9cd7e9fd12
commit
d9ad758971
22
CHANGELOG
22
CHANGELOG
@ -1,3 +1,25 @@
|
||||
sdrangel (7.6.3-1) unstable; urgency=medium
|
||||
|
||||
* NFM modulator: try to improve audio input
|
||||
* Simple PTT: fixed status indicator
|
||||
* LimeRFE feature: fixed settings API
|
||||
* ScriptsAPI: fixed dump.py and config.py to match v7 requirements
|
||||
* ScriptsAPI: removed obsolete config.py -I option
|
||||
* ScriptsAPI: new ptt_feature.py based on PTT amd LimeRFE features
|
||||
* LimeSDR: reduced LimeSDR stream FIFO size to 256k to improve latency
|
||||
* LimeSDR: better handle calibration errors. Fix #1389. PR #1391
|
||||
* LimeSDR: Set Lime minimum frequency in GUI to 30MHz+NCO freq. Fix #1389. PR #1391
|
||||
* LimeSDR: Set minimum calibration bandwidth to 2.5MHz. Fix #1389. PR #1391
|
||||
* LimeSDR: Report calibration errors in GUI. Fix #1389. PR #1395
|
||||
* LimeSDR: Check LPF is reasonable for up/downconversion. Fix #1389. PR #1395
|
||||
* ADS-B: Add support for decoding Comm-B replies in Mode-S frames. PR #1393
|
||||
* ADS-B: Check ICAO in sink worker, so CRC can be checked. Fix warnings. PR #1393
|
||||
* Add start/stop all devices of workspace button in workspace toolbar. PR #1394
|
||||
* Add device stateChanged signal. Use in RTL SDR GUI. PR #1394
|
||||
* Remove ? in Window's title bar. Fixes #1312. PR #1399
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 01 Sep 2022 19:46:21 +0200
|
||||
|
||||
sdrangel (7.6.2-1) unstable; urgency=medium
|
||||
|
||||
* MacOS build fixes. PR #1374
|
||||
|
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "6")
|
||||
set(sdrangel_VERSION_PATCH "2")
|
||||
set(sdrangel_VERSION_PATCH "3")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
|
22
debian/changelog
vendored
22
debian/changelog
vendored
@ -1,3 +1,25 @@
|
||||
sdrangel (7.6.3-1) unstable; urgency=medium
|
||||
|
||||
* NFM modulator: try to improve audio input
|
||||
* Simple PTT: fixed status indicator
|
||||
* LimeRFE feature: fixed settings API
|
||||
* ScriptsAPI: fixed dump.py and config.py to match v7 requirements
|
||||
* ScriptsAPI: removed obsolete config.py -I option
|
||||
* ScriptsAPI: new ptt_feature.py based on PTT amd LimeRFE features
|
||||
* LimeSDR: reduced LimeSDR stream FIFO size to 256k to improve latency
|
||||
* LimeSDR: better handle calibration errors. Fix #1389. PR #1391
|
||||
* LimeSDR: Set Lime minimum frequency in GUI to 30MHz+NCO freq. Fix #1389. PR #1391
|
||||
* LimeSDR: Set minimum calibration bandwidth to 2.5MHz. Fix #1389. PR #1391
|
||||
* LimeSDR: Report calibration errors in GUI. Fix #1389. PR #1395
|
||||
* LimeSDR: Check LPF is reasonable for up/downconversion. Fix #1389. PR #1395
|
||||
* ADS-B: Add support for decoding Comm-B replies in Mode-S frames. PR #1393
|
||||
* ADS-B: Check ICAO in sink worker, so CRC can be checked. Fix warnings. PR #1393
|
||||
* Add start/stop all devices of workspace button in workspace toolbar. PR #1394
|
||||
* Add device stateChanged signal. Use in RTL SDR GUI. PR #1394
|
||||
* Remove ? in Window's title bar. Fixes #1312. PR #1399
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 01 Sep 2022 19:46:21 +0200
|
||||
|
||||
sdrangel (7.6.2-1) unstable; urgency=medium
|
||||
|
||||
* MacOS build fixes. PR #1374
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
|
||||
ADSBDemod::m_channelId,
|
||||
QStringLiteral("ADS-B Demodulator"),
|
||||
QStringLiteral("7.3.2"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -28,7 +28,7 @@
|
||||
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
|
||||
NFMMod::m_channelId,
|
||||
QStringLiteral("NFM Modulator"),
|
||||
QStringLiteral("7.3.2"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor LimeRFEPlugin::m_pluginDescriptor = {
|
||||
LimeRFE::m_featureId,
|
||||
QStringLiteral("LimeRFE USB Controller"),
|
||||
QStringLiteral("7.1.0"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
|
||||
SimplePTT::m_featureId,
|
||||
QStringLiteral("Simple PTT"),
|
||||
QStringLiteral("7.6.2"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("LimeSDR"),
|
||||
QStringLiteral("LimeSDR MIMO"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -35,7 +35,7 @@
|
||||
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("LimeSDR"),
|
||||
QStringLiteral("LimeSDR Output"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -35,7 +35,7 @@
|
||||
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("LimeSDR"),
|
||||
QStringLiteral("LimeSDR Input"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -15,7 +15,7 @@
|
||||
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("RTLSDR"),
|
||||
QStringLiteral("RTL-SDR Input"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.6.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user