From a948bd01a6ccd06bb7e0362a0f3d60a82895b61e Mon Sep 17 00:00:00 2001 From: "carlosgc@webkit.org" Date: Wed, 27 May 2015 09:50:44 +0000 Subject: [PATCH] Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release. .: * Source/cmake/OptionsGTK.cmake: Bump version numbers. Source/WebKit2: * gtk/NEWS: Add release notes for 2.9.2. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184902 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- ChangeLog | 6 ++++++ Source/WebKit2/ChangeLog | 6 ++++++ Source/WebKit2/gtk/NEWS | 21 +++++++++++++++++++++ Source/cmake/OptionsGTK.cmake | 6 +++--- 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0d4fd1f..8784d96 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2015-05-27 Carlos Garcia Campos + + Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release. + + * Source/cmake/OptionsGTK.cmake: Bump version numbers. + 2015-05-25 Carlos Garcia Campos Unreviewed. Export DatabaseProcessMainUnix symbol. diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index b7a237e..e70e848 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,5 +1,11 @@ 2015-05-27 Carlos Garcia Campos + Unreviewed. Update OptionsGTK.cmake and NEWS for 2.9.2 release. + + * gtk/NEWS: Add release notes for 2.9.2. + +2015-05-27 Carlos Garcia Campos + [SOUP] Network Cache: Handle the case when we fail to create the IO stream https://bugs.webkit.org/show_bug.cgi?id=145406 diff --git a/Source/WebKit2/gtk/NEWS b/Source/WebKit2/gtk/NEWS index 616d926..e69caf1 100644 --- a/Source/WebKit2/gtk/NEWS +++ b/Source/WebKit2/gtk/NEWS @@ -1,4 +1,25 @@ ================= +WebKitGTK+ 2.9.2 +================= + +What's new in WebKitGTK+ 2.9.2? + + - Add IndexedDB support using a dedicated database process. + - Add construct property to WebKitWebContext to set the IndexedDB database directory. + - Add allow-file-access-from-file-urls to WebKitSettings. + - Improve network process disk cache performance by mapping cached resources in the + web process instead of sending the resources data via IPC. + - Prevent WorkQueue objects from being leaked and ensure its worker thread always exits. + - webkit_dom_html_element_get_children() has been deprecated in favor of + webkit_dom_element_get_children() to match the DOM spec. + - ARIA menu items no longer have anonymous block children. + - Map pre element to ATK_ROLE_SECTION instead of ATK_ROLE_PANEL. + - Always include rows in the tree of accessible tables. + - Fix the build with Netscape plugins disabled. + - Fix XPixmaps leaked by GLContext when using EGL on X11. + - Translation updates: Catalan. + +================= WebKitGTK+ 2.9.1 ================= diff --git a/Source/cmake/OptionsGTK.cmake b/Source/cmake/OptionsGTK.cmake index d30d053..13c65cb 100644 --- a/Source/cmake/OptionsGTK.cmake +++ b/Source/cmake/OptionsGTK.cmake @@ -3,7 +3,7 @@ include(GNUInstallDirs) set(PROJECT_VERSION_MAJOR 2) set(PROJECT_VERSION_MINOR 9) -set(PROJECT_VERSION_MICRO 1) +set(PROJECT_VERSION_MICRO 2) set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO}) set(WEBKITGTK_API_VERSION 4.0) @@ -16,8 +16,8 @@ endif () # 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 44 0 7) -CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 20 0 2) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 45 0 8) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 20 1 2) # These are shared variables, but we special case their definition so that we can use the # CMAKE_INSTALL_* variables that are populated by the GNUInstallDirs macro. -- 1.8.3.1