From 0a1f57538ca71ad690d3c3abe287ef0b295a788c Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Fri, 26 Apr 2013 12:11:02 +0200 Subject: Release 1.0.7 --- ChangeLog | 116 +++++++++++++++++++++++++++++++++++++++++++++- NEWS | 13 +++++- RELEASE | 41 +++++----------- configure.ac | 2 +- gstreamer.doap | 10 ++++ po/af.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/bg.po | 2 +- po/ca.po | 2 +- po/cs.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/eo.po | 2 +- po/es.po | 2 +- po/eu.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/id.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/lt.po | 2 +- po/nb.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/rw.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sv.po | 2 +- po/tr.po | 2 +- po/uk.po | 2 +- po/vi.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- win32/common/config.h | 11 +++-- win32/common/gstversion.h | 2 +- 46 files changed, 195 insertions(+), 78 deletions(-) diff --git a/ChangeLog b/ChangeLog index 92e3df9430..92216cd1b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,121 @@ +=== release 1.0.7 === + +2013-04-26 Sebastian Dröge + + * configure.ac: + releasing 1.0.7 + +2013-04-25 16:38:49 +0200 Sebastian Dröge + + * plugins/elements/gstinputselector.c: + inputselector: Try to not push read-only buffers + We should only increase the refcount before pushing if we're + really going to use the buffer afterwards. + +2013-04-22 18:08:43 -0300 Thibault Saunier + + * libs/gst/controller/gsttimedvaluecontrolsource.c: + controller: Fix element-type annotations + +2012-10-24 11:58:35 +0200 Sebastian Dröge + + * configure.ac: + * gst/gstplugin.h: + * plugins/elements/Makefile.am: + gst: Add better support for static plugins + API: GST_PLUGIN_STATIC_DECLARE() + API: GST_PLUGIN_STATIC_REGISTER() + Based on a patch by Håvard Graff . + This now allows GST_PLUGIN_DEFINE() to create a static plugin if + GST_PLUGIN_BUILD_STATIC is defined. The resulting plugin can be + statically linked or dynamically linked during compilation but + can't be dynamically loaded during runtime. + Also adds GST_PLUGIN_STATIC_DECLARE() and GST_PLUGIN_STATIC_REGISTER(), + which allows to register a static linked plugin easily. + It is still required to manually register every single statically linked + plugin from inside the application as this can't be automated in a portable + way. + A new configure parameter --enable-static-plugins was added that allows + to build all plugins we build here as static plugins. + Fixes bug #667305. + +2013-03-25 09:16:05 +0100 Sebastian Dröge + + * tests/check/gst/gstcaps.c: + caps: Add unit test for GST_CAPS_{ANY,NONE} and GST_STATIC_CAPS_{ANY,NONE} + https://bugzilla.gnome.org/show_bug.cgi?id=696435 + +2013-03-25 09:19:24 +0100 Sebastian Dröge + + * gst/gstcaps.c: + caps: Fix gst_static_caps_get(GST_STATIC_CAPS_NONE) + https://bugzilla.gnome.org/show_bug.cgi?id=696435 + +2013-03-21 21:00:54 -0400 Nicolas Dufresne + + * libs/gst/base/gstbasesrc.c: + basesrc: Don't send error if negotiate fails because we are flushing + Negotiation may be aborted by a flush from another thread that need to + stop the task (i.e. seek). Check that case and silently pause the task. + https://bugzilla.gnome.org/show_bug.cgi?id=696357 + +2013-04-12 16:13:15 +0100 Wim Taymans + + * gst/gsttaglist.c: + taglist: avoid triggering an assertion + When deserialization of the structure fails, return a NULL taglist instead of + asserting. + +2013-04-13 12:00:12 +0100 Tim-Philipp Müller + + * tools/gst-inspect.c: + gst-inspect: only add a '*' for non-'gpointer' pointers + Spotted by Jose Antonio Santos Cadena. + https://bugzilla.gnome.org/show_bug.cgi?id=697791 + +2013-04-11 14:54:32 +0200 Jose Antonio Santos Cadenas + + * tools/gst-inspect.c: + gst-inspect: add pointer mark to signal and action return types that are pointers + When the return type of a signal or action is a pointer, it + should have an asterisk to mark it as such. + https://bugzilla.gnome.org/show_bug.cgi?id=697791 + +2013-04-09 10:17:45 +0100 Tim-Philipp Müller + + * libs/gst/net/gstnetclientclock.c: + netclientclock: bind socket before querying local address + Fails on windows otherwise. + https://bugzilla.gnome.org/show_bug.cgi?id=697608 + +2013-04-04 16:39:23 +0200 Wim Taymans + + * gst/gstbufferpool.c: + bufferpool: fix docs + +2013-03-30 11:06:59 +0000 Nicolas Dufresne + + * gst/gstsegment.c: + segment: Fix seeking when position is slightly outside the segment + Very often, when the end of a segment is detected by demuxer, the position + is slightly outside the segment boundaries. Currently, if that is the case + the base will be set to NONE instead of normal accumulation. This would + break non-flushing seeks in oggdemux and most likely other demuxers. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=696899 + === release 1.0.6 === -2013-03-22 Tim-Philipp Müller +2013-03-22 12:33:48 +0000 Tim-Philipp Müller + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.0.6 + * docs/plugins/inspect/plugin-coreelements.xml: + * gstreamer.doap: + * win32/common/config.h: + * win32/common/gstversion.h: + Release 1.0.6 2013-03-22 09:53:58 +0000 Tim-Philipp Müller diff --git a/NEWS b/NEWS index d96b260810..49aebb2836 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,15 @@ -This is GStreamer 1.0.6 +This is GStreamer 1.0.7 + +Changes since 1.0.6: + + * Add better support for static plugins + +Bugs fixed since 1.0.6: + + * 667305 : build: Add --enable-static-plugins configure argument + * 696357 : Basesrc may send not-neg error when flushed + * 696435 : gst_static_caps_get(GST_STATIC_CAPS_NONE) doesn't work properly + * 697791 : gst-inspect: shows action signal return pointers as pointers Changes since 1.0.5: diff --git a/RELEASE b/RELEASE index f6dbe1d727..b1e2aba197 100644 --- a/RELEASE +++ b/RELEASE @@ -1,5 +1,5 @@ -Release notes for GStreamer 1.0.6 +Release notes for GStreamer 1.0.7 The GStreamer team is proud to announce a new bug-fix release @@ -42,31 +42,14 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Features of this release - * bin: reset GValue from iterator after usage, fixing leak - * pipeline: fix seeking on pipeline with NULL clock - * message: accept NULL error argument in gst_message_parse_{error,warning,info} - * basesrc: handle renegotiation correctly - * basesink: handle sync of EOS after item without duration - * basetransform: avoid warnings from NULL outcaps passed to transform_size in shutdown race - * adapter, basesrc, typefind: handle gst_buffer_map failure - * queuearray: fix gst_queue_array_drop_element() - * queuearray: fix gst_queue_array_find() - * queue: remove query from queue if queue is flushing - * g-i: make sure enumeration types and flags are introspected and available to bindings - * g-i: add allow-none annotation for gst_pipeline_new()'s name property + * Add better support for static plugins Bugs fixed in this release - * 684804 : basesink: fails to post EOS message with RTSP stream - * 691185 : g-i: GStreamer enums and flags not usable - " expected enumeration type GstFormat, but got Format instead " warning when setting GstFormat property on GStreamer appsrc element - * 691985 : gst_pad_check_reconfigure: only remove flag if set. - * 691986 : basesrc: set NEED_RECONFIGURE flag if negotiate fails - * 692691 : queue: dangling pointer when doing allocation query on a flushing queue - * 692868 : basesink: expands GAP event without duration to last to segment end - * 693065 : pipeline: criticals when seeking on pipeline with NULL clock - * 693587 : Adding offset to GstSegment deserialize/serialize to fix jump on uninitialized value - * 693704 : gst_message_parse_{warning,error} annotations wrongly claim allow-none for GError parameter - * 693996 : basetransform: audioresample shutdown unit test fails with 'gst_audio_info_from_caps: caps != NULL' in transform_size + * 667305 : build: Add --enable-static-plugins configure argument + * 696357 : Basesrc may send not-neg error when flushed + * 696435 : gst_static_caps_get(GST_STATIC_CAPS_NONE) doesn't work properly + * 697791 : gst-inspect: shows action signal return pointers as pointers ==== Download ==== @@ -103,12 +86,10 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Alexander Schrab - * Nate Bogdanowicz - * Niv Sardi - * Simon Feltman - * Stefan Sauer - * Tim 'mithro' Ansell + * Jose Antonio Santos Cadenas + * Nicolas Dufresne + * Sebastian Dröge + * Thibault Saunier * Tim-Philipp Müller * Wim Taymans -  \ No newline at end of file +  diff --git a/configure.ac b/configure.ac index 6be8fc36f1..7ff3b17d62 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, git and prerelease does Werror too dnl -AC_INIT(GStreamer, 1.0.6, +AC_INIT(GStreamer, 1.0.7, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gstreamer) AG_GST_INIT diff --git a/gstreamer.doap b/gstreamer.doap index f5fdc8e353..29d1e1ce77 100644 --- a/gstreamer.doap +++ b/gstreamer.doap @@ -38,6 +38,16 @@ hierarchy, and a set of media-agnostic core elements. + + + 1.0.7 + 1.0 + + 2013-04-26 + + + + 1.0.6 diff --git a/po/af.po b/po/af.po index 37defe3583..82e17ee3ad 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.9.7\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2005-12-05 11:45+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" diff --git a/po/az.po b/po/az.po index 6604c612d3..24e6aac8f5 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.8.0\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2004-03-19 18:40+0200\n" "Last-Translator: Metin Amiroff \n" "Language-Team: Azerbaijani \n" diff --git a/po/be.po b/po/be.po index d0c294afe9..fb644709d4 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.9.7\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2006-01-18 22:26+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" diff --git a/po/bg.po b/po/bg.po index 7b833b42fd..9afa0b7d1b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-04-26 22:40+0300\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" diff --git a/po/ca.po b/po/ca.po index 9973daa7bd..d7b20fe641 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-11-04 19:41+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" diff --git a/po/cs.po b/po/cs.po index b793fc3780..c943aff8c5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-12-01 08:17+0100\n" "Last-Translator: Marek Černocký \n" "Language-Team: Czech \n" diff --git a/po/da.po b/po/da.po index 4a87cc9b59..5d97c62d45 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-11-06 22:52+0100\n" "Last-Translator: Mogens Jaeger \n" "Language-Team: Danish \n" diff --git a/po/de.po b/po/de.po index 2b3da0a7c0..10060c8fb4 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-11-28 19:22+0100\n" "Last-Translator: Christian Kirbach \n" "Language-Team: German \n" diff --git a/po/el.po b/po/el.po index ead62c7a2f..5aab08f5f1 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-11-29 11:14+0200\n" "Last-Translator: Michael Kotsarinis \n" "Language-Team: Greek \n" diff --git a/po/en_GB.po b/po/en_GB.po index a39cb1c503..8293f06d4a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.1\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2004-04-26 10:36-0400\n" "Last-Translator: Gareth Owen \n" "Language-Team: English (British) \n" diff --git a/po/eo.po b/po/eo.po index d967be5c2a..8f7a1b7005 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-06-04 21:11+0100\n" "Last-Translator: Kristjan SCHMIDT \n" "Language-Team: Esperanto \n" diff --git a/po/es.po b/po/es.po index 9b5b28f7cc..d31dfd6847 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-10-02 15:45+0200\n" "Last-Translator: Jorge González González \n" "Language-Team: Spanish \n" diff --git a/po/eu.po b/po/eu.po index 7bc3367a8e..84eb837509 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.26.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-03-25 13:10+0100\n" "Last-Translator: Mikel Olasagasti Uranga \n" "Language-Team: Basque \n" diff --git a/po/fi.po b/po/fi.po index cf33955123..331a0f911b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-11-17 23:10+0200\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" diff --git a/po/fr.po b/po/fr.po index 99158943db..72522b685f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-12-05 19:31+0100\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" diff --git a/po/gl.po b/po/gl.po index c87506d789..a10a1e4505 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-12-15 03:29+0200\n" "Last-Translator: Fran Dieguez \n" "Language-Team: Galician \n" diff --git a/po/hr.po b/po/hr.po index 2bbacc86cf..4b504458f3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-05-25 16:47+0200\n" "Last-Translator: Tomislav Krznar \n" "Language-Team: Croatian \n" diff --git a/po/hu.po b/po/hu.po index 9e1d389e60..129a328208 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-11-29 14:03+0100\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" diff --git a/po/id.po b/po/id.po index ee87edfea6..72d6bf27b7 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-01-28 11:44+0700\n" "Last-Translator: Andhika Padmawan \n" "Language-Team: Indonesian \n" diff --git a/po/it.po b/po/it.po index af16035c7a..40336f9143 100644 --- a/po/it.po +++ b/po/it.po @@ -106,7 +106,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-10-25 10:03+0200\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" diff --git a/po/ja.po b/po/ja.po index 4da3c7794b..082582a846 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.20.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2008-10-16 19:57+0900\n" "Last-Translator: Makoto Kato \n" "Language-Team: Japanese \n" diff --git a/po/lt.po b/po/lt.po index ce7295bfdd..cfffca0f03 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-07-16 00:50+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" diff --git a/po/nb.po b/po/nb.po index 95b290b80a..08c9a20f21 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-10-24 21:36+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmaal \n" diff --git a/po/nl.po b/po/nl.po index 66f97c9eac..33f4a0cdc5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-11-29 22:42+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" diff --git a/po/pl.po b/po/pl.po index a360aef374..9efa5b90e7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-11-28 19:15+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" diff --git a/po/pt_BR.po b/po/pt_BR.po index a2abbac258..f7cd387656 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.31.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-01-08 01:36-0300\n" "Last-Translator: Fabrício Godoy \n" "Language-Team: Brazilian Portuguese \n" diff --git a/po/ro.po b/po/ro.po index e664342c87..3983ca6743 100644 --- a/po/ro.po +++ b/po/ro.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-08-16 01:10+0300\n" "Last-Translator: Lucian Adrian Grijincu \n" "Language-Team: Romanian \n" diff --git a/po/ru.po b/po/ru.po index 59edf29327..bf78999281 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-12-01 13:36+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" diff --git a/po/rw.po b/po/rw.po index 03bf78b8c4..1301e7a6a1 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.8\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" diff --git a/po/sk.po b/po/sk.po index 101f9db1d6..1255eb1b85 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-11-08 16:13+0100\n" "Last-Translator: Peter Tuhársky \n" "Language-Team: Slovak \n" diff --git a/po/sl.po b/po/sl.po index 0cf42599a1..3f38fa345f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2013-01-05 10:16+0100\n" "Last-Translator: Klemen Košir \n" "Language-Team: Slovenian \n" diff --git a/po/sq.po b/po/sq.po index f6c81b56a2..d5a2ee3ac7 100644 --- a/po/sq.po +++ b/po/sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.4\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2004-08-07 23:46+0200\n" "Last-Translator: Laurent Dhima \n" "Language-Team: Albanian \n" diff --git a/po/sr.po b/po/sr.po index f2521c4b14..70fc789b76 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-12-05 10:40+0200\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" diff --git a/po/sv.po b/po/sv.po index a33217c14a..fdcbe2655f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.31.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2011-01-09 19:46+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" diff --git a/po/tr.po b/po/tr.po index 28c49bb05a..f53c2829a5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.0\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2004-04-03 03:14+0300\n" "Last-Translator: Baris Cicek \n" "Language-Team: Turkish \n" diff --git a/po/uk.po b/po/uk.po index 12e75a020d..7e673b6a39 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-11-28 20:11+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/po/vi.po b/po/vi.po index 64ee49f25a..7b0a9ce1c1 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-1.0.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2012-12-02 08:10+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 55a4e5bf75..11817e0cca 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.25.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2010-02-02 18:58+0800\n" "Last-Translator: Ji ZhengYu \n" "Language-Team: Chinese (simplified) \n" diff --git a/po/zh_TW.po b/po/zh_TW.po index a78a5fa45b..bc15bd7fbd 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.8\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2013-03-22 09:49+0000\n" +"POT-Creation-Date: 2013-04-26 12:08+0200\n" "PO-Revision-Date: 2005-04-27 14:55+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" diff --git a/win32/common/config.h b/win32/common/config.h index 27fdfd956b..36c5dccbab 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -62,7 +62,10 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2013-03-22" +#define GST_PACKAGE_RELEASE_DATETIME "2013-04-26" + +/* Define if static plugins should be built */ +#undef GST_PLUGIN_BUILD_STATIC /* location of the installed gst-plugin-scanner */ #define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner" @@ -340,7 +343,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.0.6" +#define PACKAGE_STRING "GStreamer 1.0.7" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -349,7 +352,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.0.6" +#define PACKAGE_VERSION "1.0.7" /* directory where plugins are located */ #ifdef _DEBUG @@ -387,7 +390,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.0.6" +#define VERSION "1.0.7" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h index 89985913a7..5b0e5e062a 100644 --- a/win32/common/gstversion.h +++ b/win32/common/gstversion.h @@ -57,7 +57,7 @@ G_BEGIN_DECLS * * The micro version of GStreamer at compile time: */ -#define GST_VERSION_MICRO (6) +#define GST_VERSION_MICRO (7) /** * GST_VERSION_NANO: * -- cgit v1.2.3