Skip to content

Commit

Permalink
Release version 0.13.90
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Jun 29, 2022
1 parent df13f3e commit 3e8cee7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.12)
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake")
include(VersioningUtils)

set_project_version(0 13 3)
set_project_version(0 13 90)

# Before making a release, the LT_VERSION string should be modified.
# The string is of the form C:R:A.
Expand All @@ -12,7 +12,7 @@ set_project_version(0 13 3)
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
calculate_library_versions_from_libtool_triple(COGCORE 9 2 0)
calculate_library_versions_from_libtool_triple(COGCORE 9 3 0)

project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C)
include(CMakeDependentOption)
Expand Down
24 changes: 24 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
=======================
0.13.90 - June 29, 2022
=======================

- cmake: Enable libsoup3 usage by default, USE_SOUP2=ON can still be specified
to build against libsoup2.
- cmake: Require version 3.12, which is the same minimum as needed by WebKit.
- cmake: Link the same wpebackend-fdo library in all components to avoid
crashes due to multiple copies loaded with different behaviours.
- cmake: Fix generated .pc file when using an absolute directory for the
CMAKE_INSTALL_LIBDIR option instead of a relative one.
- core: Add "Try again" button to default error pages.
- gtk4: Fix rendering with drivers that support OpenGL 4.
- wl: Avoid crashing due to missing callbacks by explicitly binding to
supported versions of Wayland protocols.
- wl: Fix the build with COG_WESTON_DIRECT_DISPLAY enabled.
- wl: Fix fullscreen surface dimensions when using SHM buffers.
- wl: Add keybindings to refresh the current page (Ctrl-R, F5).
- x11: Fix underlinking when the --as-needed linker flag is in use.
- x11: Fix rendering in non-composited (traditional) window managers.
- drm, gtk4, x11: Factor out and reuse the GLES textured quad painting code.
- drm, wl, x11: Add refresh rate reporting to let WebKit pace rendering to
match the output device.

=========================
0.13.3 - January 12, 2022
=========================
Expand Down

0 comments on commit 3e8cee7

Please sign in to comment.