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
207115bc4c
commit
0a713e4d30
15
CHANGELOG
15
CHANGELOG
@ -1,3 +1,18 @@
|
|||||||
|
sdrangel (6.7.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New DATV modulator plugin: DVB-S modulator. PR #810
|
||||||
|
* FileInput: Sample rate fixes, PR #803
|
||||||
|
* Set depending objects to nullptr before deleting GUI. Fixes #806
|
||||||
|
* SSB demod: increase audio volume range to -10 to +40 dB.
|
||||||
|
* Fix impulse response of FIR filter. PR #811
|
||||||
|
* HackRF: auto baseband filter and hardware LO correction PR #812, 824
|
||||||
|
* DATV demod: many fixes to improve stabilty of DVB-S2
|
||||||
|
* ChirpChat demod: LoRa APRS support. PR #814, 815
|
||||||
|
* SatTracker: Fixed Doppler timing interval. PR #818
|
||||||
|
* DemodAnalyzer: Support Packer demod. PR #820
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Mon, 29 Mar 2021 19:09:55 +0200
|
||||||
|
|
||||||
sdrangel (6.6.2-1) unstable; urgency=medium
|
sdrangel (6.6.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
* FileSink: File name handling in settings and API. PR #798
|
* FileSink: File name handling in settings and API. PR #798
|
||||||
|
@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||||||
|
|
||||||
# configure version
|
# configure version
|
||||||
set(sdrangel_VERSION_MAJOR "6")
|
set(sdrangel_VERSION_MAJOR "6")
|
||||||
set(sdrangel_VERSION_MINOR "6")
|
set(sdrangel_VERSION_MINOR "7")
|
||||||
set(sdrangel_VERSION_PATCH "2")
|
set(sdrangel_VERSION_PATCH "0")
|
||||||
set(sdrangel_VERSION_SUFFIX "")
|
set(sdrangel_VERSION_SUFFIX "")
|
||||||
|
|
||||||
# SDRAngel cmake options
|
# SDRAngel cmake options
|
||||||
|
15
debian/changelog
vendored
15
debian/changelog
vendored
@ -1,3 +1,18 @@
|
|||||||
|
sdrangel (6.7.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New DATV modulator plugin: DVB-S modulator. PR #810
|
||||||
|
* FileInput: Sample rate fixes, PR #803
|
||||||
|
* Set depending objects to nullptr before deleting GUI. Fixes #806
|
||||||
|
* SSB demod: increase audio volume range to -10 to +40 dB.
|
||||||
|
* Fix impulse response of FIR filter. PR #811
|
||||||
|
* HackRF: auto baseband filter and hardware LO correction PR #812, 824
|
||||||
|
* DATV demod: many fixes to improve stabilty of DVB-S2
|
||||||
|
* ChirpChat demod: LoRa APRS support. PR #814, 815
|
||||||
|
* SatTracker: Fixed Doppler timing interval. PR #818
|
||||||
|
* DemodAnalyzer: Support Packer demod. PR #820
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Mon, 29 Mar 2021 19:09:55 +0200
|
||||||
|
|
||||||
sdrangel (6.6.2-1) unstable; urgency=medium
|
sdrangel (6.6.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
* FileSink: File name handling in settings and API. PR #798
|
* FileSink: File name handling in settings and API. PR #798
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
|
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
|
||||||
ChannelAnalyzer::m_channelId,
|
ChannelAnalyzer::m_channelId,
|
||||||
QStringLiteral("Channel Analyzer"),
|
QStringLiteral("Channel Analyzer"),
|
||||||
QStringLiteral("6.6.2"),
|
QStringLiteral("6.7.0"),
|
||||||
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 ATVDemodPlugin::m_ptrPluginDescriptor =
|
|||||||
{
|
{
|
||||||
ATVDemod::m_channelId,
|
ATVDemod::m_channelId,
|
||||||
QString("ATV Demodulator"),
|
QString("ATV Demodulator"),
|
||||||
QString("6.3.1"),
|
QString("6.7.0"),
|
||||||
QString("(c) F4HKW for F4EXB / SDRAngel"),
|
QString("(c) F4HKW for F4EXB / SDRAngel"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
|
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
|
||||||
ChirpChatDemod::m_channelId,
|
ChirpChatDemod::m_channelId,
|
||||||
QStringLiteral("ChirpChat Demodulator"),
|
QStringLiteral("ChirpChat Demodulator"),
|
||||||
QStringLiteral("6.3.3"),
|
QStringLiteral("6.7.0"),
|
||||||
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 DATVDemodPlugin::m_ptrPluginDescriptor =
|
|||||||
{
|
{
|
||||||
DATVDemod::m_channelId,
|
DATVDemod::m_channelId,
|
||||||
QString("DATV Demodulator"),
|
QString("DATV Demodulator"),
|
||||||
QString("6.6.2"),
|
QString("6.7.0"),
|
||||||
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
|
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
|
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
|
||||||
DSDDemod::m_channelId,
|
DSDDemod::m_channelId,
|
||||||
QStringLiteral("DSD Demodulator"),
|
QStringLiteral("DSD Demodulator"),
|
||||||
QStringLiteral("6.6.1"),
|
QStringLiteral("6.7.0"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
||||||
SSBDemod::m_channelId,
|
SSBDemod::m_channelId,
|
||||||
QStringLiteral("SSB Demodulator"),
|
QStringLiteral("SSB Demodulator"),
|
||||||
QStringLiteral("6.6.1"),
|
QStringLiteral("6.7.0"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -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.4.0"),
|
QStringLiteral("6.7.0"),
|
||||||
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.6.1"),
|
QStringLiteral("6.7.0"),
|
||||||
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,
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("HackRF"),
|
QStringLiteral("HackRF"),
|
||||||
QStringLiteral("HackRF Output"),
|
QStringLiteral("HackRF Output"),
|
||||||
QStringLiteral("4.19.0"),
|
QStringLiteral("6.7.0"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("FileInput"),
|
QStringLiteral("FileInput"),
|
||||||
QStringLiteral("File device input"),
|
QStringLiteral("File device input"),
|
||||||
QStringLiteral("4.19.0"),
|
QStringLiteral("6.7.0"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("HackRF"),
|
QStringLiteral("HackRF"),
|
||||||
QStringLiteral("HackRF Input"),
|
QStringLiteral("HackRF Input"),
|
||||||
QStringLiteral("4.19.0"),
|
QStringLiteral("6.7.0"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
Loading…
Reference in New Issue
Block a user