Skip to content

Commit

Permalink
Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.42.5 release
Browse files Browse the repository at this point in the history
* Source/WebKit/wpe/NEWS: Add release notes for 2.42.5.
* Source/cmake/OptionsWPE.cmake: Bump version numbers.
  • Loading branch information
aperezdc committed Feb 5, 2024
1 parent 5051f8e commit 8fd5997
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions Source/WebKit/wpe/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
=================
WPE WebKit 2.42.5
=================

What's new in WPE WebKit 2.42.5?

- Fix webkit_web_context_allow_tls_certificate_for_host to handle IPv6 URIs
produced by SoupURI.
- Ignore stops with offset zero before last one when rendering gradients
with Cairo.
- Write bwrapinfo.json to disk for xdg-desktop-portal.
- Support gamepad button sixteen (center button in center cluster).
- Update quirks to fix compatibility issues in a number of websites,
including bing.com, nfl.com, msn.com, bankofamerica.com, outlook.live.com,
hulu.com, jsfiddle.net, vote.gov, youtube.com, airtable.com, gizmodo.com,
and ceac.state.gov among others.
- Fix incorrent periodic deletion of LocalStorage and IndexedDB databases
for all websites.
- Fix several crashes and rendering issues.

=================
WPE WebKit 2.42.4
=================
Expand Down
8 changes: 4 additions & 4 deletions Source/cmake/OptionsWPE.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include(GNUInstallDirs)
include(VersioningUtils)

SET_PROJECT_VERSION(2 42 4)
SET_PROJECT_VERSION(2 42 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 @@ -194,11 +194,11 @@ endif ()
find_package(GLIB ${GLIB_MINIMUM_VERSION} REQUIRED COMPONENTS gio gio-unix gobject gthread gmodule)

if (WPE_API_VERSION VERSION_EQUAL "1.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 25 4 22)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 25 5 22)
elseif (WPE_API_VERSION VERSION_EQUAL "1.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 6 4 6)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 6 5 6)
else ()
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 3 4 2)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 3 5 2)
endif ()

set(CMAKE_C_VISIBILITY_PRESET hidden)
Expand Down

0 comments on commit 8fd5997

Please sign in to comment.