From cc8a0b01b8cdc01ed780657d0a4d4f5ea7377cb1 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Tue, 13 Jun 2023 05:11:26 -0700 Subject: [PATCH] Unreviewed. Update OptionsGTK.cmake and NEWS for 2.41.5 release * Source/WebKit/gtk/NEWS: Add release notes for 2.41.5. * Source/cmake/OptionsGTK.cmake: Bump version numbers. Canonical link: https://commits.webkit.org/265118@main --- Source/WebKit/gtk/NEWS | 14 ++++++++++++++ Source/cmake/OptionsGTK.cmake | 14 +++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Source/WebKit/gtk/NEWS b/Source/WebKit/gtk/NEWS index c152c099bb1b..548313891ee8 100644 --- a/Source/WebKit/gtk/NEWS +++ b/Source/WebKit/gtk/NEWS @@ -1,3 +1,17 @@ +================ +WebKitGTK 2.41.5 +================ + +What's new in WebKitGTK 2.41.5? + + - Include key modifiers in wheel events. + - Remove support for OpenGL API in the web process. + - Native DASH support is now opt-in, like HLS. + - Fix scrollbar jumping to top when drag released outside window in GTK4. + - Fix contents not rendered in new web view when realized after configure + and frame with DMA-BUF renderer. + - Fix several crashes and rendering issues. + ================ WebKitGTK 2.41.4 ================ diff --git a/Source/cmake/OptionsGTK.cmake b/Source/cmake/OptionsGTK.cmake index d5dddda0861c..3bec67a4ce60 100644 --- a/Source/cmake/OptionsGTK.cmake +++ b/Source/cmake/OptionsGTK.cmake @@ -3,7 +3,7 @@ include(VersioningUtils) WEBKIT_OPTION_BEGIN() -SET_PROJECT_VERSION(2 41 4) +SET_PROJECT_VERSION(2 41 5) # This is required because we use the DEPFILE argument to add_custom_command(). # Remove after upgrading cmake_minimum_required() to 3.20. @@ -222,14 +222,14 @@ EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_INFIX) EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_VERSION) if (WEBKITGTK_API_VERSION VERSION_EQUAL "4.0") - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 102 0 65) - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 41 3 23) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 102 1 65) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 41 4 23) elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1") - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 10 0 10) - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 3 4) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 10 1 10) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 4 4) elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0") - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 6 0 2) - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 2 3 1) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 6 1 2) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 2 4 1) else () message(FATAL_ERROR "Unhandled API version") endif ()