mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
releasing 0.9.5
Original commit message from CVS: releasing 0.9.5
This commit is contained in:
parent
93e4477d56
commit
b1797f6ca0
5 changed files with 33 additions and 21 deletions
|
@ -1,3 +1,10 @@
|
|||
=== release 0.9.5 ===
|
||||
|
||||
2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.9.5, "Bike Lunch Day"
|
||||
|
||||
2005-11-11 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstbuffer.c: (_gst_buffer_copy):
|
||||
|
|
14
NEWS
14
NEWS
|
@ -1,4 +1,16 @@
|
|||
This is GStreamer 0.9.4, "Tyrannosaurus Rex".
|
||||
This is GStreamer 0.9.5, "Bike Lunch Day".
|
||||
|
||||
Changes since 0.9.4:
|
||||
|
||||
* gst_bus_poll and signal watch now see the same messages
|
||||
* clock sync in BaseSrc class
|
||||
* API documentation updates
|
||||
* Bus reworked; signal API added
|
||||
|
||||
Bugs fixed since 0.9.4:
|
||||
|
||||
* 317341 : after linking ghost pads, one target pad does not have a ...
|
||||
* 320774 : basesrc commit broke typefinding
|
||||
|
||||
Changes since 0.9.3:
|
||||
|
||||
|
|
23
RELEASE
23
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
GStreamer: Release notes for GStreamer 0.9.4 "Tyrannosaurus Rex"
|
||||
GStreamer: Release notes for GStreamer 0.9.5 "Bike Lunch Day"
|
||||
|
||||
|
||||
The GStreamer team is petrified to announce a new release
|
||||
|
@ -36,21 +36,15 @@ Features of this release
|
|||
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* state lock redefined
|
||||
* Extensive documentation updates
|
||||
* BaseTransform reworked
|
||||
* gst_bus_poll and signal watch now see the same messages
|
||||
* clock sync in BaseSrc class
|
||||
* API documentation updates
|
||||
* Bus reworked; signal API added
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 111146 : new GstThread fails on pipeline with errors
|
||||
* 169772 : [PATCH] GOption command-line parsing
|
||||
* 170777 : use GST_TYPE_DATE for GST_TAG_DATE
|
||||
* 315050 : [API] consider using GstClockTime instead of GTimeVal in ...
|
||||
* 315126 : filesrc + forced caps should be possible
|
||||
* 315383 : gst-launch shouldn't run broken pipelines
|
||||
* 317041 : GstObject flags should be made real flags
|
||||
* 318447 : gst_bin_iterate_sorted: Invalid call to gst_iterator_new
|
||||
* 317341 : after linking ghost pads, one target pad does not have a ...
|
||||
* 320774 : basesrc commit broke typefinding
|
||||
|
||||
Download
|
||||
|
||||
|
@ -95,10 +89,9 @@ Contributors to this release
|
|||
* Andy Wingo
|
||||
* Edward Hervey
|
||||
* Johan Dahlin
|
||||
* Josef Zlomek
|
||||
* Julien Moutte
|
||||
* Julien MOUTTE
|
||||
* Luca Ognibene
|
||||
* Michael Smith
|
||||
* Philippe Khalaf
|
||||
* Stefan Kost
|
||||
* Thomas Vander Stichele
|
||||
* Tim-Philipp Müller
|
||||
|
|
|
@ -6,7 +6,7 @@ AC_INIT
|
|||
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AS_VERSION(gstreamer, GST_VERSION, 0, 9, 4, 1,
|
||||
AS_VERSION(gstreamer, GST_VERSION, 0, 9, 5, 0,
|
||||
GST_CVS="no", GST_CVS="yes")
|
||||
|
||||
dnl can autoconf find the source ?
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#undef GST_GCOV_ENABLED
|
||||
|
||||
/* Default errorlevel to use */
|
||||
#define GST_LEVEL_DEFAULT GST_LEVEL_ERROR
|
||||
#define GST_LEVEL_DEFAULT GST_LEVEL_NONE
|
||||
|
||||
/* GStreamer license */
|
||||
#define GST_LICENSE "LGPL"
|
||||
|
@ -30,10 +30,10 @@
|
|||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* package name in plugins */
|
||||
#define GST_PACKAGE_NAME "GStreamer CVS/prerelease"
|
||||
#define GST_PACKAGE_NAME "GStreamer source release"
|
||||
|
||||
/* Define the version */
|
||||
#define GST_VERSION "0.9.4.1"
|
||||
#define GST_VERSION "0.9.5"
|
||||
|
||||
/* Define if the host CPU is an Alpha */
|
||||
#undef HAVE_CPU_ALPHA
|
||||
|
@ -205,7 +205,7 @@
|
|||
#undef USE_POISONING
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.9.4.1"
|
||||
#define VERSION "0.9.5"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
|
Loading…
Reference in a new issue