diff --git a/webkit2gtk3.changes b/webkit2gtk3.changes index 945d719..1ade1c7 100644 --- a/webkit2gtk3.changes +++ b/webkit2gtk3.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Tue Sep 20 15:16:41 UTC 2016 - dimstar@opensuse.org + +- Update to version 2.14.0: + + Use gdk_cairo_draw_from_gl() when possible in Wayland to render + directly using the GPU in the UI process. + + Ensure we don't send an empty referrer header after session + restore. + + Fix a web process crash in pages using filter animations. + + Fix main frame scrolling jumps when scrolling acclerated + subframes. + + Fix the size of the cairo surface created in the UI process on + Wayland. + + Fix memory leak in JavaScriptCore. + + Fix the build when '.' is not in @INC by default in perl. + + Updated translations. +- Rebase webkitgtk-disable-gcc-version-checks.patch. + ------------------------------------------------------------------- Fri Sep 16 17:41:45 UTC 2016 - junrrein@gmail.com diff --git a/webkit2gtk3.spec b/webkit2gtk3.spec index 2b7f2eb..81c3e51 100644 --- a/webkit2gtk3.spec +++ b/webkit2gtk3.spec @@ -26,7 +26,7 @@ %define _pkgconfig_suffix gtk-3.0 %define _name webkitgtk Name: webkit2gtk3 -Version: 2.13.92 +Version: 2.14.0 Release: 0 Summary: Library for rendering web content, GTK+ Port License: LGPL-2.0+ and BSD-3-Clause diff --git a/webkitgtk-2.13.92.tar.xz b/webkitgtk-2.13.92.tar.xz deleted file mode 100644 index b3a4852..0000000 --- a/webkitgtk-2.13.92.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:97db90daa1f7241eade79f91c0c94001a7ad4b17ebb0a1c5c0b7a8449dae94e0 -size 13412072 diff --git a/webkitgtk-2.14.0.tar.xz b/webkitgtk-2.14.0.tar.xz new file mode 100644 index 0000000..3f15553 --- /dev/null +++ b/webkitgtk-2.14.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0513ad836c624a3d24bdf1a99f4b4aead984ab6684150bc70f16db651590ea0a +size 13412028 diff --git a/webkitgtk-disable-gcc-version-checks.patch b/webkitgtk-disable-gcc-version-checks.patch index 4ee47ce..594e7f7 100644 --- a/webkitgtk-disable-gcc-version-checks.patch +++ b/webkitgtk-disable-gcc-version-checks.patch @@ -11,11 +11,11 @@ process code. Source/cmake/OptionsGTK.cmake | 7 ------- 1 file changed, 7 deletions(-) -Index: webkitgtk-2.12.4/Source/cmake/OptionsGTK.cmake +Index: webkitgtk-2.14.0/Source/cmake/OptionsGTK.cmake =================================================================== ---- webkitgtk-2.12.4.orig/Source/cmake/OptionsGTK.cmake -+++ webkitgtk-2.12.4/Source/cmake/OptionsGTK.cmake -@@ -6,13 +6,6 @@ set(PROJECT_VERSION_MICRO 4) +--- webkitgtk-2.14.0.orig/Source/cmake/OptionsGTK.cmake ++++ webkitgtk-2.14.0/Source/cmake/OptionsGTK.cmake +@@ -6,13 +6,6 @@ set(PROJECT_VERSION_MICRO 0) set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO}) set(WEBKITGTK_API_VERSION 4.0) @@ -28,12 +28,12 @@ Index: webkitgtk-2.12.4/Source/cmake/OptionsGTK.cmake - # Libtool library version, not to be confused with API version. # See http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 50 11 13) -Index: webkitgtk-2.12.4/Source/WTF/wtf/Compiler.h + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 51 7 14) +Index: webkitgtk-2.14.0/Source/WTF/wtf/Compiler.h =================================================================== ---- webkitgtk-2.12.4.orig/Source/WTF/wtf/Compiler.h -+++ webkitgtk-2.12.4/Source/WTF/wtf/Compiler.h -@@ -70,8 +70,8 @@ +--- webkitgtk-2.14.0.orig/Source/WTF/wtf/Compiler.h ++++ webkitgtk-2.14.0/Source/WTF/wtf/Compiler.h +@@ -89,8 +89,8 @@ #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) #define GCC_VERSION_AT_LEAST(major, minor, patch) (GCC_VERSION >= (major * 10000 + minor * 100 + patch))