Skip to content

Commit

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

Canonical link: https://commits.webkit.org/278751@main
  • Loading branch information
carlosgcampos committed May 14, 2024
1 parent 932ed78 commit 4807d74
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions Source/WebKit/gtk/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
================
WebKitGTK 2.45.2
================

What's new in WebKitGTK 2.45.2?

- Use cairo on big-endian for now, since skia doesn't support it.
- Fix a crash in GIF image decoder.
- Revert the text scaling fix, since it caused several issues in some sites.
- Add new API to load settings from a config file.
- Fix several crashes and rendering issues.

================
WebKitGTK 2.45.1
================
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 45 1)
SET_PROJECT_VERSION(2 45 2)

# 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 @@ -215,14 +215,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 106 0 69)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 43 0 25)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 107 0 70)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 43 1 25)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 14 0 14)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 6 0 6)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 15 0 15)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 6 1 6)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 10 0 6)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 0 3)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 11 0 7)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 1 3)
else ()
message(FATAL_ERROR "Unhandled API version")
endif ()
Expand Down

0 comments on commit 4807d74

Please sign in to comment.