diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 15 insertions, 3 deletions
@@ -1,6 +1,18 @@ This file contains information about the changes done to ODR-DabMod in this repository +2019-01-23: Matthias P. Braendli <matthias@mpb.li> + (v2.3.0): + Many improvements on GUI and DPDCE: It is now possible + to control the predistortion entirely through the web GUI. + See `python/README.md` for more. + Add SDR temperature to RC and munin. + Fix I/Q s16 output format. + SoapySDR output: do not set master clock rate if it is 0. + Fix warning about feedback server. + Fix digital gain being forgotten after an input stream interruption. + Handle negative tist offset settings. + 2018-08-07: Matthias P. Braendli <matthias@mpb.li> (v2.2.0): Fix bug in CFR implementation that was introduced in v2.1.0. @@ -35,7 +35,7 @@ Features - ZeroMQ PUB and REP output. - Ongoing work about digital predistortion for PA linearisation. See python/dpd/README.md -- Ongoign work for a web GUI. See python/gui/README.md +- A web GUI for control and supervision of modulator and predistortion engine. See python/gui/README.md - A prototype algorithm for crest factor reduction. The src/ directory contains the source code of ODR-DabMod. diff --git a/configure.ac b/configure.ac index 753b407..0e7d946 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Her Majesty the # Queen in Right of Canada (Communications Research Center Canada) -# Copyright (C) 2018 Matthias P. Braendli, http://opendigitalradio.org +# Copyright (C) 2019 Matthias P. Braendli, http://opendigitalradio.org # This file is part of ODR-DabMod. # @@ -19,7 +19,7 @@ # along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.69) -AC_INIT([ODR-DabMod], [2.2.0], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMod], [2.3.0], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_SYSTEM |