mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
Updated versions and changelogs
This commit is contained in:
parent
ac88d6e0f6
commit
103f6f6181
14
CHANGELOG
14
CHANGELOG
@ -1,3 +1,17 @@
|
|||||||
|
sdrangel (6.15.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Demod Analyzer: fixed sample rate handling. Fixes #931
|
||||||
|
* Enable LimeRFE on Windows. PR #942
|
||||||
|
* Demod Analyzer: allow complex input. Fixes #932
|
||||||
|
* Noise Figure: compile only if Boost >= 1.70.0. Fixes #943
|
||||||
|
* Update airspyhf library to latest version to fix #928. PR #945
|
||||||
|
* Save and restore position and size of main window. Fixes #89. PR #946
|
||||||
|
* SatelliteTracker: Web API fixes. Fixes #948. PR #949
|
||||||
|
* Fixes to web API request mapper. PR #950
|
||||||
|
* Web API doc: added missing doc swagger yaml files
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 04 Jul 2021 03:28:04 +0200
|
||||||
|
|
||||||
sdrangel (6.15.0-1) unstable; urgency=medium
|
sdrangel (6.15.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New Radio Clock plugin. PRs #394, #936 and #939
|
* New Radio Clock plugin. PRs #394, #936 and #939
|
||||||
|
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||||||
# configure version
|
# configure version
|
||||||
set(sdrangel_VERSION_MAJOR "6")
|
set(sdrangel_VERSION_MAJOR "6")
|
||||||
set(sdrangel_VERSION_MINOR "15")
|
set(sdrangel_VERSION_MINOR "15")
|
||||||
set(sdrangel_VERSION_PATCH "0")
|
set(sdrangel_VERSION_PATCH "1")
|
||||||
set(sdrangel_VERSION_SUFFIX "")
|
set(sdrangel_VERSION_SUFFIX "")
|
||||||
|
|
||||||
# SDRAngel cmake options
|
# SDRAngel cmake options
|
||||||
|
14
debian/changelog
vendored
14
debian/changelog
vendored
@ -1,3 +1,17 @@
|
|||||||
|
sdrangel (6.15.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Demod Analyzer: fixed sample rate handling. Fixes #931
|
||||||
|
* Enable LimeRFE on Windows. PR #942
|
||||||
|
* Demod Analyzer: allow complex input. Fixes #932
|
||||||
|
* Noise Figure: compile only if Boost >= 1.70.0. Fixes #943
|
||||||
|
* Update airspyhf library to latest version to fix #928. PR #945
|
||||||
|
* Save and restore position and size of main window. Fixes #89. PR #946
|
||||||
|
* SatelliteTracker: Web API fixes. Fixes #948. PR #949
|
||||||
|
* Fixes to web API request mapper. PR #950
|
||||||
|
* Web API doc: added missing doc swagger yaml files
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 04 Jul 2021 03:28:04 +0200
|
||||||
|
|
||||||
sdrangel (6.15.0-1) unstable; urgency=medium
|
sdrangel (6.15.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New Radio Clock plugin. PRs #394, #936 and #939
|
* New Radio Clock plugin. PRs #394, #936 and #939
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
|
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
|
||||||
NoiseFigure::m_channelId,
|
NoiseFigure::m_channelId,
|
||||||
QStringLiteral("Noise Figure"),
|
QStringLiteral("Noise Figure"),
|
||||||
QStringLiteral("6.14.0"),
|
QStringLiteral("6.15.1"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////
|
||||||
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
||||||
// //
|
// //
|
||||||
// This program is free software; you can redistribute it and/or modify //
|
// This program is free software; you can redistribute it and/or modify //
|
||||||
@ -29,7 +29,7 @@
|
|||||||
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
|
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
|
||||||
DemodAnalyzer::m_featureId,
|
DemodAnalyzer::m_featureId,
|
||||||
QStringLiteral("Demod Analyzer"),
|
QStringLiteral("Demod Analyzer"),
|
||||||
QStringLiteral("6.14.0"),
|
QStringLiteral("6.15.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,
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
|
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
|
||||||
SatelliteTracker::m_featureId,
|
SatelliteTracker::m_featureId,
|
||||||
QStringLiteral("Satellite Tracker"),
|
QStringLiteral("Satellite Tracker"),
|
||||||
QStringLiteral("6.13.0"),
|
QStringLiteral("6.15.1"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
|
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
Loading…
Reference in New Issue
Block a user