Skip to content

Commit

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

Canonical link: https://commits.webkit.org/274313.252@webkitglib/2.44
  • Loading branch information
aperezdc committed May 14, 2024
1 parent 8f9e949 commit f736325
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions Source/WebKit/wpe/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
=================
WPE WebKit 2.44.2
=================

What's new in WPE WebKit 2.44.2?

- Decrease input notifications for gamepad inputs.
- Disable the gst-libav AAC decoder.
- Make gamepads visible on axis movements, and not only on button presses.
- Make user scripts and style sheets visible in the Web Inspector.
- Use the geolocation portal where available, with the existing geoclue
as fallback if the portal is not usable.
- Use optimized assembler BoringSSL modules with USE_LIBWEBRTC enabled.
- Fix mouse location in WebDriver when output device scaling is in effect.
- Fix touch input event propagation.
- Fix the build on 32-bit ARM with USE_LIBWEBRTC enabled.
- Fix the build with ENABLE_WEBAUDIO disabled.
- Fix several crashes and rendering issues.

=================
WPE WebKit 2.44.1
=================
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 44 1)
SET_PROJECT_VERSION(2 44 2)

# 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 @@ -200,11 +200,11 @@ find_package(GLIB ${GLIB_MINIMUM_VERSION} REQUIRED COMPONENTS gio gio-unix gobje
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 2 23)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 26 3 23)
elseif (WPE_API_VERSION VERSION_EQUAL "1.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 2 7)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 7 3 7)
else ()
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 2 3)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 3 3)
endif ()

if (ENABLE_WPE_PLATFORM)
Expand Down

0 comments on commit f736325

Please sign in to comment.