diff --git a/CHANGELOG b/CHANGELOG index a4c70b65c..18c67dbdf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,25 @@ +sdrangel (6.17.5-1) unstable; urgency=medium + + * ADSB demod and VOR feature: Always use C locale for parsing coords in airport database. + Fix #1062. PR #1065 + * Implement serialize and deserialize to/from API in Serializable interface. Pre #1050 + * SDRplay v1: fixed frequency boundaries in report. Fixes #1061 + * Ubuntu build: added qm-module dependencies in the Depend section. Fixes #1063 + * Map feature: Add IBP beacons and GRAVES. Display locator not location. PR #1071 + * Implemented Channel Marker settings in API. Pre #1050 + * RemoteInput: set system UDP buffer length for 250 ms of samples. + RemoteSink: removed UDP Tx delay. Implements #1069 + * Increase FIFO size in Remote Sink according to baseband sample rate. Issue #1069. PR #1075 + * GUI flavor: save and restore the device item index for the initial set up (R0). Fixes #1066 + * MainWindow: use pop_back() to remove last element of vector. Fixes #1070 + * Remote source and output: changes and fixes implementing #868 + * Rotator controller - Don't round az/el received from Sat Tracker. PR #1076 + * Display warnings in ADS-B and DAB if sample rate is too low. PR #1082 + * Display OpenGL version in status bar. Displayed in red if less than version 3. PR #1083 + * Replaced frequency dials by labels for unmodifiable frequency displays + + -- Edouard Griffiths, F4EXB Thu, 16 Dec 2021 07:46:31 +0100 + sdrangel (6.17.4-1) unstable; urgency=medium * Basic instance save and restore wihth scripts dump.py and config,py diff --git a/CMakeLists.txt b/CMakeLists.txt index d2492450f..2b26782d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MINOR "17") -set(sdrangel_VERSION_PATCH "4") +set(sdrangel_VERSION_PATCH "5") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 65e78b771..351a6a4b4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +sdrangel (6.17.5-1) unstable; urgency=medium + + * ADSB demod and VOR feature: Always use C locale for parsing coords in airport database. + Fix #1062. PR #1065 + * Implement serialize and deserialize to/from API in Serializable interface. Pre #1050 + * SDRplay v1: fixed frequency boundaries in report. Fixes #1061 + * Ubuntu build: added qm-module dependencies in the Depend section. Fixes #1063 + * Map feature: Add IBP beacons and GRAVES. Display locator not location. PR #1071 + * Implemented Channel Marker settings in API. Pre #1050 + * RemoteInput: set system UDP buffer length for 250 ms of samples. + RemoteSink: removed UDP Tx delay. Implements #1069 + * Increase FIFO size in Remote Sink according to baseband sample rate. Issue #1069. PR #1075 + * GUI flavor: save and restore the device item index for the initial set up (R0). Fixes #1066 + * MainWindow: use pop_back() to remove last element of vector. Fixes #1070 + * Remote source and output: changes and fixes implementing #868 + * Rotator controller - Don't round az/el received from Sat Tracker. PR #1076 + * Display warnings in ADS-B and DAB if sample rate is too low. PR #1082 + * Display OpenGL version in status bar. Displayed in red if less than version 3. PR #1083 + * Replaced frequency dials by labels for unmodifiable frequency displays + + -- Edouard Griffiths, F4EXB Thu, 16 Dec 2021 07:46:31 +0100 + sdrangel (6.17.4-1) unstable; urgency=medium * Basic instance save and restore wihth scripts dump.py and config,py diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp index 02f5b35f9..e80193b4c 100644 --- a/plugins/channelrx/demodadsb/adsbplugin.cpp +++ b/plugins/channelrx/demodadsb/adsbplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor ADSBPlugin::m_pluginDescriptor = { ADSBDemod::m_channelId, QStringLiteral("ADS-B Demodulator"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demoddab/dabdemodplugin.cpp b/plugins/channelrx/demoddab/dabdemodplugin.cpp index e4523b670..ad33f9368 100644 --- a/plugins/channelrx/demoddab/dabdemodplugin.cpp +++ b/plugins/channelrx/demoddab/dabdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DABDemodPlugin::m_pluginDescriptor = { DABDemod::m_channelId, QStringLiteral("DAB Demodulator"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE. DAB library by Jvan Katwijk"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodvor/vordemodplugin.cpp b/plugins/channelrx/demodvor/vordemodplugin.cpp index 88cdcb46d..59a19dd42 100644 --- a/plugins/channelrx/demodvor/vordemodplugin.cpp +++ b/plugins/channelrx/demodvor/vordemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = { VORDemod::m_channelId, QStringLiteral("VOR Demodulator"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/remotesource/remotesourceplugin.cpp b/plugins/channeltx/remotesource/remotesourceplugin.cpp index ac9abc2a6..dce19f4d9 100644 --- a/plugins/channeltx/remotesource/remotesourceplugin.cpp +++ b/plugins/channeltx/remotesource/remotesourceplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor RemoteSourcePlugin::m_pluginDescriptor = { RemoteSource::m_channelId, QStringLiteral("Remote channel source"), - QStringLiteral("6.3.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index 14c1cc18b..7fdb6f1e5 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("Rotator Controller"), - QStringLiteral("6.17.4"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index a094505c0..e83ffb255 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("6.17.4"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp index 634acba2e..061ba9ff5 100644 --- a/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp +++ b/plugins/feature/vorlocalizer/vorlocalizerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = { VORLocalizer::m_featureId, QStringLiteral("VOR Localizer"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesink/localoutput/readme.md b/plugins/samplesink/localoutput/readme.md index a25993a3d..fedd3fcfd 100644 --- a/plugins/samplesink/localoutput/readme.md +++ b/plugins/samplesink/localoutput/readme.md @@ -17,7 +17,7 @@ Device start / stop button.

