summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Merlino <regis.merlino@intel.com>2013-10-03 14:47:06 +0200
committerRegis Merlino <regis.merlino@intel.com>2013-10-03 14:47:06 +0200
commitdb906634a8e88ce4264c6f1b6064689e6d087845 (patch)
treec2bb1a7eaaac54484cf8b93955e7ab45ed297e08
parente10c86649ddf4efa7d9dd8fabc73ae5d6d4b7135 (diff)
downloaddleyna-renderer-db906634a8e88ce4264c6f1b6064689e6d087845.tar.gz
[Release] Version 0.4.0v0.4.0
Signed-off-by: Regis Merlino <regis.merlino@intel.com>
-rw-r--r--ChangeLog13
-rw-r--r--configure.ac4
2 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 585d4a0..6863f15 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+version 0.4.0
+ - Logs: provide correct component version
+ - Fix typos in the rendererconsole.py test application
+ - Use GUPnP Mime Type if available
+ https://github.com/01org/dleyna-renderer/issues/120
+ - Fix dlr_device_set_position implementation
+ https://github.com/01org/dleyna-renderer/issues/115
+ - Fix dlr_device_seek implementation
+ https://github.com/01org/dleyna-renderer/issues/115
+ - Fix a couple of memory leaks
+ - New network filtering API
+ - The 'never quit' option can be set via the connector
+
version 0.2.2
- Various build optimizations
- Fix a crash case when the server stops
diff --git a/configure.ac b/configure.ac
index 25a53e9..3ea0fa7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_PREREQ([2.66])
AC_INIT([dleyna-renderer],
- [0.2.3],
+ [0.4.0],
[https://github.com/01org/dleyna-renderer/issues/new],
,
[https://01.org/dleyna/])
@@ -83,7 +83,7 @@ AC_ARG_ENABLE(master-build,,
[master_build=no])
AS_IF([test "x$master_build" = "xno"],
- [PKG_CHECK_MODULES([DLEYNA_CORE], [dleyna-core-1.0 >= 0.2.2])],
+ [PKG_CHECK_MODULES([DLEYNA_CORE], [dleyna-core-1.0 >= 0.4.0])],
[this_abs_top_srcdir=`cd "$srcdir" && pwd`;
DLEYNA_CORE_CFLAGS="-I$this_abs_top_srcdir/../dleyna-core";
DLEYNA_CORE_LIBS="-L$this_abs_top_srcdir/../dleyna-core/.libs -ldleyna-core-1.0"