Skip to content

Commit

Permalink
Unreviewed. Update OptionsGTK.cmake and NEWS for the 2.40.1 release
Browse files Browse the repository at this point in the history
* Source/WebKit/gtk/NEWS: Add release notes.
* Source/cmake/OptionsGTK.cmake: Bump version numbers.
  • Loading branch information
aperezdc committed Apr 19, 2023
1 parent beaebb1 commit 5dcc939
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 7 deletions.
29 changes: 29 additions & 0 deletions Source/WebKit/gtk/NEWS
@@ -1,3 +1,32 @@
================
WebKitGTK 2.40.1
================

What's new in WebKitGTK 2.40.1?

- The Bubblewrap sandbox no longer requires setting an application
identifier via GApplication to operate correctly. Using GApplication
is still recommended, but optional.
- Adjust the scrolling speed for mouse wheels to make it feel more natural.
- Allow pasting content using the Asynchronous Clipboard API when the
origin is the same as the clipboard contents.
- Improvements to the GStreamer multimedia playback, in particular
around MSE, WebRTC, and seeking.
- Make all supported image types appear in the Accept HTTP header.
- Fix text caret blinking when blinking is disabled in the GTK settings.
- Fix default database quota size definition.
- Fix application of all caps tags listed in the font-feature-settings
CSS property.
- Fix the build with journald support enabled when using elogind
instead of the systemd libraries.
- Fix the build when libgcrypt provides a libgcrypt-config script
instead of a pkg-config module file.
- Fix font height calculations for the font-size-adjust CSS property.
- Fix the build when ccache is used in certain setups.
- Fix the build for RISC-V 64-bit targets.
- Fix the build with GCC 13.
- Fix several crashes and rendering issues.

================
WebKitGTK 2.40.0
================
Expand Down
14 changes: 7 additions & 7 deletions Source/cmake/OptionsGTK.cmake
Expand Up @@ -3,7 +3,7 @@ include(VersioningUtils)

WEBKIT_OPTION_BEGIN()

SET_PROJECT_VERSION(2 40 0)
SET_PROJECT_VERSION(2 40 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 @@ -246,14 +246,14 @@ EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_INFIX)
EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_VERSION)

if (WEBKITGTK_API_VERSION VERSION_EQUAL "4.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 100 1 63)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 40 9 22)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 100 2 63)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 40 10 22)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 8 1 8)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 3 9 3)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 8 2 8)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 3 10 3)
elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0")
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 1 0)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 1 2 0)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 2 0)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 1 3 0)
else ()
message(FATAL_ERROR "Unhandled API version")
endif ()
Expand Down

0 comments on commit 5dcc939

Please sign in to comment.