diff --git a/CHANGELOG b/CHANGELOG index 80bb88d55..1c13fe7aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +sdrangel (4.11.7-1) unstable; urgency=medium + + * GLSpectrum and GLScope: fixed possible issues with mutex handling + * Channel Analyzer: use FFTW engine with Hamming window for auto correlation + * Package build: use DSDcc v1.8.6 to fix issue #406 with DSD decoder + * Use a simplified version of sample FIFOs in the threaded baseband sample sink + + -- Edouard Griffiths, F4EXB Sat, 24 Aug 2019 06:04:06 +0200 + sdrangel (4.11.6-1) unstable; urgency=medium * REST API /sdrange/config endpoint with GET, PUT, PATCH. Implements #241 diff --git a/CMakeLists.txt b/CMakeLists.txt index a1ce97475..06579e401 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) # configure version set(sdrangel_VERSION_MAJOR "4") set(sdrangel_VERSION_MINOR "11") -set(sdrangel_VERSION_PATCH "6") +set(sdrangel_VERSION_PATCH "7") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 80bb88d55..1c13fe7aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sdrangel (4.11.7-1) unstable; urgency=medium + + * GLSpectrum and GLScope: fixed possible issues with mutex handling + * Channel Analyzer: use FFTW engine with Hamming window for auto correlation + * Package build: use DSDcc v1.8.6 to fix issue #406 with DSD decoder + * Use a simplified version of sample FIFOs in the threaded baseband sample sink + + -- Edouard Griffiths, F4EXB Sat, 24 Aug 2019 06:04:06 +0200 + sdrangel (4.11.6-1) unstable; urgency=medium * REST API /sdrange/config endpoint with GET, PUT, PATCH. Implements #241 diff --git a/plugins/channelrx/localsink/readme.md b/plugins/channelrx/localsink/readme.md index 13f76d1f6..9a161ef75 100644 --- a/plugins/channelrx/localsink/readme.md +++ b/plugins/channelrx/localsink/readme.md @@ -12,6 +12,8 @@ These Local Sinks can then be coupled with two Local Input device source plugins Note that because it uses only the channelizer half band filter chain to achieve decimation and center frequency shift you have a limited choice on the center frequencies that may be used (similarly to the Remote Sink). The available center frequencies depend on the baseband sample rate, the channel decimation and the filter chain that is used so you have to play with these parameters to obtain a suitable center frequency and pass band. +⚠ Important warning When closing the application or before closing the local input device the local sink is connected to you have to stop the device where the local sink operates. This is because there is no reverse link for the local input to notify the local sink that it closes. Therefore closing the local input while the local sink runs will crash the program. +

Interface

![Local sink channel plugin GUI](../../../doc/img/LocalSink.png)