summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-12-09 23:04:54 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-12-09 23:09:37 +0100
commit94c1f63b6fd07d74f3325274dd19fd6beaf53965 (patch)
tree0d3cb20eec32ab90ed97395262a3c9de0d298ba9
parent66eb4a62eb4c781f427e1938a7d42e2facf8194c (diff)
downloaddabmod-0.5.0.tar.gz
dabmod-0.5.0.tar.bz2
dabmod-0.5.0.zip
Prepare v0.5.0v0.5.0
-rw-r--r--ChangeLog8
-rw-r--r--Makefile.am6
-rw-r--r--configure.ac4
3 files changed, 14 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 28a9f04..e005721 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
This file contains information about the changes done to
the ODR-DabMod in this repository
+2014-12-09: Matthias P. Braendli <matthias@mpb.li>
+ (v0.5.0)
+ * odr-dabmod:
+ Add support for ARM processors.
+ Use FFTW instead of KISS FFT by default.
+ Add a ZeroMQ I/Q output.
+ Support more fine-grained UHD TX gain.
+ Make the -C flag optional to simplify the usage.
2014-09-26: Matthias P. Braendli <matthias@mpb.li>
(v0.4.5)
* odr-dabmod:
diff --git a/Makefile.am b/Makefile.am
index f599871..c0b3024 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,7 @@
# Copyright (C) 2007, 2008, 2009, 2010 Her Majesty the Queen in Right
# of Canada (Communications Research Center Canada)
+#
+# Copyright (C) 2014 Matthias P. Braendli, http://mpb.li
# This file is part of ODR-DabMod.
#
@@ -16,8 +18,8 @@
# You should have received a copy of the GNU General Public License
# along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>.
-SUBDIRS =src lib
+SUBDIRS = src lib
ACLOCAL_AMFLAGS = -I m4
-EXTRA_DIST =COPYING NEWS README AUTHORS ChangeLog TODO doc
+EXTRA_DIST = COPYING NEWS README.md AUTHORS ChangeLog TODO doc
diff --git a/configure.ac b/configure.ac
index 005b1fc..615bf6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,10 +19,10 @@
# along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.59)
-AC_INIT([ODR-DabMod], [0.4.5], [matthias.braendli@mpb.li])
+AC_INIT([ODR-DabMod], [0.5.0], [matthias.braendli@mpb.li])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE([-Wall])
+AM_INIT_AUTOMAKE([-Wall foreign])
AC_CONFIG_SRCDIR([src/DabMod.cpp])
AM_CONFIG_HEADER([config.h])
AM_SILENT_RULES([yes])