Skip to content

Commit

Permalink
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.41.5 release
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
carlosgcampos committed Jun 13, 2023
1 parent 6dc46a7 commit cc8a0b0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions 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
================
Expand Down
14 changes: 7 additions & 7 deletions Source/cmake/OptionsGTK.cmake
Expand Up @@ -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.
Expand Down Expand Up @@ -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 ()
Expand Down

0 comments on commit cc8a0b0

Please sign in to comment.