mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-17 05:41:56 -05:00
Updated versions and changelogs
This commit is contained in:
parent
e5bb3cb699
commit
a151cdfe12
17
CHANGELOG
17
CHANGELOG
@ -1,3 +1,20 @@
|
||||
sdrangel (6.16.0-1) unstable; urgency=medium
|
||||
|
||||
* New Pager demodulator. PR #960
|
||||
* AIS feature: use course if heading is not available
|
||||
* Satellite Tracker: fix table to accomodate Doppler tracking. PR #951. Issue #840
|
||||
* SDRPlayV3: wait for some commands completion. PR #954
|
||||
* Spectrum Markers: make them stick to frequency, power and time distance
|
||||
* Fix handling of Satellite Tracker device settings. PR #959. Issue #953.
|
||||
* Channel Analyzer / Scope: fixed sample rate handling. Fixes #956
|
||||
* ScopeVis: added missing mutex locks in message handling. May fix #955
|
||||
* ScopeVis: do not save / restore time offset in the settings
|
||||
* ScopeVis: fixed multiple stream input. Fixes #872
|
||||
* RadioClock and Pager: some optimizations
|
||||
* SSB demod: fixed bandwidth setting. Fixes #957
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 13 Jul 2021 20:20:58 +0200
|
||||
|
||||
sdrangel (6.15.1-1) unstable; urgency=medium
|
||||
|
||||
* Demod Analyzer: fixed sample rate handling. Fixes #931
|
||||
|
@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "6")
|
||||
set(sdrangel_VERSION_MINOR "15")
|
||||
set(sdrangel_VERSION_PATCH "1")
|
||||
set(sdrangel_VERSION_MINOR "16")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
|
17
debian/changelog
vendored
17
debian/changelog
vendored
@ -1,3 +1,20 @@
|
||||
sdrangel (6.16.0-1) unstable; urgency=medium
|
||||
|
||||
* New Pager demodulator. PR #960
|
||||
* AIS feature: use course if heading is not available
|
||||
* Satellite Tracker: fix table to accomodate Doppler tracking. PR #951. Issue #840
|
||||
* SDRPlayV3: wait for some commands completion. PR #954
|
||||
* Spectrum Markers: make them stick to frequency, power and time distance
|
||||
* Fix handling of Satellite Tracker device settings. PR #959. Issue #953.
|
||||
* Channel Analyzer / Scope: fixed sample rate handling. Fixes #956
|
||||
* ScopeVis: added missing mutex locks in message handling. May fix #955
|
||||
* ScopeVis: do not save / restore time offset in the settings
|
||||
* ScopeVis: fixed multiple stream input. Fixes #872
|
||||
* RadioClock and Pager: some optimizations
|
||||
* SSB demod: fixed bandwidth setting. Fixes #957
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 13 Jul 2021 20:20:58 +0200
|
||||
|
||||
sdrangel (6.15.1-1) unstable; urgency=medium
|
||||
|
||||
* Demod Analyzer: fixed sample rate handling. Fixes #931
|
||||
|
@ -26,7 +26,7 @@
|
||||
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
|
||||
ChannelAnalyzer::m_channelId,
|
||||
QStringLiteral("Channel Analyzer"),
|
||||
QStringLiteral("6.15.0"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
|
||||
AISDemod::m_channelId,
|
||||
QStringLiteral("AIS Demodulator"),
|
||||
QStringLiteral("6.12.1"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -12,7 +12,7 @@
|
||||
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
||||
SSBDemod::m_channelId,
|
||||
QStringLiteral("SSB Demodulator"),
|
||||
QStringLiteral("6.7.0"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
|
||||
RadioClock::m_channelId,
|
||||
QStringLiteral("Radio Clock"),
|
||||
QStringLiteral("6.15.0"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
|
||||
SatelliteTracker::m_featureId,
|
||||
QStringLiteral("Satellite Tracker"),
|
||||
QStringLiteral("6.15.1"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -32,7 +32,7 @@
|
||||
const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
|
||||
QStringLiteral("SDRPlayV3"),
|
||||
QStringLiteral("SDRPlayV3 Input"),
|
||||
QStringLiteral("6.9.0"),
|
||||
QStringLiteral("6.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user