Skip to content

Commit 60012b1

Browse files
committed
Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.45.2 release
* Source/WebKit/wpe/NEWS: Add release notes for 2.45.2. * Source/cmake/OptionsWPE.cmake: Bump version numbers. Canonical link: https://commits.webkit.org/278752@main
1 parent 4807d74 commit 60012b1

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

Source/WebKit/wpe/NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
=================
2+
WPE WebKit 2.45.2
3+
=================
4+
5+
What's new in WPE WebKit 2.45.2?
6+
7+
- Use Cairo on big-endian platforms for now, since Skia does not support them.
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
WPE WebKit 2.45.1
315
=================

Source/cmake/OptionsWPE.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include(GNUInstallDirs)
22
include(VersioningUtils)
33

4-
SET_PROJECT_VERSION(2 45 1)
4+
SET_PROJECT_VERSION(2 45 2)
55

66
# This is required because we use the DEPFILE argument to add_custom_command().
77
# Remove after upgrading cmake_minimum_required() to 3.20.
@@ -190,11 +190,11 @@ find_package(GLIB ${GLIB_MINIMUM_VERSION} REQUIRED COMPONENTS gio gio-unix gobje
190190
SET_AND_EXPOSE_TO_BUILD(ENABLE_WPE_PLATFORM ${ENABLE_2022_GLIB_API})
191191

192192
if (WPE_API_VERSION VERSION_EQUAL "1.0")
193-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 27 0 24)
193+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 27 1 24)
194194
elseif (WPE_API_VERSION VERSION_EQUAL "1.1")
195-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 8 0 8)
195+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 8 1 8)
196196
else ()
197-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 5 0 4)
197+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 5 1 4)
198198
endif ()
199199

200200
if (ENABLE_WPE_PLATFORM)

0 commit comments

Comments
 (0)