Skip to content

Commit

Permalink
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.41.6 release
Browse files Browse the repository at this point in the history
* Source/WebKit/gtk/NEWS: Add release notes for 2.41.6.
* Source/cmake/OptionsGTK.cmake: Bump version numbers.

Canonical link: https://commits.webkit.org/265751@main
  • Loading branch information
carlosgcampos committed Jul 4, 2023
1 parent 76bcdeb commit 86cf930
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions Source/WebKit/gtk/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
================
WebKitGTK 2.41.6
================

What's new in WebKitGTK 2.41.6?

- Add API to set the percentage of volume space that can be used for data storage.
- Do not use GBM and DMA-BUF for WebGL implementation.
- Use EGL_MESA_image_dma_buf_export if available when GBM is disabled.
- Fix AV1 video with the dav1d decoder when using the DMA-BUF sink.
- Use three buffers for DMA-BUF renderer.
- Fix several crashes and rendering issues.

================
WebKitGTK 2.41.5
================
Expand Down
14 changes: 7 additions & 7 deletions Source/cmake/OptionsGTK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include(VersioningUtils)

WEBKIT_OPTION_BEGIN()

SET_PROJECT_VERSION(2 41 5)
SET_PROJECT_VERSION(2 41 6)

# 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 1 65)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 41 4 23)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 103 0 66)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 41 5 23)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 10 1 10)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 4 4)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 11 0 11)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 5 4)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 6 1 2)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 2 4 1)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 0 3)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 2 5 1)
else ()
message(FATAL_ERROR "Unhandled API version")
endif ()
Expand Down

0 comments on commit 86cf930

Please sign in to comment.