mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
Release 1.15.1
This commit is contained in:
parent
448c496836
commit
a60056c6b0
6 changed files with 7892 additions and 57 deletions
34
RELEASE
34
RELEASE
|
@ -1,6 +1,6 @@
|
||||||
This is GStreamer gst-plugins-bad 1.15.0.1.
|
This is GStreamer gst-plugins-bad 1.15.1.
|
||||||
|
|
||||||
GStreamer 1.15 is the development version leading up to the next major
|
GStreamer 1.15 is the development branch leading up to the next major
|
||||||
stable version which will be 1.16.
|
stable version which will be 1.16.
|
||||||
|
|
||||||
The 1.15 development series adds new features on top of the 1.14 series and is
|
The 1.15 development series adds new features on top of the 1.14 series and is
|
||||||
|
@ -11,8 +11,8 @@ Full release notes will one day be found at:
|
||||||
|
|
||||||
https://gstreamer.freedesktop.org/releases/1.16/
|
https://gstreamer.freedesktop.org/releases/1.16/
|
||||||
|
|
||||||
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly
|
Binaries for Android, iOS, Mac OS X and Windows will usually be provided
|
||||||
after the release.
|
shortly after the release.
|
||||||
|
|
||||||
This module will not be very useful by itself and should be used in conjunction
|
This module will not be very useful by itself and should be used in conjunction
|
||||||
with other GStreamer modules for a complete multimedia experience.
|
with other GStreamer modules for a complete multimedia experience.
|
||||||
|
@ -57,7 +57,7 @@ You can find source releases of gstreamer in the download
|
||||||
directory: https://gstreamer.freedesktop.org/src/gstreamer/
|
directory: https://gstreamer.freedesktop.org/src/gstreamer/
|
||||||
|
|
||||||
The git repository and details how to clone it can be found at
|
The git repository and details how to clone it can be found at
|
||||||
http://cgit.freedesktop.org/gstreamer/gstreamer/
|
https://cgit.freedesktop.org/gstreamer/gstreamer/
|
||||||
|
|
||||||
==== Homepage ====
|
==== Homepage ====
|
||||||
|
|
||||||
|
@ -65,10 +65,16 @@ The project's website is https://gstreamer.freedesktop.org/
|
||||||
|
|
||||||
==== Support and Bugs ====
|
==== Support and Bugs ====
|
||||||
|
|
||||||
We use GNOME's bugzilla for bug reports and feature requests:
|
We have recently moved from GNOME Bugzilla to GitLab on freedesktop.org
|
||||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer
|
for bug reports and feature requests:
|
||||||
|
|
||||||
Please submit patches via bugzilla as well.
|
https://gitlab.freedesktop.org/gstreamer
|
||||||
|
|
||||||
|
Please submit patches via GitLab as well, in form of Merge Requests. See
|
||||||
|
|
||||||
|
https://gstreamer.freedesktop.org/documentation/contribute/
|
||||||
|
|
||||||
|
for more details.
|
||||||
|
|
||||||
For help and support, please subscribe to and send questions to the
|
For help and support, please subscribe to and send questions to the
|
||||||
gstreamer-devel mailing list (see below for details).
|
gstreamer-devel mailing list (see below for details).
|
||||||
|
@ -77,8 +83,14 @@ There is also a #gstreamer IRC channel on the Freenode IRC network.
|
||||||
|
|
||||||
==== Developers ====
|
==== Developers ====
|
||||||
|
|
||||||
GStreamer is stored in Git, hosted at git.freedesktop.org, and can be cloned
|
GStreamer source code repositories can be found on GitLab on freedesktop.org:
|
||||||
from there (see link above).
|
|
||||||
|
https://gitlab.freedesktop.org/gstreamer
|
||||||
|
|
||||||
|
and can also be cloned from there and this is also where you can submit
|
||||||
|
Merge Requests or file issues for bugs or feature requests.
|
||||||
|
|
||||||
Interested developers of the core library, plugins, and applications should
|
Interested developers of the core library, plugins, and applications should
|
||||||
subscribe to the gstreamer-devel list.
|
subscribe to the gstreamer-devel list:
|
||||||
|
|
||||||
|
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
|
||||||
|
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.69])
|
||||||
dnl initialize autoconf
|
dnl initialize autoconf
|
||||||
dnl when going to/from release please set the nano (fourth number) right !
|
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 releases only do Wall, git and prerelease does Werror too
|
||||||
AC_INIT([GStreamer Bad Plug-ins],[1.15.0.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
AC_INIT([GStreamer Bad Plug-ins],[1.15.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
||||||
|
|
||||||
AG_GST_INIT
|
AG_GST_INIT
|
||||||
|
|
||||||
|
@ -51,11 +51,11 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
||||||
dnl - interfaces added -> increment AGE
|
dnl - interfaces added -> increment AGE
|
||||||
dnl - interfaces removed -> AGE = 0
|
dnl - interfaces removed -> AGE = 0
|
||||||
dnl sets GST_LT_LDFLAGS
|
dnl sets GST_LT_LDFLAGS
|
||||||
AS_LIBTOOL(GST, 1500, 0, 1500)
|
AS_LIBTOOL(GST, 1501, 0, 1501)
|
||||||
|
|
||||||
dnl *** required versions of GStreamer stuff ***
|
dnl *** required versions of GStreamer stuff ***
|
||||||
GST_REQ=1.15.0.1
|
GST_REQ=1.15.1
|
||||||
GSTPB_REQ=1.15.0.1
|
GSTPB_REQ=1.15.1
|
||||||
|
|
||||||
dnl *** autotools stuff ****
|
dnl *** autotools stuff ****
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,16 @@ real live maintainer, or some actual wide use.
|
||||||
</GitRepository>
|
</GitRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>1.15.1</revision>
|
||||||
|
<branch>master</branch>
|
||||||
|
<name></name>
|
||||||
|
<created>2019-01-17</created>
|
||||||
|
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.15.1.tar.xz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>1.14.0</revision>
|
<revision>1.14.0</revision>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('gst-plugins-bad', 'c', 'cpp',
|
project('gst-plugins-bad', 'c', 'cpp',
|
||||||
version : '1.15.0.1',
|
version : '1.15.1',
|
||||||
meson_version : '>= 0.47',
|
meson_version : '>= 0.47',
|
||||||
default_options : [ 'warning_level=1',
|
default_options : [ 'warning_level=1',
|
||||||
'buildtype=debugoptimized' ])
|
'buildtype=debugoptimized' ])
|
||||||
|
|
Loading…
Reference in a new issue