Skip to content

Commit

Permalink
Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.44.0 release
Browse files Browse the repository at this point in the history
Need the bug URL (OOPS!).

* Source/WebKit/wpe/NEWS: Add release notes for 2.44.0.
* Source/cmake/OptionsWPE.cmake: Bump version numbers.
  • Loading branch information
aperezdc committed Mar 20, 2024
1 parent a97ad12 commit 3e0634e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions Source/WebKit/wpe/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
=================
WPE WebKit 2.44.0
=================

What's new in WPE WebKit 2.43.1?

- Add BubblewrapLauncher sandbox directory for the GStreamer user
registry cache directory.
- Fix bug causing the preferred language to not be passed to
NetworkProcess if set in the WebKitWebContext before creating
a WebKitWebView.
- Do not use real time priority for the display link thread.
- Do not special case the "sans" font family name.
- Use a shorter web process cache lifetime.
- Write bwrapinfo.json to disk for xdg-desktop-portal.
- Fallback to timer based vblank monitor if drmWaitVBlank fails.
- Show vertical blank monitor information in webkit://gpu.
- Fix webkit_web_context_allow_tls_certificate_for_host() for IPv6
URIs produced by SoupURI.
- Fix mixed versions of WPE and backend in webkit://gpu.
- Fix several memory leaks in the multimedia backend.
- Fix rendering after history navigation.
- Fix several crashes and rendering issues.

=================
WPE WebKit 2.43.1
=================
Expand Down
10 changes: 5 additions & 5 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 43 1)
SET_PROJECT_VERSION(2 44 0)

# 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 @@ -197,14 +197,14 @@ else ()
endif ()
find_package(GLIB ${GLIB_MINIMUM_VERSION} REQUIRED COMPONENTS gio gio-unix gobject gthread gmodule)

SET_AND_EXPOSE_TO_BUILD(ENABLE_WPE_PLATFORM ${ENABLE_2022_GLIB_API})
SET_AND_EXPOSE_TO_BUILD(ENABLE_WPE_PLATFORM OFF)

if (WPE_API_VERSION VERSION_EQUAL "1.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 26 0 23)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 26 1 23)
elseif (WPE_API_VERSION VERSION_EQUAL "1.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 0 7)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 1 7)
else ()
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 0 3)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 1 3)
endif ()

if (ENABLE_WPE_PLATFORM)
Expand Down

0 comments on commit 3e0634e

Please sign in to comment.