mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 05:56:31 +00:00
releasing 0.10.4
Original commit message from CVS: releasing 0.10.4
This commit is contained in:
parent
2e4782697b
commit
9a61ac5af2
4 changed files with 42 additions and 14 deletions
|
@ -1,3 +1,10 @@
|
|||
=== release 0.10.4 ===
|
||||
|
||||
2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.10.4, "Alegre"
|
||||
|
||||
2006-04-19 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/arg-types.py (GstCapsArg.write_const_param)
|
||||
|
@ -93,6 +100,8 @@
|
|||
(_wrap_gst_get_gst_version): New overrides, functions to access
|
||||
the gstreamer and pygst versions. The first used to be called
|
||||
gst_version(); we ignore gst_version now.
|
||||
API: gst.get_gst_version()
|
||||
API: gst.get_pygst_version()
|
||||
|
||||
* gst/gstpad.override (_wrap_gst_pad_set_blocked_async):
|
||||
PyObject_IsTrue, not PyBool_Check. Grr.
|
||||
|
|
18
NEWS
18
NEWS
|
@ -1,4 +1,20 @@
|
|||
This is GStreamer Python Bindings 0.10.3, "Maybe not today. Maybe not tomorrow, but soon..."
|
||||
This is GStreamer Python Bindings 0.10.4, "Alegre"
|
||||
|
||||
Changes since 0.10.3:
|
||||
|
||||
* Conditional compile of core API additions
|
||||
* wrapped gst.BaseSrc and gst.PushSrc
|
||||
|
||||
Bugs fixed since 0.10.3:
|
||||
|
||||
* 339010 : segfault/undefined behavior with optional GstCaps args
|
||||
* 337876 : TagList does not retreive tags by key if 2 or more tags w...
|
||||
|
||||
API added since 0.10.3:
|
||||
|
||||
* gst.get_gst_version()
|
||||
* gst.get_pygst_version()
|
||||
|
||||
Changes since 0.10.2:
|
||||
|
||||
* Backwards compatibility with older GStreamer installations
|
||||
|
|
27
RELEASE
27
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
GStreamer: Release notes for GStreamer Python bindings 0.10.3 "Maybe not today. Maybe not tomorrow, but soon..."
|
||||
Release notes for GStreamer Python bindings 0.10.4 "Alegre"
|
||||
|
||||
|
||||
|
||||
|
@ -18,16 +18,21 @@ Features of this release
|
|||
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* Backwards compatibility with older GStreamer installations
|
||||
* Wrapping of new API in GStreamer
|
||||
* Bug-fixes and enhancements
|
||||
* Conditional compile of core API additions
|
||||
* wrapped gst.BaseSrc and gst.PushSrc
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 329110 : gst-python sets RTLD_GLOBAL when importing, but doesn't s...
|
||||
* 332586 : pygst.require should raise an error based on StandardErro...
|
||||
* 333055 : PYGIL_API_IS_BUGGY is already defined in pygobect.h
|
||||
* 331616 : gst.version and gst.gst_version differ
|
||||
* 339010 : segfault/undefined behavior with optional GstCaps args
|
||||
* 337876 : TagList does not retreive tags by key if 2 or more tags w...
|
||||
|
||||
API changed in this release
|
||||
|
||||
|
||||
- API additions:
|
||||
|
||||
* gst.get_gst_version()
|
||||
* gst.get_pygst_version()
|
||||
|
||||
Download
|
||||
|
||||
|
@ -58,10 +63,8 @@ Applications
|
|||
Contributors to this release
|
||||
|
||||
* Andy Wingo
|
||||
* David I. Lehn
|
||||
* Edward Hervey
|
||||
* Jan Schmidt
|
||||
* Joe Wreschnig
|
||||
* Michael Smith
|
||||
* Stefan Kost
|
||||
* Thomas Vander Stichele
|
||||
* Zaheer Abbas Merali
|
||||
|
|
@ -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.3.2,
|
||||
AC_INIT(GStreamer Python Bindings, 0.10.4,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-python)
|
||||
|
||||
|
|
Loading…
Reference in a new issue