mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
Release 0.10.14
Original commit message from CVS: Release 0.10.14
This commit is contained in:
parent
22b9ffd6d7
commit
3e811faefc
5 changed files with 56 additions and 12 deletions
|
@ -1,3 +1,10 @@
|
|||
=== release 0.10.14 ===
|
||||
|
||||
2009-01-19 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.10.14, "you better think"
|
||||
|
||||
2009-01-09 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* configure.ac:
|
||||
|
|
21
NEWS
21
NEWS
|
@ -1,4 +1,23 @@
|
|||
This is GStreamer Python Bindings 0.10.13, "Feel The Sun Rise"
|
||||
This is GStreamer Python Bindings 0.10.14, "You Better Think"
|
||||
|
||||
Changes since 0.10.13:
|
||||
|
||||
* Handle keep-refcount for GBoxed arguments
|
||||
* Mark gst.message* that take ownership of the gst.Structure/gst.TagList
|
||||
* Wrap new API in Core and Base
|
||||
* Various other bug fixes and improvements
|
||||
|
||||
Bugs fixed since 0.10.13:
|
||||
|
||||
* 543961 : Memory leak in gst.Bin.do_handle_message
|
||||
* 553131 : Import modules in correct order
|
||||
* 553134 : Assumes wrong RTLD constants for Linux/MIPS
|
||||
* 554545 : gst.Pad methods that return a new buffer as function argu...
|
||||
* 556054 : codegen: Add 'keep-refcount' handling for GBoxed arguments
|
||||
* 559406 : Add proxy for gst_base_transform_transform_size
|
||||
* 559768 : Fix gst-python on systems that don't support RTLD_GLOBAL ...
|
||||
* 564580 : Memory leak in gst.Structure.keys()
|
||||
* 566903 : gst.Pad.iterate_internal_links may raise critical warning...
|
||||
|
||||
Changes since 0.10.12:
|
||||
|
||||
|
|
27
RELEASE
27
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
Release notes for GStreamer Python bindings 0.10.13 "Feel The Sun Rise"
|
||||
Release notes for GStreamer Python bindings 0.10.14 "you better think"
|
||||
|
||||
|
||||
|
||||
|
@ -17,20 +17,22 @@ It is, however, parallel installable with the 0.8.x series.
|
|||
|
||||
Features of this release
|
||||
|
||||
* Updated for GStreamer 0.10.21 API
|
||||
* New examples
|
||||
* Fix double import issues on OS/X
|
||||
* Bug fixes
|
||||
* Handle keep-refcount for GBoxed arguments
|
||||
* Mark gst.message* that take ownership of the gst.Structure/gst.TagList
|
||||
* Wrap new API in Core and Base
|
||||
* Various other bug fixes and improvements
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 543961 : Memory leak in gst.Bin.do_handle_message
|
||||
* 553131 : Import modules in correct order
|
||||
* 553134 : Assumes wrong RTLD constants for Linux/MIPS
|
||||
* 461838 : Fails to build on Mac OS X i686 with multiply defined sym...
|
||||
* 517993 : pipeline-tester should not be hardcoded to ALSA
|
||||
* 540221 : Empty GstMiniObject GValues raise a SystemError
|
||||
* 546689 : Add GST_DEBUG_BIN_TO_DOT_FILE* to python bindings
|
||||
* 549450 : caps.append_structure() gives warnings if structure is no...
|
||||
* 554545 : gst.Pad methods that return a new buffer as function argu...
|
||||
* 556054 : codegen: Add 'keep-refcount' handling for GBoxed arguments
|
||||
* 559406 : Add proxy for gst_base_transform_transform_size
|
||||
* 559768 : Fix gst-python on systems that don't support RTLD_GLOBAL ...
|
||||
* 564580 : Memory leak in gst.Structure.keys()
|
||||
* 566903 : gst.Pad.iterate_internal_links may raise critical warning...
|
||||
|
||||
Download
|
||||
|
||||
|
@ -60,6 +62,11 @@ Applications
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Alessandro Decina
|
||||
* Alexander Wirt
|
||||
* Edward Hervey
|
||||
* Jan Schmidt
|
||||
* Sebastian Dröge
|
||||
* Thiemo Seufer
|
||||
* Vincent GENIEUX
|
||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.52)
|
|||
dnl initialize autoconf
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AC_INIT(GStreamer Python Bindings, 0.10.13.3,
|
||||
AC_INIT(GStreamer Python Bindings, 0.10.14,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-python)
|
||||
|
||||
|
|
|
@ -33,6 +33,17 @@ It also comes with a number of examples.
|
|||
</CVSRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.14</revision>
|
||||
<branch>0.10</branch>
|
||||
<name>You Better Think</name>
|
||||
<created>2009-01-19</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.14.tar.bz2" />
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.14.tar.gz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.13</revision>
|
||||
|
|
Loading…
Reference in a new issue