mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
Release 1.13.91
This commit is contained in:
parent
2df75442d0
commit
dc4a6d07ad
6 changed files with 958 additions and 43 deletions
51
ChangeLog
51
ChangeLog
|
@ -1,7 +1,58 @@
|
|||
=== release 1.13.91 ===
|
||||
|
||||
2018-03-13 19:28:33 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* gst-rtsp-server.doap:
|
||||
* meson.build:
|
||||
Release 1.13.91
|
||||
|
||||
2018-03-13 13:30:41 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* gst/rtsp-server/Makefile.am:
|
||||
* gst/rtsp-server/meson.build:
|
||||
* gst/rtsp-server/rtsp-address-pool.h:
|
||||
* gst/rtsp-server/rtsp-auth.h:
|
||||
* gst/rtsp-server/rtsp-client.h:
|
||||
* gst/rtsp-server/rtsp-context.h:
|
||||
* gst/rtsp-server/rtsp-media-factory-uri.h:
|
||||
* gst/rtsp-server/rtsp-media-factory.h:
|
||||
* gst/rtsp-server/rtsp-media.h:
|
||||
* gst/rtsp-server/rtsp-mount-points.h:
|
||||
* gst/rtsp-server/rtsp-onvif-client.h:
|
||||
* gst/rtsp-server/rtsp-onvif-media-factory.h:
|
||||
* gst/rtsp-server/rtsp-onvif-media.h:
|
||||
* gst/rtsp-server/rtsp-onvif-server.h:
|
||||
* gst/rtsp-server/rtsp-params.h:
|
||||
* gst/rtsp-server/rtsp-permissions.h:
|
||||
* gst/rtsp-server/rtsp-sdp.h:
|
||||
* gst/rtsp-server/rtsp-server-prelude.h:
|
||||
* gst/rtsp-server/rtsp-server.h:
|
||||
* gst/rtsp-server/rtsp-session-media.h:
|
||||
* gst/rtsp-server/rtsp-session-pool.h:
|
||||
* gst/rtsp-server/rtsp-session.h:
|
||||
* gst/rtsp-server/rtsp-stream-transport.h:
|
||||
* gst/rtsp-server/rtsp-stream.h:
|
||||
* gst/rtsp-server/rtsp-thread-pool.h:
|
||||
* gst/rtsp-server/rtsp-token.h:
|
||||
rtsp-server: GST_EXPORT -> GST_RTSP_SERVER_API
|
||||
We need different export decorators for the different libs.
|
||||
For now no actual change though, just rename before the release,
|
||||
and add prelude headers to define the new decorator to GST_EXPORT.
|
||||
|
||||
2018-03-07 12:20:05 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* gst/rtsp-server/rtsp-onvif-media-factory.c:
|
||||
rtsp-onvif-media-factory: Document that backchannel pipelines must end with async=false sinks
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=794143
|
||||
|
||||
=== release 1.13.90 ===
|
||||
|
||||
2018-03-03 22:49:34 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
|
|
2
RELEASE
2
RELEASE
|
@ -1,4 +1,4 @@
|
|||
This is GStreamer gst-rtsp-server 1.13.90.
|
||||
This is GStreamer gst-rtsp-server 1.13.91.
|
||||
|
||||
The GStreamer team is pleased to announce the first release candidate for the
|
||||
upcoming stable 1.14 release series.
|
||||
|
|
12
configure.ac
12
configure.ac
|
@ -2,7 +2,7 @@ AC_PREREQ(2.69)
|
|||
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 RTSP Server Library], [1.13.90],
|
||||
AC_INIT([GStreamer RTSP Server Library], [1.13.91],
|
||||
[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],
|
||||
[gst-rtsp-server])
|
||||
AG_GST_INIT
|
||||
|
@ -53,13 +53,13 @@ dnl 1.2.5 => 205
|
|||
dnl 1.10.9 (who knows) => 1009
|
||||
dnl
|
||||
dnl sets GST_LT_LDFLAGS
|
||||
AS_LIBTOOL(GST, 1390, 0, 1390)
|
||||
AS_LIBTOOL(GST, 1391, 0, 1391)
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=1.13.90
|
||||
GSTPB_REQ=1.13.90
|
||||
GSTPG_REQ=1.13.90
|
||||
GSTPD_REQ=1.13.90
|
||||
GST_REQ=1.13.91
|
||||
GSTPB_REQ=1.13.91
|
||||
GSTPG_REQ=1.13.91
|
||||
GSTPD_REQ=1.13.91
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -30,6 +30,16 @@ RTSP server library based on GStreamer
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.13.91</revision>
|
||||
<branch>master</branch>
|
||||
<name></name>
|
||||
<created>2018-03-13</created>
|
||||
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.13.91.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.13.90</revision>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('gst-rtsp-server', 'c',
|
||||
version : '1.13.90',
|
||||
version : '1.13.91',
|
||||
meson_version : '>= 0.33.0',
|
||||
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
|
||||
|
||||
|
|
Loading…
Reference in a new issue