Release 0.11.90

This commit is contained in:
Sebastian Dröge 2012-04-12 09:57:01 +02:00
parent 4cbdfd8d51
commit 0ac4ddd429
9 changed files with 1343 additions and 41 deletions

1308
ChangeLog

File diff suppressed because it is too large Load diff

9
NEWS
View file

@ -1,4 +1,11 @@
This is GStreamer 0.11.3 "Thrill of the Hunt"
This is GStreamer 0.11.90 "And all with pearl and ruby glowing was the fair palace door"
New features in 0.11.90:
* Lots of bugfixes, cleanup and other improvements
* Improvements to the buffer and memory managment API
* A new GstTOC interface, e.g. for handling chapters
* The GstChildProxy interface works with any GObject now
New features in 0.11.3:

28
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer 0.11.3 "Thrill of the Hunt"
Release notes for GStreamer 0.11.90 "And all with pearl and ruby glowing was the fair palace door"
@ -18,6 +18,7 @@ The 0.11.x series has improved memory management and features
various cleanups and enhancements.
This module, gstreamer, only contains core functionality.
For actual media playback, you will need other modules.
@ -38,22 +39,10 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release
* Various bug fixes and improvements
* Input-selector defaults to sync-streams=true
* Queue don't just start the thread on linking
* Add user_data and notify to gst_memory_new_wrapped()
* Rework caps function for performance
* Improve basetransform allocator handling
* Implement metadata transforms
* Metadata registration improvements
* Use generic marshallers everywhere
* Push Sticky events in more cases
* Register queries like events
* Add DRAIN serialized query
* Add 0-padding and prefix to GstMemory
* Rework the ALLOCATION query
* Allow setting the allocator in a bufferpool
* Improve pull/get_range
* Lots of bugfixes, cleanup and other improvements
* Improvements to the buffer and memory managment API
* A new GstTOC interface, e.g. for handling chapters
* The GstChildProxy interface works with any GObject now
There were no bugs fixed in this release
@ -88,15 +77,20 @@ Webkit, Jokosher, Transmageddon and others. We're working on porting more applic
Contributors to this release
* Alessandro Decina
* Alexander Saprykin
* Christian Fredrik Kalager Schaller
* David Schleef
* Edward Hervey
* Fabrizio (Misto) Milo
* Mark Nauwelaerts
* Matej Knopp
* Olivier Crête
* Ryan Lortie
* Sebastian Dröge
* Sreerenj Balachandran
* Stefan Sauer
* Tim-Philipp Müller
* Wim Taymans
* Руслан Ижбулатов
 

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.60)
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, git and prerelease does Werror too
AC_INIT(GStreamer, 0.11.89.1,
AC_INIT(GStreamer, 0.11.90,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer)
AG_GST_INIT

View file

@ -1 +1,2 @@
GstChildProxy GObject
GstChildProxy GstObject

View file

@ -3,7 +3,7 @@
<description>standard GStreamer elements</description>
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
<basename>libgstcoreelements.so</basename>
<version>0.11.3</version>
<version>0.11.90</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer source release</package>

View file

@ -1,13 +0,0 @@
<plugin>
<name>coreindexers</name>
<description>GStreamer core indexers</description>
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
<basename>libgstcoreindexers.so</basename>
<version>0.10.36.1</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer git</package>
<origin>Unknown package origin</origin>
<elements>
</elements>
</plugin>

View file

@ -38,6 +38,17 @@ hierarchy, and a set of media-agnostic core elements.
</GitRepository>
</repository>
<release>
<Version>
<revision>0.11.90</revision>
<branch>0.11</branch>
<name>And all with pearl and ruby glowing was the fair palace door</name>
<created>2012-04-12</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.11.90.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.11.90.tar.gz" />
</Version>
</release>
<release>
<Version>
<revision>0.11.3</revision>

View file

@ -56,13 +56,13 @@
#define GST_LICENSE "LGPL"
/* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer git"
#define GST_PACKAGE_NAME "GStreamer source release"
/* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin"
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
#define GST_PACKAGE_RELEASE_DATETIME "2012-04-07T14:43Z"
#define GST_PACKAGE_RELEASE_DATETIME "2012-04-12"
/* location of the installed gst-plugin-scanner */
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
@ -334,7 +334,7 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer 0.11.89.1"
#define PACKAGE_STRING "GStreamer 0.11.90"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
@ -343,7 +343,7 @@
#undef PACKAGE_URL
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.11.89.1"
#define PACKAGE_VERSION "0.11.90"
/* directory where plugins are located */
#ifdef _DEBUG
@ -374,7 +374,7 @@
#undef USE_POISONING
/* Version number of package */
#define VERSION "0.11.89.1"
#define VERSION "0.11.90"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */