diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-03-21 00:20:59 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-03-21 00:20:59 +0000 |
commit | 7f836e1c45f12ea568187bfa8967436f8c6d743c (patch) | |
tree | 3a7b9912df6eaad02079a5bb6a8e115719f38b22 | |
parent | 75962ccda3534ca3a866e9c7ac9cc41e095189e0 (diff) |
Release 0.10.18RELEASE-0_10_18
Original commit message from CVS:
Release 0.10.18
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | NEWS | 29 | ||||
-rw-r--r-- | RELEASE | 39 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | docs/plugins/inspect/plugin-coreelements.xml | 2 | ||||
-rw-r--r-- | docs/plugins/inspect/plugin-coreindexers.xml | 2 | ||||
-rw-r--r-- | gstreamer.doap | 11 | ||||
-rw-r--r-- | win32/common/config.h | 10 |
8 files changed, 90 insertions, 14 deletions
@@ -1,3 +1,10 @@ +=== release 0.10.18 === + +2008-03-20 Jan Schmidt <jan.schmidt@sun.com> + + * configure.ac: + releasing 0.10.18, "So far away" + 2008-03-18 Jan Schmidt <jan.schmidt@sun.com> * configure.ac: @@ -1,4 +1,31 @@ -This is GStreamer 0.10.17 "Due Negligence" +This is GStreamer 0.10.18 "So far away" + +Changes since 0.10.17: + + * New GstPoll abstraction simplifies operations on multiple fd's/sockets + * Various bug fixes and corrections + +Bugs fixed since 0.10.17: + + * 516187 : adding gst_collect_pads_read_buffer () collectpads + * 516395 : gst_buffer_create_sub does not copy flags + * 520756 : different registry backend configurations cause build errors + * 498222 : configure improvements + * 499127 : [multiqueue] has no documentation + * 505417 : Add GstPoll to core + * 509559 : [gstinfo]_gst_debug_init() memory leak + * 510194 : segmentation fault when trying to link elements. + * 511783 : [API] [check] add gst_check_element_push_buffer_list() etc. + * 513964 : [GstPad] gst_pad_get_caps don't return a copy of the caps + * 515469 : patch to add gst_index_set_resolver_full + * 519584 : gst_element_implements_interface() segfaults with 'filesr... + * 519698 : g_free/xmlFree mismatches in gstregistryxml + * 520152 : Core uses non-portable size_t and ssize_t + * 520671 : GstPoll needs to be ported to Windows + * 520808 : GstPoll's API could need some changes for Windows + * 520877 : registrybinary.c doesn't build cleanly on Windows/MSVC + * 521740 : libgstreamer.def exports not up to date + * 522741 : regression: gst_index_entry_free() frees string it does n... Changes since 0.10.16: @@ -1,5 +1,5 @@ -Release notes for GStreamer 0.10.17 "Due Negligence" +Release notes for GStreamer 0.10.18 "So far away" @@ -37,11 +37,30 @@ contains a set of less supported plug-ins that haven't passed the Features of this release - * Fix compilation on environments that have POSIX timers but not monotonic clocks + * New GstPoll abstraction simplifies operations on multiple fd's/sockets + * Various bug fixes and corrections Bugs fixed in this release - * 512715 : gst/gstutils.c and HAVE_MONOTONIC_CLOCK + * 516187 : adding gst_collect_pads_read_buffer () collectpads + * 516395 : gst_buffer_create_sub does not copy flags + * 520756 : different registry backend configurations cause build errors + * 498222 : configure improvements + * 499127 : [multiqueue] has no documentation + * 505417 : Add GstPoll to core + * 509559 : [gstinfo]_gst_debug_init() memory leak + * 510194 : segmentation fault when trying to link elements. + * 511783 : [API] [check] add gst_check_element_push_buffer_list() etc. + * 513964 : [GstPad] gst_pad_get_caps don't return a copy of the caps + * 515469 : patch to add gst_index_set_resolver_full + * 519584 : gst_element_implements_interface() segfaults with 'filesr... + * 519698 : g_free/xmlFree mismatches in gstregistryxml + * 520152 : Core uses non-portable size_t and ssize_t + * 520671 : GstPoll needs to be ported to Windows + * 520808 : GstPoll's API could need some changes for Windows + * 520877 : registrybinary.c doesn't build cleanly on Windows/MSVC + * 521740 : libgstreamer.def exports not up to date + * 522741 : regression: gst_index_entry_free() frees string it does n... Download @@ -76,7 +95,19 @@ Let us know if you want to be added to this list. Contributors to this release + * Andy Wingo + * David Schleef + * Edward Hervey + * Fabrizio Gennari * Jan Schmidt - * Cygwin Ports Maintainer + * Julien Moutte + * Ole André Vadla Ravnås + * Peter Kjellerstedt + * Rene Stadler * Sebastian Dröge + * Siavash Safi + * Stefan Kost + * Thijs Vermeir + * Tim-Philipp Müller + * Wim Taymans
\ No newline at end of file diff --git a/configure.ac b/configure.ac index ab50439d5..4545c04e5 100644 --- a/configure.ac +++ b/configure.ac @@ -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, 0.10.17.4, +AC_INIT(GStreamer, 0.10.18, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gstreamer) AG_GST_INIT @@ -43,7 +43,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 15, 0, 15) +AS_LIBTOOL(GST, 16, 0, 16) dnl FIXME: this macro doesn't actually work; dnl the generated libtool script has no support for the listed tags. diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml index 95a45f146..a769541c4 100644 --- a/docs/plugins/inspect/plugin-coreelements.xml +++ b/docs/plugins/inspect/plugin-coreelements.xml @@ -3,7 +3,7 @@ <description>standard GStreamer elements</description> <filename>../../plugins/elements/.libs/libgstcoreelements.so</filename> <basename>libgstcoreelements.so</basename> - <version>0.10.17</version> + <version>0.10.18</version> <license>LGPL</license> <source>gstreamer</source> <package>GStreamer source release</package> diff --git a/docs/plugins/inspect/plugin-coreindexers.xml b/docs/plugins/inspect/plugin-coreindexers.xml index 4d72734e1..845cb992c 100644 --- a/docs/plugins/inspect/plugin-coreindexers.xml +++ b/docs/plugins/inspect/plugin-coreindexers.xml @@ -3,7 +3,7 @@ <description>GStreamer core indexers</description> <filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename> <basename>libgstcoreindexers.so</basename> - <version>0.10.17</version> + <version>0.10.18</version> <license>LGPL</license> <source>gstreamer</source> <package>GStreamer source release</package> diff --git a/gstreamer.doap b/gstreamer.doap index b7e66ef42..a82f3afab 100644 --- a/gstreamer.doap +++ b/gstreamer.doap @@ -41,6 +41,17 @@ hierarchy, and a set of media-agnostic core elements. <release> <Version> + <revision>0.10.18</revision> + <branch>0.10</branch> + <name>So far away</name> + <created>2008-03-21</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.18.tar.bz2" /> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.18.tar.gz" /> + </Version> + </release> + + <release> + <Version> <revision>0.10.17</revision> <branch>0.10</branch> <name>Due Negligence</name> diff --git a/win32/common/config.h b/win32/common/config.h index dc0e36a9e..7cd239d86 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -24,7 +24,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" @@ -33,7 +33,7 @@ #define GST_MAJORMINOR "0.10" /* package name in plugins */ -#define GST_PACKAGE_NAME "GStreamer CVS/prerelease" +#define GST_PACKAGE_NAME "GStreamer source release" /* package origin */ #define GST_PACKAGE_ORIGIN "Unknown package origin" @@ -197,13 +197,13 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 0.10.17.4" +#define PACKAGE_STRING "GStreamer 0.10.18" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.10.17.4" +#define PACKAGE_VERSION "0.10.18" /* Define the plugin directory */ #ifdef _DEBUG @@ -219,7 +219,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "0.10.17.4" +#define VERSION "0.10.18" /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ |