Skip to content

Commit

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

Canonical link: https://commits.webkit.org/271095@main
  • Loading branch information
aperezdc committed Nov 24, 2023
1 parent 2e84bfc commit 9248512
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions Source/WebKit/wpe/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
=================
WPE WebKit 2.43.1
=================

What's new in WPE WebKit 2.43.1?

- Improve vblank synchronization when rendering.
- Improve DMA-BUF buffers handling for video frames.
- Use the buffer format preferred by the driver in DMA-BUF renderer.
- Do not block the compositing thread waiting for rendering threads.
- Improve performance when scaling images in a canvas.
- Allow disabling WebGL support using the API.
- Enable usage of libbacktrace by default.
- Fix several crashes and rendering issues.

=================
WPE WebKit 2.40.2
=================
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 41 2)
SET_PROJECT_VERSION(2 43 1)

# 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 @@ -196,11 +196,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 24 1 21)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 26 0 23)
elseif (WPE_API_VERSION VERSION_EQUAL "1.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 5 1 5)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 0 7)
else ()
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 2 1 1)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 0 3)
endif ()

set(CMAKE_C_VISIBILITY_PRESET hidden)
Expand Down

0 comments on commit 9248512

Please sign in to comment.