From: ddennedy Date: Wed, 15 Apr 2009 04:21:47 +0000 (+0000) Subject: bump to version 0.3.8 X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=bb2674a23b551cbc146d40ff7a122c87856b49ff;p=melted bump to version 0.3.8 Signed-off-by: Dan Dennedy git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1403 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/NEWS b/NEWS index 5843835..f96d4ad 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,28 @@ MLT Release Notes ----------------- +Version 0.3.8 + +The recommended version of FFmpeg for use with this release is SVN r17923. + +This almost entirely a bugfix release to coincide with the Kdenlive 0.7.3 +release. See the ChangeLog (SVN log) for details. + +framework: +* added mlt_cache API +* improved doxygen documentation comments +* added some 15 fps profiles +* improved color property handling (support web-style '#' color value) +* add const qualifier to many string parameters + +modules: +* core: improved brightness filter +* core: added image crop filter +* frei0r: added support for producer/source plugins +* frei0r: added support for color parameters +* sdl: added window_background color property + + Version 0.3.6 The recommended version of FFmpeg for use with this release is SVN r16849. diff --git a/configure b/configure index b86a9e9..42262d7 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #!/bin/sh -export version=0.3.7 +export version=0.3.8 export soversion=1 show_help() diff --git a/src/framework/mlt.h b/src/framework/mlt.h index 83650b4..d54a0f1 100644 --- a/src/framework/mlt.h +++ b/src/framework/mlt.h @@ -23,8 +23,8 @@ #ifndef _MLT_H_ #define _MLT_H_ -#define LIBMLT_VERSION_INT ((0<<16)+(3<<8)+7) -#define LIBMLT_VERSION 0.3.7 +#define LIBMLT_VERSION_INT ((0<<16)+(3<<8)+8) +#define LIBMLT_VERSION 0.3.8 #ifdef __cplusplus extern "C" diff --git a/src/modules/avformat/configure b/src/modules/avformat/configure index 35237cf..b6c6945 100755 --- a/src/modules/avformat/configure +++ b/src/modules/avformat/configure @@ -3,7 +3,7 @@ # Determine whether to recommend/use the HEAD revision of FFmpeg (unreleased) # or a specific revision based upon whether the last digit of our version # is even or odd. An odd MLT version number always represents unreleased. -svn_rev="16849" +svn_rev="17923" micro_version=$(echo $version | cut -d . -f 3) odd_version=$(($micro_version % 2)) [ "$odd_version" -eq "1" ] && svn_rev="HEAD"