summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-02-06 12:39:50 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-02-06 12:39:50 +0000
commit48a75accb8c87ea541e1147906e2d7bf89698464 (patch)
tree431b1e08129df16ad3ec340f6da48971469828f0
parentc5061b50b728548e75e0711bbde5bf70cd237938 (diff)
Original commit message from CVS: releasing
-rw-r--r--ChangeLog8
-rw-r--r--Makefile.am11
-rw-r--r--NEWS107
-rw-r--r--configure.ac2
-rw-r--r--po/nl.po2
5 files changed, 127 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index eed814dcc..4c9b9dece 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+
+=== gst-plugins 0.7.4 ===
+
+2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
+ * configure.ac: changed for release
+
2004-02-04 David Schleef <ds@schleef.org>
* gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
diff --git a/Makefile.am b/Makefile.am
index 97ba31f24..65bf0f5ec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,5 @@
+AUTOMAKE_OPTIONS = dist-bzip2
+
if USE_GCONFTOOL
GCONF_DIR=gconf
else
@@ -35,11 +37,18 @@ DIST_SUBDIRS=ext gst-libs \
pkgconfig
EXTRA_DIST=gst-plugins.spec depcomp \
- AUTHORS COPYING COPYING.LIB README RELEASE REQUIREMENTS \
+ AUTHORS COPYING COPYING.LIB README REQUIREMENTS \
ChangeLog autogen.sh common m4
DISTCLEANFILES=_stdint.h
+release: dist
+ make @PACKAGE@-@VERSION@.tar.gz.md5
+ make @PACKAGE@-@VERSION@.tar.bz2.md5
+
+%.md5: %
+ md5sum $< > $@
+
dist-hook:
rm -rf `find $(distdir)/common -name CVS`
rm -rf `find $(distdir)/m4 -name CVS`
diff --git a/NEWS b/NEWS
index e69de29bb..bfa9a9eca 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,107 @@
+Release notes for GStreamer Plugins 0.7.4 "For Great Justice"
+
+ The GStreamer team is happy to announce a new release in the 0.7.x
+ development series of the GStreamer streaming-media framework. The
+ goal of this release series is to stabilize towards a 0.8 release
+ series which will be part of the GNOME 2.6 releases and hopefully
+ eventually KDE 4.x.
+
+ The 0.7 series is a development series and is aimed at developers. It
+ is NOT API or ABI compatible with the stable 0.6.x series or with
+ other releases in the series. This means you can not use this release
+ to upgrade your current GStreamer installation and expect your
+ GStreamer applications to keep working without a recompile. It is,
+ however, parallel installable with the 0.6.x series.
+
+Features of this release
+
+ * Compatible with gstreamer 0.7.4
+ * Reworked pad negotiation
+ * Internationalized plugin elements
+ * Reworked error notification with translated error messages and
+ additional debug information for developer feedback
+ * Updated Dutch and French translations
+ * Reworked clocking
+ * Audio sinks synchronize to timestamps
+ * Added marshal and enum headers for libraries
+ * New Ogg demuxer
+ * New Theora decoder
+ * New trm (musicbrainz) element
+ * New switch element
+ * New rfb (remote framebuffer) element
+ * Updated quicktime demuxer
+ * Updated SVQ3 decoding
+ * Updated playback library
+ * Updated flushing from gnomevfs source
+ * Updated X and Xv image sinks
+ * Updated audio conversion elements
+ * Updated flac tag handling
+ * Updated dvdnav element
+ * Updated mplex element
+ * Lots of bugfixes
+
+Known issues
+
+ * MPEG video playback needs to be updated, it doesn't work reliably
+
+Download
+
+ You find source releases of gst-plugins in the [14]gst-plugins
+ download directory.
+
+GStreamer Homepage
+
+ More details can be found on the project's website,
+ [15]http://www.freedesktop.org/~gstreamer.
+
+Support and Bugs
+
+ We use Gnome's bugzilla for [16]bug reports and feature requests.
+
+Developers
+
+ CVS is hosted on cvs.freedesktop.org. You can [17]browse the
+ gst-plugins repository. All code is in CVS and can be checked out from
+ there. Interested developers of the core library, plug-ins, and
+ applications should subscribe to the gstreamer-devel list. If there is
+ sufficient interest we will create more lists as necessary.
+
+Applications
+
+ As mentioned there are some changes in API/ABI between the 0.6.x and
+ 0.7.x releases. Many applications will probably be source compatible
+ between 0.6.x. and 0.7.x however. [18]Rhythmbox and [19]Sound Juicer
+ for instance work very well when compiled on 0.7.x. GStreamer Player
+ does not work across releases however, so we will make a separate
+ release of gst-player with the needed fixes for it to work with 0.7.x.
+ This release contains the core fixes we were waiting for to port the
+ player over so expect a gst-player release in the near future.
+
+Contributors to this release
+
+ * Amaury Jacquot
+ * Arwed v. Merkatz
+ * Benjamin Otte
+ * Christian Fredrik Kalager Schaller
+ * Colin Walters
+ * David I. Lehn
+ * David Schleef
+ * Iain Holmes
+ * Jan Schmidt
+ * Jérémy Simon
+ * Jon Trowbridge
+ * Julien Moutte
+ * Ronald Bultje
+ * Steve Baker
+ * Thomas Canty
+ * Thomas Vander Stichele
+
+References
+
+ Visible links
+ 14. http://www.freedesktop.org/~gstreamer/src/gst-plugins/
+ 15. http://www.freedesktop.org/~gstreamer
+ 16. http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer
+ 17. http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer//gst-plugins/
+ 18. http://www.rhythmbox.org/
+ 19. http://www.burtonini.com/blog/computers/sound-juicer
diff --git a/configure.ac b/configure.ac
index 7b5c652b5..0905d659f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,7 +12,7 @@ AM_MAINTAINER_MODE
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(gst-plugins, GST_PLUGINS_VERSION, 0, 7, 3, 2, GST_CVS="no", GST_CVS="yes")
+AS_VERSION(gst-plugins, GST_PLUGINS_VERSION, 0, 7, 4, 0, GST_CVS="no", GST_CVS="yes")
dnl add a suffix to apps
if test x$program_suffix = xNONE ; then
diff --git a/po/nl.po b/po/nl.po
index d1e647393..e9e06c428 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-02-05 19:24+0100\n"
+"POT-Creation-Date: 2004-02-04 22:48+0100\n"
"PO-Revision-Date: 2004-02-02 23:08+0100\n"
"Last-Translator: Thomas Vander Stichele <thomas@apestaart.org>\n"
"Language-Team: Dutch <nl@li.org>\n"