Skip to content

Commit 4807d74

Browse files
committed
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.45.2 release
* 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
1 parent 932ed78 commit 4807d74

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

Source/WebKit/gtk/NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
================
2+
WebKitGTK 2.45.2
3+
================
4+
5+
What's new in WebKitGTK 2.45.2?
6+
7+
- Use cairo on big-endian for now, since skia doesn't support it.
8+
- Fix a crash in GIF image decoder.
9+
- Revert the text scaling fix, since it caused several issues in some sites.
10+
- Add new API to load settings from a config file.
11+
- Fix several crashes and rendering issues.
12+
113
================
214
WebKitGTK 2.45.1
315
================

Source/cmake/OptionsGTK.cmake

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include(VersioningUtils)
33

44
WEBKIT_OPTION_BEGIN()
55

6-
SET_PROJECT_VERSION(2 45 1)
6+
SET_PROJECT_VERSION(2 45 2)
77

88
# This is required because we use the DEPFILE argument to add_custom_command().
99
# Remove after upgrading cmake_minimum_required() to 3.20.
@@ -215,14 +215,14 @@ EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_INFIX)
215215
EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_VERSION)
216216

217217
if (WEBKITGTK_API_VERSION VERSION_EQUAL "4.0")
218-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 106 0 69)
219-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 43 0 25)
218+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 107 0 70)
219+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 43 1 25)
220220
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1")
221-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 14 0 14)
222-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 6 0 6)
221+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 15 0 15)
222+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 6 1 6)
223223
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0")
224-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 10 0 6)
225-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 0 3)
224+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 11 0 7)
225+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 4 1 3)
226226
else ()
227227
message(FATAL_ERROR "Unhandled API version")
228228
endif ()

0 commit comments

Comments
 (0)