mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
Release 1.15.1
This commit is contained in:
parent
1cece5bde5
commit
fcfcbe76d3
6 changed files with 1238 additions and 55 deletions
196
ChangeLog
196
ChangeLog
|
@ -1,3 +1,199 @@
|
|||
=== release 1.15.1 ===
|
||||
|
||||
2019-01-17 02:33:52 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* gst-python.doap:
|
||||
* meson.build:
|
||||
Release 1.15.1
|
||||
|
||||
2019-01-09 11:39:19 +0100 Antonio Ospite <ao2@ao2.it>
|
||||
|
||||
* gi/overrides/Gst.py:
|
||||
overrides: add a set_caps() method to the Pad override
|
||||
The C API provides the gst_pad_set_caps() helper which makes it easier
|
||||
to set caps on pads (see gst/gstcompat.h in gstreamer core).
|
||||
Add such handy helper to the python bindings too.
|
||||
The implementation follows as close as possible the one in gstcompat.h
|
||||
with two changes:
|
||||
1. the type check on the pad has been removed because self is
|
||||
guaranteed to be a Gst.Pad in python.
|
||||
2. the null check on the caps has been extended to be a type check.
|
||||
Fixes https://gitlab.freedesktop.org/gstreamer/gst-python/issues/19
|
||||
|
||||
2018-12-30 23:53:03 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* autogen.sh:
|
||||
autogen.sh: update to match updated common submodule
|
||||
Unbreaks the autotools build and fixes #15.
|
||||
|
||||
2018-12-15 13:55:07 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* testsuite/old/test-object.c:
|
||||
* testsuite/old/testhelpermodule.c:
|
||||
Fix indentation of .c files
|
||||
Required to make gst-indent linter on CI happy.
|
||||
|
||||
2018-12-05 18:43:06 -0300 Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* common:
|
||||
Update common submodule
|
||||
|
||||
2018-11-12 13:26:58 +0200 Jordan Petridis <jordan@centricular.com>
|
||||
|
||||
* .gitlab-ci.yml:
|
||||
Add Gitlab CI configuration
|
||||
This commit adds a .gitlab-ci.yml file, which uses a feature
|
||||
to fetch the config from a centralized repository. The intent is
|
||||
to have all the gstreamer modules use the same configuration.
|
||||
The configuration is currently hosted at the gst-ci repository
|
||||
under the gitlab/ci_template.yml path.
|
||||
Part of https://gitlab.freedesktop.org/gstreamer/gstreamer-project/issues/29
|
||||
|
||||
2018-11-05 05:51:05 +0000 Matthew Waters <matthew@centricular.com>
|
||||
|
||||
* .gitmodules:
|
||||
* gst-python.doap:
|
||||
Update git locations to gitlab
|
||||
|
||||
2018-10-31 17:02:24 +0100 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* testsuite/overrides_hack.py:
|
||||
Tests: the sys.meta_path trick does not work for python2
|
||||
Instead, for python2 revert to manipulating gi.overrides.__path__
|
||||
|
||||
2018-10-31 00:41:31 +0100 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* gi/overrides/Gst.py:
|
||||
* gi/overrides/meson.build:
|
||||
* testsuite/Makefile.am:
|
||||
* testsuite/meson.build:
|
||||
* testsuite/overrides_hack.py:
|
||||
Tests: refactor testing approach
|
||||
Instead of fiddling with sys.path, we instead use a custom
|
||||
sys.meta_path importer
|
||||
|
||||
2018-10-28 17:52:33 +0100 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* Makefile.am:
|
||||
* meson.build:
|
||||
meson: address python module port comments
|
||||
|
||||
2018-05-14 10:05:15 +0200 Havard Graff <havard.graff@gmail.com>
|
||||
|
||||
* gi/overrides/Gst.py:
|
||||
* gi/overrides/meson.build:
|
||||
* meson.build:
|
||||
* meson_options.txt:
|
||||
* plugin/meson.build:
|
||||
* scripts/pythondetector:
|
||||
* testsuite/meson.build:
|
||||
meson: use new python module
|
||||
This patch makes the tests pass running uninstalled and installed, with
|
||||
python2 and python3 on linux, windows and osx.
|
||||
The main gist is to use the new python-module to do the lifting done
|
||||
by pythondetector, and with that add support for python2 and windows.
|
||||
|
||||
2018-10-28 17:51:44 +0100 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* gi/Makefile.am:
|
||||
* gi/overrides/Makefile.am:
|
||||
automake: remove __init__.py's
|
||||
|
||||
2018-10-28 14:14:09 +0100 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* gi/__init__.py:
|
||||
* gi/overrides/__init__.py:
|
||||
Remove __init__.py files
|
||||
They were not installed, and were simply used for our
|
||||
uninstalled setup, which we now implement differently.
|
||||
|
||||
2018-10-27 18:04:11 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* meson.build:
|
||||
meson: add pygobject fallback
|
||||
|
||||
2018-07-29 20:06:09 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* examples/plugins/python/py_audiotestsrc.py:
|
||||
* examples/requirements.txt:
|
||||
Examples: add audiotestsrc plugin example
|
||||
|
||||
2018-07-29 20:00:43 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* examples/plugins/python/audioplot.py:
|
||||
* examples/requirements.txt:
|
||||
Examples: add audioplot plugin example
|
||||
|
||||
2018-07-29 19:51:34 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* examples/README.md:
|
||||
* examples/plugins/python/mixer.py:
|
||||
* examples/requirements.txt:
|
||||
Examples: add mixer plugin example
|
||||
|
||||
2018-07-20 17:00:22 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* examples/dynamic_src.py:
|
||||
examples: add a dynamic pipeline example
|
||||
|
||||
2018-07-20 15:58:35 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* examples/helloworld.py:
|
||||
helloworld: fix typo
|
||||
|
||||
2018-03-20 08:54:24 +0100 Havard Graff <havard.graff@gmail.com>
|
||||
|
||||
* gi/overrides/gstmodule.c:
|
||||
gstmodule: fix warning when building against python2
|
||||
PyMapping_GetItemString’ discards ‘const’ qualifier from pointer target type
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=796093
|
||||
|
||||
2018-05-01 15:01:11 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* Makefile.am:
|
||||
Fix distcheck
|
||||
|
||||
2018-05-01 12:08:54 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* config.h.meson:
|
||||
* meson.build:
|
||||
meson: drop config.h.meson template
|
||||
|
||||
2018-04-25 15:11:31 -0300 Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* configure.ac:
|
||||
* meson.build:
|
||||
Bump pygobject dependency to 3.8
|
||||
|
||||
2018-04-25 19:47:19 +0200 Emilio Pozuelo Monfort <pochu27@gmail.com>
|
||||
|
||||
* gi/overrides/Gst.py:
|
||||
* gi/overrides/GstPbutils.py:
|
||||
overrides: use get_introspection_module
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=795555
|
||||
|
||||
2018-04-07 21:46:07 -0300 Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* gi/overrides/Gst.py:
|
||||
overrides: Fix mixup between query function and chain one
|
||||
|
||||
2018-04-03 13:28:16 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* Makefile.am:
|
||||
Dist autogen.sh and configure.ac
|
||||
|
||||
2018-03-20 10:27:38 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* meson.build:
|
||||
Back to development
|
||||
|
||||
=== release 1.14.0 ===
|
||||
|
||||
2018-03-19 20:29:28 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
|
34
RELEASE
34
RELEASE
|
@ -1,6 +1,6 @@
|
|||
This is GStreamer gst-python 1.15.0.1.
|
||||
This is GStreamer gst-python 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.
|
||||
|
||||
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/
|
||||
|
||||
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly
|
||||
after the release.
|
||||
Binaries for Android, iOS, Mac OS X and Windows will usually be provided
|
||||
shortly after the release.
|
||||
|
||||
This module will not be very useful by itself and should be used in conjunction
|
||||
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/
|
||||
|
||||
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 ====
|
||||
|
||||
|
@ -65,10 +65,16 @@ The project's website is https://gstreamer.freedesktop.org/
|
|||
|
||||
==== Support and Bugs ====
|
||||
|
||||
We use GNOME's bugzilla for bug reports and feature requests:
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer
|
||||
We have recently moved from GNOME Bugzilla to GitLab on freedesktop.org
|
||||
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
|
||||
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 ====
|
||||
|
||||
GStreamer is stored in Git, hosted at git.freedesktop.org, and can be cloned
|
||||
from there (see link above).
|
||||
GStreamer source code repositories can be found on GitLab on freedesktop.org:
|
||||
|
||||
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
|
||||
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.68])
|
|||
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 GObject Introspection overrides for Python , 1.15.0.1,
|
||||
AC_INIT(GStreamer GObject Introspection overrides for Python , 1.15.1,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-python)
|
||||
|
||||
|
@ -38,7 +38,7 @@ AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
|||
|
||||
dnl required versions of other packages
|
||||
dnl Note that they are runtime requirements
|
||||
AC_SUBST(GST_REQ, 1.15.0.1)
|
||||
AC_SUBST(GST_REQ, 1.15.1)
|
||||
AC_SUBST(PYGOBJECT_REQ, 3.8)
|
||||
|
||||
AC_DISABLE_STATIC
|
||||
|
|
|
@ -30,6 +30,16 @@ GStreamer Python Bindings is a set of overrides and Gst fundamental types handli
|
|||
</GitRepository>
|
||||
</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-python/gst-python-1.15.1.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.14.0</revision>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('gst-python', 'c', 'cpp',
|
||||
version : '1.15.0.1',
|
||||
version : '1.15.1',
|
||||
meson_version : '>= 0.46.0',
|
||||
default_options : [ 'warning_level=1',
|
||||
'c_std=gnu99',
|
||||
|
|
Loading…
Reference in a new issue