diff options
author | Thibault Saunier <tsaunier@gnome.org> | 2015-09-25 12:29:40 +0200 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2015-09-25 12:29:40 +0200 |
commit | da34328c50f7d146d3e31655b32376b961682a49 (patch) | |
tree | 5d20c8c14e800394f3ff6a566e86d325f518d188 | |
parent | 822e0a7b09b4da360736d1c1e727584f2a9eca53 (diff) |
Release 1.6.01.6.0
-rw-r--r-- | ChangeLog | 59 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | RELEASE | 24 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | gst-editing-services.doap | 9 |
5 files changed, 79 insertions, 21 deletions
@@ -1,9 +1,64 @@ +=== release 1.6.0 === + +2015-09-25 Thibault Saunier <tsaunier@gnome.org> + + * configure.ac: + releasing 1.6.0 + +2015-09-24 13:21:15 +0200 Thibault Saunier <tsaunier@gnome.org> + + * ges/ges-container.c: + * ges/ges-timeline.c: + ges: Avoid emitting 'child-added/removed' when signal emission stops addition + In the GESTimeline, TrackElement addition to a clip might get cancelled + (and thus the element gets removed), we need to make sure users do not + get wrong signals. + Also document the fact that user should connect to container::child-added + with g_signal_connect_after. + +2015-09-22 23:10:35 +0900 Justin Kim <justin.kim@collabora.com> + + * plugins/nle/nlecomposition.c: + * plugins/nle/nleobject.c: + nle{composition,object}: remove unused allocation & trivial leakages + nlecomposition allocates unused 'UpdateCompositionData' and it + causes leakages. + https://bugzilla.gnome.org/show_bug.cgi?id=755417 + +2015-09-24 13:40:27 +0900 Justin Kim <justin.kim@collabora.com> + + * ges/ges-pipeline.c: + pipeline: don't leak GstPad + https://bugzilla.gnome.org/show_bug.cgi?id=755505 + +2015-09-24 13:42:16 +0900 Justin Kim <justin.kim@collabora.com> + + * ges/ges-pitivi-formatter.c: + pitivi-formatter: don't leak internal hash table + https://bugzilla.gnome.org/show_bug.cgi?id=755505 + +2015-09-23 21:23:13 +0200 Thibault Saunier <tsaunier@gnome.org> + + * ges/ges-video-transition.c: + video-transition: Make compositor background transparent + Allowing further mixing downstream + +2015-09-23 21:12:33 +0200 Thibault Saunier <tsaunier@gnome.org> + + * ges/ges-video-transition.c: + video-transition: Add a framepositioner at the end of the transitio + So downstream compositor knows the zorder of the various streams + === release 1.5.91 === -2015-09-18 Thibault Saunier <tsaunier@gnome.org> +2015-09-18 18:40:18 +0200 Thibault Saunier <tsaunier@gnome.org> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.5.91 + * gst-editing-services.doap: + Release 1.5.91 2015-09-18 10:01:44 +0200 Thibault Saunier <tsaunier@gnome.org> @@ -1 +1 @@ -This is the 1.5.91 release of the GStreamer Editing Services +This is the 1.6.0 release of the GStreamer Editing Services @@ -1,16 +1,16 @@ -Release notes for GStreamer Editing Services 1.5.91 +Release notes for GStreamer Editing Services 1.6.0 -The GStreamer team is pleased to announce the second release candidate for the -stable 1.6 release series. The 1.6 release series is adding new features on top of -the 1.0, 1.2 and 1.4 series and is part of the API and ABI-stable 1.x release -series of the GStreamer Editing Services. The final 1.6.0 release is planned -in the next few days unless any major bugs are found. +The GStreamer team is pleased to announce the first release of the GStreamer +Editing Services stable 1.6 release series. The 1.6 release series is adding +new features on top of the 1.2 and 1.4 series and is part of the API and +ABI-stable 1.x release series of the GStreamer multimedia framework. -Binaries for Android, iOS, Mac OS X and Windows will be provided separately by -the GStreamer project. + +Binaries for Android, iOS, Mac OS X and Windows are provided together +with this release. @@ -20,12 +20,7 @@ Features of this release Bugs fixed in this release - * 753806 : [REGRESSION] aggregator: Default to " zero " start time selection mode as documented broke several GES Validate tests - * 754783 : ges-launch: crash when argument is invalid - * 754858 : ges-launch: leakage of GError - * 754867 : timeline,nleobject,nlecomposition: leakage of pad and hashtable reference when disposing - * 754893 : nle: Segment base time accumulation is broken fixing videoaggregator segment handling - * 755012 : GES timeline playback stops after playing a clip with an effect containing the pitch plugin + * 755417 : nlecomposition allocates unused UpdateCompositionData ==== Download ==== @@ -64,7 +59,6 @@ Applications Contributors to this release - * Jan Schmidt * Justin Kim * Thibault Saunier
\ No newline at end of file diff --git a/configure.ac b/configure.ac index a1f927f9..26eb7ddb 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ(2.62) 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 Editing Services, 1.5.91, +AC_INIT(GStreamer Editing Services, 1.6.0, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gstreamer-editing-services) @@ -54,8 +54,8 @@ AC_SUBST(GST_API_VERSION) AS_LIBTOOL(GST, 0, 0, 0) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.5.91 -GSTPB_REQ=1.5.91 +GST_REQ=1.6.0 +GSTPB_REQ=1.6.0 dnl *** autotools stuff **** diff --git a/gst-editing-services.doap b/gst-editing-services.doap index 59694666..9c0de5c2 100644 --- a/gst-editing-services.doap +++ b/gst-editing-services.doap @@ -32,6 +32,15 @@ GStreamer library for creating audio and video editors <release> <Version> + <revision>1.6.0</revision> + <branch>1.6</branch> + <created>2015-09-25</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-editing-services/gst-editing-services-1.6.0.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.5.91</revision> <branch>1.5</branch> <created>2015-09-18</created> |