Updated versions and changelogs

pull/1288/head v7.3.2
f4exb 2022-06-12 23:46:08 +02:00
rodzic 225f8ef0b3
commit 9b2c7511fe
10 zmienionych plików z 42 dodań i 8 usunięć

Wyświetl plik

@ -1,3 +1,20 @@
sdrangel (7.3.2-1) unstable; urgency=medium
* Use libusb 1.0.26 on Windows
* NFM mod: make pre-emphasis and CTCSS highpass filter optional
* ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280
* ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280
* ADS-B: Support different map types for mapboxgl. PR #1280
* Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280
* Disable NAN and INF optimisations, as NANs are used in some code. PR #1281
* VOR Localizer: Add support for DVORs. PR #1282
* Add DVORs to ADS-B. PR #1282
* USRP: Check if device supports automatic clock rate. Issue #1278
* Radio Clock: fixed common channel settings menu trigger. Fixes #1286
* Features: fixed common settings menu placement. Issue #1286
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 12 Jun 2022 21:42:51 +0200
sdrangel (7.3.1-1) unstable; urgency=medium
* DOA2 plugin: various fixes

Wyświetl plik

@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version
set(sdrangel_VERSION_MAJOR "7")
set(sdrangel_VERSION_MINOR "3")
set(sdrangel_VERSION_PATCH "1")
set(sdrangel_VERSION_PATCH "2")
set(sdrangel_VERSION_SUFFIX "")
# SDRAngel cmake options

17
debian/changelog vendored
Wyświetl plik

@ -1,3 +1,20 @@
sdrangel (7.3.2-1) unstable; urgency=medium
* Use libusb 1.0.26 on Windows
* NFM mod: make pre-emphasis and CTCSS highpass filter optional
* ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280
* ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280
* ADS-B: Support different map types for mapboxgl. PR #1280
* Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280
* Disable NAN and INF optimisations, as NANs are used in some code. PR #1281
* VOR Localizer: Add support for DVORs. PR #1282
* Add DVORs to ADS-B. PR #1282
* USRP: Check if device supports automatic clock rate. Issue #1278
* Radio Clock: fixed common channel settings menu trigger. Fixes #1286
* Features: fixed common settings menu placement. Issue #1286
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 12 Jun 2022 21:42:51 +0200
sdrangel (7.3.1-1) unstable; urgency=medium
* DOA2 plugin: various fixes

Wyświetl plik

@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -29,7 +29,7 @@
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
RadioClock::m_channelId,
QStringLiteral("Radio Clock"),
QStringLiteral("7.0.0"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -28,7 +28,7 @@
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
NFMMod::m_channelId,
QStringLiteral("NFM Modulator"),
QStringLiteral("7.0.0"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -30,7 +30,7 @@
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
Map::m_featureId,
QStringLiteral("Map"),
QStringLiteral("7.0.0"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -29,7 +29,7 @@
const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = {
VORLocalizer::m_featureId,
QStringLiteral("VOR Localizer"),
QStringLiteral("7.0.0"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -35,7 +35,7 @@
const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = {
QStringLiteral("USRP"),
QStringLiteral("URSP Output"),
QStringLiteral("7.3.1"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,

Wyświetl plik

@ -35,7 +35,7 @@
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
QStringLiteral("USRP"),
QStringLiteral("USRP Input"),
QStringLiteral("7.3.1"),
QStringLiteral("7.3.2"),
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,