Release 1.18.0

This commit is contained in:
Tim-Philipp Müller 2020-09-08 00:05:39 +01:00
parent e97cb3f59e
commit ae91a81d9a
7 changed files with 2112 additions and 69 deletions

View file

@ -1 +1 @@
include: "https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/master/gitlab/ci_template.yml"
include: "https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/1.18/gitlab/ci_template.yml"

View file

@ -1,3 +1,38 @@
=== release 1.18.0 ===
2020-09-08 00:05:39 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* README:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.18.0
2020-09-07 22:40:46 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
* scripts/dist-translations.py:
* scripts/meson.build:
meson: dist pot file in tarball
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/69>
2020-09-07 12:14:13 +0300 Sebastian Dröge <sebastian@centricular.com>
* ext/x264/gstx264enc.c:
x264: Update for gst_video_transfer_function_*() function renaming
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/68>
2020-08-21 10:35:11 +0300 Sebastian Dröge <sebastian@centricular.com>
* docs/gst_plugins_cache.json:
* ext/x264/gstx264enc.c:
x264enc: Allow maximum quantizer value of 63 instead of 51
QP_MAX_SPEC in x264 is set to 63 nowadays and in theory it allows even
up to 81 (QP_MAX) but that seems to be outside the spec.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/67>
=== release 1.17.90 ===
2020-08-20 16:12:23 +0100 Tim-Philipp Müller <tim@centricular.com>

2117
NEWS

File diff suppressed because it is too large Load diff

2
README
View file

@ -1,4 +1,4 @@
GStreamer 1.17.x development series
GStreamer 1.18.x stable series
WHAT IT IS
----------

13
RELEASE
View file

@ -1,13 +1,16 @@
This is GStreamer gst-plugins-ugly 1.17.90.
This is GStreamer gst-plugins-ugly 1.18.0.
GStreamer 1.17 is the development branch leading up to the next major
stable version which will be 1.18.
The GStreamer team is thrilled to announce a new major feature release
of your favourite cross-platform multimedia framework!
The 1.17 development series adds new features on top of the 1.16 series and is
As always, this release is again packed with new features, bug fixes and
other improvements.
The 1.18 release series adds new features on top of the 1.16 series and is
part of the API and ABI-stable 1.x release series of the GStreamer multimedia
framework.
Full release notes will one day be found at:
Full release notes can be found at:
https://gstreamer.freedesktop.org/releases/1.18/

View file

@ -33,6 +33,16 @@ might be widely known to present patent problems.
</GitRepository>
</repository>
<release>
<Version>
<revision>1.18.0</revision>
<branch>master</branch>
<name></name>
<created>2020-09-08</created>
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.18.0.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.17.90</revision>

View file

@ -1,5 +1,5 @@
project('gst-plugins-ugly', 'c',
version : '1.17.90',
version : '1.18.0',
meson_version : '>= 0.48',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])