Skip to content

Commit

Permalink
Updated versions and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Sep 1, 2022
1 parent 9cd7e9f commit d9ad758
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 9 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
sdrangel (7.6.3-1) unstable; urgency=medium

* NFM modulator: try to improve audio input
* Simple PTT: fixed status indicator
* LimeRFE feature: fixed settings API
* ScriptsAPI: fixed dump.py and config.py to match v7 requirements
* ScriptsAPI: removed obsolete config.py -I option
* ScriptsAPI: new ptt_feature.py based on PTT amd LimeRFE features
* LimeSDR: reduced LimeSDR stream FIFO size to 256k to improve latency
* LimeSDR: better handle calibration errors. Fix #1389. PR #1391
* LimeSDR: Set Lime minimum frequency in GUI to 30MHz+NCO freq. Fix #1389. PR #1391
* LimeSDR: Set minimum calibration bandwidth to 2.5MHz. Fix #1389. PR #1391
* LimeSDR: Report calibration errors in GUI. Fix #1389. PR #1395
* LimeSDR: Check LPF is reasonable for up/downconversion. Fix #1389. PR #1395
* ADS-B: Add support for decoding Comm-B replies in Mode-S frames. PR #1393
* ADS-B: Check ICAO in sink worker, so CRC can be checked. Fix warnings. PR #1393
* Add start/stop all devices of workspace button in workspace toolbar. PR #1394
* Add device stateChanged signal. Use in RTL SDR GUI. PR #1394
* Remove ? in Window's title bar. Fixes #1312. PR #1399

-- Edouard Griffiths, F4EXB <[email protected]> Thu, 01 Sep 2022 19:46:21 +0200

sdrangel (7.6.2-1) unstable; urgency=medium

* MacOS build fixes. PR #1374
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version
set(sdrangel_VERSION_MAJOR "7")
set(sdrangel_VERSION_MINOR "6")
set(sdrangel_VERSION_PATCH "2")
set(sdrangel_VERSION_PATCH "3")
set(sdrangel_VERSION_SUFFIX "")

# SDRAngel cmake options
Expand Down
22 changes: 22 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
sdrangel (7.6.3-1) unstable; urgency=medium

* NFM modulator: try to improve audio input
* Simple PTT: fixed status indicator
* LimeRFE feature: fixed settings API
* ScriptsAPI: fixed dump.py and config.py to match v7 requirements
* ScriptsAPI: removed obsolete config.py -I option
* ScriptsAPI: new ptt_feature.py based on PTT amd LimeRFE features
* LimeSDR: reduced LimeSDR stream FIFO size to 256k to improve latency
* LimeSDR: better handle calibration errors. Fix #1389. PR #1391
* LimeSDR: Set Lime minimum frequency in GUI to 30MHz+NCO freq. Fix #1389. PR #1391
* LimeSDR: Set minimum calibration bandwidth to 2.5MHz. Fix #1389. PR #1391
* LimeSDR: Report calibration errors in GUI. Fix #1389. PR #1395
* LimeSDR: Check LPF is reasonable for up/downconversion. Fix #1389. PR #1395
* ADS-B: Add support for decoding Comm-B replies in Mode-S frames. PR #1393
* ADS-B: Check ICAO in sink worker, so CRC can be checked. Fix warnings. PR #1393
* Add start/stop all devices of workspace button in workspace toolbar. PR #1394
* Add device stateChanged signal. Use in RTL SDR GUI. PR #1394
* Remove ? in Window's title bar. Fixes #1312. PR #1399

-- Edouard Griffiths, F4EXB <[email protected]> Thu, 01 Sep 2022 19:46:21 +0200

sdrangel (7.6.2-1) unstable; urgency=medium

* MacOS build fixes. PR #1374
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelrx/demodadsb/adsbplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
ADSBDemod::m_channelId,
QStringLiteral("ADS-B Demodulator"),
QStringLiteral("7.3.2"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/channeltx/modnfm/nfmmodplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
NFMMod::m_channelId,
QStringLiteral("NFM Modulator"),
QStringLiteral("7.3.2"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/limerfe/limerfeplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor LimeRFEPlugin::m_pluginDescriptor = {
LimeRFE::m_featureId,
QStringLiteral("LimeRFE USB Controller"),
QStringLiteral("7.1.0"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/feature/simpleptt/simplepttplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
SimplePTT::m_featureId,
QStringLiteral("Simple PTT"),
QStringLiteral("7.6.2"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplemimo/limesdrmimo/limesdrmimoplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
const PluginDescriptor LimeSDRMIMOPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR MIMO"),
QStringLiteral("7.0.0"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesink/limesdroutput/limesdroutputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Output"),
QStringLiteral("7.0.0"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesource/limesdrinput/limesdrinputplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
QStringLiteral("LimeSDR"),
QStringLiteral("LimeSDR Input"),
QStringLiteral("7.0.0"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/samplesource/rtlsdr/rtlsdrplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
QStringLiteral("RTLSDR"),
QStringLiteral("RTL-SDR Input"),
QStringLiteral("7.0.0"),
QStringLiteral("7.6.3"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down

0 comments on commit d9ad758

Please sign in to comment.