2: Frequency

-This is the center frequency in Hz sent from the Local Source channel instance and corresponds to the center frequency of transmission. The sub kHz value (000 to 999 Hz) is represented in smaller digits on the right. +This is the center frequency in Hz sent from the Local Source channel instance and corresponds to the center frequency of transmission.

3: Stream sample rate

diff --git a/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp b/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp index 85694359d..377e08a4c 100644 --- a/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp +++ b/plugins/samplesink/remoteoutput/remoteoutputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor RemoteOutputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteOutput"), QStringLiteral("Remote device output"), - QStringLiteral("4.19.0"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/fileinput/fileinputplugin.cpp b/plugins/samplesource/fileinput/fileinputplugin.cpp index 85dd27153..e7ef10d79 100644 --- a/plugins/samplesource/fileinput/fileinputplugin.cpp +++ b/plugins/samplesource/fileinput/fileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor FileInputPlugin::m_pluginDescriptor = { QStringLiteral("FileInput"), QStringLiteral("File device input"), - QStringLiteral("6.16.2"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/localinput/localinputplugin.cpp b/plugins/samplesource/localinput/localinputplugin.cpp index 7c5fc128b..10d45feec 100644 --- a/plugins/samplesource/localinput/localinputplugin.cpp +++ b/plugins/samplesource/localinput/localinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor LocalInputPlugin::m_pluginDescriptor = { QStringLiteral("LocalInput"), QStringLiteral("Local device input"), - QStringLiteral("4.19.0"), + QStringLiteral("4.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/localinput/readme.md b/plugins/samplesource/localinput/readme.md index 726446c67..119d5abb7 100644 --- a/plugins/samplesource/localinput/readme.md +++ b/plugins/samplesource/localinput/readme.md @@ -17,7 +17,7 @@ Device start / stop button.

3: Frequency

-This is the center frequency in Hz sent from the Local Sink channel instance and corresponds to the center frequency of reception. The sub kHz value (000 to 999 Hz) is represented in smaller digits on the right. +This is the center frequency in Hz sent from the Local Sink channel instance and corresponds to the center frequency of reception.

4: Stream sample rate

diff --git a/plugins/samplesource/remoteinput/readme.md b/plugins/samplesource/remoteinput/readme.md index 9209884b0..d7b0c21b7 100644 --- a/plugins/samplesource/remoteinput/readme.md +++ b/plugins/samplesource/remoteinput/readme.md @@ -29,7 +29,7 @@ Device start / stop button.

2: Frequency

-This is the center frequency in Hz sent in the meta data from the remote SDRangel instance and corresponds to the center frequency of reception. The sub kHz value (000 to 999 Hz) is represented in smaller digits on the right. +This is the center frequency in Hz sent in the meta data from the remote SDRangel instance and corresponds to the center frequency of reception.

3: Stream sample rate

diff --git a/plugins/samplesource/remoteinput/remoteinputplugin.cpp b/plugins/samplesource/remoteinput/remoteinputplugin.cpp index b60ccb539..234d629d9 100644 --- a/plugins/samplesource/remoteinput/remoteinputplugin.cpp +++ b/plugins/samplesource/remoteinput/remoteinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = { QStringLiteral("RemoteInput"), QStringLiteral("Remote device input"), - QStringLiteral("6.17.3"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplay/sdrplayplugin.cpp b/plugins/samplesource/sdrplay/sdrplayplugin.cpp index f8a30a074..0ae355034 100644 --- a/plugins/samplesource/sdrplay/sdrplayplugin.cpp +++ b/plugins/samplesource/sdrplay/sdrplayplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SDRPlayPlugin::m_pluginDescriptor = { QStringLiteral("SDRPlay"), QStringLiteral("SDRPlay RSP1 Input"), - QStringLiteral("4.19.0"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp index 50c0f7177..455dffbf6 100644 --- a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp +++ b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { QStringLiteral("SigMFFileInput"), QStringLiteral("File device input (SigMF)"), - QStringLiteral("6.0.0"), + QStringLiteral("6.17.5"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,