releasing 0.10.1 RELEASE-0_10_1
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 23 Dec 2005 18:04:49 +0000 (18:04 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 23 Dec 2005 18:04:49 +0000 (18:04 +0000)
Original commit message from CVS:
releasing 0.10.1

ChangeLog
NEWS
RELEASE
configure.ac
docs/plugins/inspect/plugin-coreelements.xml
docs/plugins/inspect/plugin-coreindexers.xml
libs/gst/base/gstbasesrc.c
win32/common/config.h

index df4a497..264eced 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+=== release 0.10.1 ===
+
+2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
+
+       * configure.ac:
+         releasing 0.10.1, "Nollaig chridheil"
+
 2005-12-22  Tim-Philipp Müller  <tim at centricular dot net>
 
        * docs/faq/cvs.xml:
 
        * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
        (gst_plugin_feature_load):
-          more meaningful debug output
+         more meaningful debug output
        * configure.ac:
        * tests/Makefile.am:
        * tests/old/examples/Makefile.am:
-          make make distcheck happy again
+         make make distcheck happy again
 
 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
 
        * libs/gst/net/gstnettimeprovider.c
        (gst_net_time_provider_class_init, gst_net_time_provider_init)
        (gst_net_time_provider_set_property)
-       (gst_net_time_provider_get_property): Export "active" as a GObject
-       property.
+       (gst_net_time_provider_get_property):
+       API addition: Export "active" as a GObject property.
        (gst_net_time_provider_thread): Only respond to time queries if
        the time provider is active.
 
diff --git a/NEWS b/NEWS
index 5feab77..8a425a5 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,26 @@
-This is GStreamer 0.10.0, "Maroilles".
+This is GStreamer 0.10.1, "Nollaig chridheil"
+
+Changes since 0.10.0:
+    
+      * element factory leak fixes
+      * tests cleanup
+      * BaseSrc seeking in other format than BYTES
+      * collectpad fixes
+
+Bugs fixed since 0.10.0:
+    
+      * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac...
+      * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for...
+      * 323870 : [tools] gst-feedback needs updating for 0.9/0.10
+      * 323882 : gst-launch manpage needs updates
+      * 323905 : use return val of g_list_append
+
+API added since 0.10.0:
+     
+      * GST_TYPE_STATIC_CAPS
+      * GST_TYPE_STATIC_PAD_TEMPLATE
+      * GstNetTimeProvider::active
+      * gst_base_src_set_format
 
 Changes from the 0.8 series to 0.10 series:
 
diff --git a/RELEASE b/RELEASE
index f4a7da0..faa5f4c 100644 (file)
--- a/RELEASE
+++ b/RELEASE
@@ -1,5 +1,5 @@
 
-GStreamer: Release notes for GStreamer 0.10.0 "Maroilles"
+GStreamer: Release notes for GStreamer 0.10.1 "Nollaig chridheil"
         
 
 
@@ -38,13 +38,28 @@ Features of this release
     
       * Parallel installability with 0.8.x series
       * Threadsafe design and API
-      * new Chinese/Traditional translation
+      * element factory leak fixes
+      * tests cleanup
+      * BaseSrc seeking in other format than BYTES
+      * collectpad fixes
 
 Bugs fixed in this release
     
-      * 322874 : [PAD] pad_alloc_buffer should not call set_caps
-      * 323222 : GStreamer 0.9.7 still checks in dirs containing 0.9
-      * 323250 : [collectpads] debug category should be called 'collectpad...
+      * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac...
+      * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for...
+      * 323870 : [tools] gst-feedback needs updating for 0.9/0.10
+      * 323882 : gst-launch manpage needs updates
+      * 323905 : use return val of g_list_append
+
+API changed in this release
+     
+
+- API additions:
+    
+* GST_TYPE_STATIC_CAPS
+* GST_TYPE_STATIC_PAD_TEMPLATE
+* GstNetTimeProvider::active
+* gst_base_src_set_format
 
 Download
 
@@ -83,10 +98,13 @@ Flumotion has been ported to 0.10 as well.
   
 Contributors to this release
     
-      * 
       * Andy Wingo
-      * Funda Wang
+      * David Schleef
+      * Edward Hervey
+      * Jan Schmidt
+      * Julien MOUTTE
       * Michael Smith
+      * Stefan Kost
       * Thomas Vander Stichele
       * Tim-Philipp Müller
       * Wim Taymans
index 6858842..70c4114 100644 (file)
@@ -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, 10, 0, 2,
+AS_VERSION(gstreamer, GST_VERSION, 0, 10, 1, 0,
     GST_CVS="no", GST_CVS="yes")
 
 dnl can autoconf find the source ?
index f5fe88c..fa43df6 100644 (file)
@@ -3,7 +3,7 @@
   <description>standard GStreamer elements</description>
   <filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
   <basename>libgstcoreelements.so</basename>
-  <version>0.10.0</version>
+  <version>0.10.1</version>
   <license>LGPL</license>
   <source>gstreamer</source>
   <package>GStreamer source release</package>
index 887df5b..225aee0 100644 (file)
@@ -3,7 +3,7 @@
   <description>GStreamer core indexers</description>
   <filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
   <basename>libgstcoreindexers.so</basename>
-  <version>0.10.0</version>
+  <version>0.10.1</version>
   <license>LGPL</license>
   <source>gstreamer</source>
   <package>GStreamer source release</package>
index 020e727..6585657 100644 (file)
@@ -35,7 +35,7 @@
  *
  * The source can be configured to operate in a any #GstFormat with the
  * gst_base_src_set_format(). This format determines the format of the
- * internal #GstSegment and the #GST_EVENT_NEW_SEGMENT. The default format for 
+ * internal #GstSegment and the #GST_EVENT_NEW_SEGMENT. The default format for
  * #GstBaseSrc is GST_FORMAT_BYTES.
  *
  * #GstBaseSrc always supports the push mode scheduling. If the following
  *   <listitem><para>#GstBaseSrc::is_seekable returns TRUE.</para></listitem>
  * </itemizedlist>
  *
- * If all the conditions are met for operating in pull mode, #GstBaseSrc is 
+ * If all the conditions are met for operating in pull mode, #GstBaseSrc is
  * automatically seekable in push mode as well. The following conditions must be
- * met to make the element seekable in push mode when the format is not 
+ * met to make the element seekable in push mode when the format is not
  * GST_FORMAT_BYTES:
  * <itemizedlist>
  *   <listitem><para>
  *     #GstBaseSrc::is_seekable returns TRUE.
  *   </para></listitem>
  *   <listitem><para>
- *     #GstBaseSrc::query can convert all supported seek formats to the 
+ *     #GstBaseSrc::query can convert all supported seek formats to the
  *     internal format as set with gst_base_src_set_format().
  *   </para></listitem>
  *   <listitem><para>
@@ -372,6 +372,8 @@ gst_base_src_is_live (GstBaseSrc * src)
  *
  * If a format of GST_FORMAT_BYTES is set, the element will be able to
  * operate in pull mode if the #GstBaseSrc::is_seekable returns TRUE.
+ *
+ * @Since: 0.10.1
  */
 void
 gst_base_src_set_format (GstBaseSrc * src, GstFormat format)
index 0f15fcb..c120fec 100644 (file)
@@ -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"
 #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.10.0.2"
+#define GST_VERSION "0.10.1"
 
 /* Define if the host CPU is an Alpha */
 #undef HAVE_CPU_ALPHA
 #undef USE_POISONING
 
 /* Version number of package */
-#define VERSION "0.10.0.2"
+#define VERSION "0.10.1"
 
 /* Define to 1 if your processor stores words with the most significant byte
    first (like Motorola and SPARC, unlike Intel and VAX). */