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 Mar 9, 2022
1 parent 82ebab8 commit ae93186
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
sdrangel (6.20.1-1) unstable; urgency=medium

* Removed built in HIDAPI. Fixes #1160
* ADSB demod: do not process channel sample rate when it is zero. Fixes #1165
* Fixed spectrum markers dynamic values. Fixes #1140

-- Edouard Griffiths, F4EXB <[email protected]> Wed, 09 Mar 2022 18:11:18 +0100

sdrangel (6.20.0-1) unstable; urgency=medium

* New radiosonde plugin. PR #1170. Implements #1081.
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 "6")
set(sdrangel_VERSION_MINOR "20")
set(sdrangel_VERSION_PATCH "0")
set(sdrangel_VERSION_PATCH "1")
set(sdrangel_VERSION_SUFFIX "")

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

* Removed built in HIDAPI. Fixes #1160
* ADSB demod: do not process channel sample rate when it is zero. Fixes #1165
* Fixed spectrum markers dynamic values. Fixes #1140

-- Edouard Griffiths, F4EXB <[email protected]> Wed, 09 Mar 2022 18:11:18 +0100

sdrangel (6.20.0-1) unstable; urgency=medium

* New radiosonde plugin. PR #1170. Implements #1081.
Expand Down
4 changes: 2 additions & 2 deletions fcdlib/fcdtraits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const char *fcd_traits<ProPlus>::displayedName = "FunCube Dongle Pro+";
const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input";
const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";

const char *fcd_traits<Pro>::pluginVersion = "4.19.0";
const char *fcd_traits<ProPlus>::pluginVersion = "4.19.0";
const char *fcd_traits<Pro>::pluginVersion = "6.20.1";
const char *fcd_traits<ProPlus>::pluginVersion = "6.20.1";

const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 150000L;
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("6.19.1"),
QStringLiteral("6.20.1"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
true,
Expand Down

0 comments on commit ae93186

Please sign in to comment.