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
25a4118e16
commit
fcbb383978
11
CHANGELOG
11
CHANGELOG
@ -1,3 +1,14 @@
|
||||
sdrangel (6.8.0-1) unstable; urgency=medium
|
||||
|
||||
* New Packet Error Tester feature plugin. PR #836
|
||||
* DATV modulator plugin: DVB-S2 implementation. PR #826
|
||||
* DATV demodulator: various fixes including internal player. Issue #833
|
||||
* Fixed station position altitude setting. Issue #828
|
||||
* APRS feature: choose between metric and imperial units. Issue #829
|
||||
* AudioOutput plugin: fixed REST API device settings PUT.PATCH. Issue #837
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 08 Apr 2021 17:26:09 +0200
|
||||
|
||||
sdrangel (6.7.0-1) unstable; urgency=medium
|
||||
|
||||
* New DATV modulator plugin: DVB-S modulator. PR #810
|
||||
|
@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "6")
|
||||
set(sdrangel_VERSION_MINOR "7")
|
||||
set(sdrangel_VERSION_MINOR "8")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
|
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,3 +1,14 @@
|
||||
sdrangel (6.8.0-1) unstable; urgency=medium
|
||||
|
||||
* New Packet Error Tester feature plugin. PR #836
|
||||
* DATV modulator plugin: DVB-S2 implementation. PR #826
|
||||
* DATV demodulator: various fixes including internal player. Issue #833
|
||||
* Fixed station position altitude setting. Issue #828
|
||||
* APRS feature: choose between metric and imperial units. Issue #829
|
||||
* AudioOutput plugin: fixed REST API device settings PUT.PATCH. Issue #837
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 08 Apr 2021 17:26:09 +0200
|
||||
|
||||
sdrangel (6.7.0-1) unstable; urgency=medium
|
||||
|
||||
* New DATV modulator plugin: DVB-S modulator. PR #810
|
||||
|
@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
|
||||
{
|
||||
DATVDemod::m_channelId,
|
||||
QString("DATV Demodulator"),
|
||||
QString("6.7.0"),
|
||||
QString("6.8.0"),
|
||||
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = {
|
||||
PacketDemod::m_channelId,
|
||||
QStringLiteral("Packet Demodulator"),
|
||||
QStringLiteral("6.5.1"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor IEEE_802_15_4_ModPlugin::m_pluginDescriptor = {
|
||||
IEEE_802_15_4_Mod::m_channelId,
|
||||
QStringLiteral("802.15.4 Modulator"),
|
||||
QStringLiteral("6.3.3"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -28,7 +28,7 @@
|
||||
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
|
||||
ChirpChatMod::m_channelId,
|
||||
QStringLiteral("ChirpChat Modulator"),
|
||||
QStringLiteral("6.3.3"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor DATVModPlugin::m_pluginDescriptor = {
|
||||
DATVMod::m_channelId,
|
||||
QStringLiteral("DATV Modulator"),
|
||||
QStringLiteral("6.7.1"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE, Edouard Griffiths, F4EXB. DVB-S2 by G4GUO"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor APRSPlugin::m_pluginDescriptor = {
|
||||
APRS::m_featureId,
|
||||
QStringLiteral("APRS"),
|
||||
QStringLiteral("6.7.1"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor PERTesterPlugin::m_pluginDescriptor = {
|
||||
PERTester::m_featureId,
|
||||
QStringLiteral("Packet Error Rate Tester"),
|
||||
QStringLiteral("6.7.1"),
|
||||
QStringLiteral("6.8.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.7.0"),
|
||||
QStringLiteral("6.8.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor AudioOutputPlugin::m_pluginDescriptor = {
|
||||
QString("AudioOutput"),
|
||||
QString("Audio output"),
|
||||
QString("6.1.0"),
|
||||
QString("6.8.0"),
|
||||
QString("(c) Edouard Griffiths, F4EXB"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user