From 6cb78a36adf5cd198a67c3fe0f638607cf32b243 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Thu, 30 Nov 2023 22:05:36 +0200 Subject: [PATCH] Release version 0.19.1 --- NEWS | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ meson.build | 4 ++-- 2 files changed, 53 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index b2316e46..c086edb2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,54 @@ +========================== +0.19.1 - November 30, 2023 +========================== + +- Support multiple web views, using the new CogView and CogViewport APIs. + Each viewport may display one from a set of web views, and using many + viewports is supported as well. Typically platform plug-ins map a + viewport to some kind of "window" that can be displayed on screen. + Most of the changes in this release are related to this new feature. +- launcher: Add command line flag to disable the built-in key bindings. +- launcher: Add command line flag to control media auto-play behaviour. +- launcher: Handle GApplication activation to avoid a warning. +- core: Move most of the key binding handling from the Wayland platform + into CogView, making it common code for all platforms. +- core: Moved platform plug-in selection logic into the library, along + with an always-built "fallback" implementation, which simplifies API + usage. +- core: Avoid leaking web views due to CogShell holding one reference + too much on them. +- core: The library now takes advantage of symbol visibility, and only + the public symbols marked with the COG_API macro will be available for + linking from the shared library. +- core: Avoid loading the same platform plug-in more than once. +- core: Automatically scan the default module path without needing + programs to call cog_modules_add_directory() by themselves. +- core: Remove the cog_platform_configure() function, in favor of + an new cog_init() function which is optional to call, and reorganized + setup code to make API usage simpler. +- meson: Fix configuration error when only the Wayland platform plug-in + is selected. +- drm: Fix touch region dimensions when the output is rotated by 90 + or 270 degrees. +- drm: Fix crash on iMX.6 (and possibly others) by improving how the + CRTC and encoder combination is chosen. +- x11: Add support for using the xcb-keysyms library for handling key + input events when the XKB extension is unavailable, either because + its usage was disabled at build time, or the extension is missing at + runtime. +- wl: Add support for Weston protocols version 13. +- wl: Fix blurry rendering in some compositors. +- wl: Add a check for memfd_create() to avoid the need to have write + permission in XDG_RUNTIME_DIR, which is the case in some systems. +- wl: Set the opaque region also for non-fullscreen surfaces, resulting + in a small performance improvement in some cases. +- wl: Add support for multiple seats. +- wl: Remove limit of 16 maximum outputs. +- gtk4, x11, wl: Add support for file choosers using the XDG Desktop + Portal through libportal. +- gtk4, x11, wl: Add support for changing mouse cursors when hovering + links (hand) and text (I-beam). + ======================= 0.17.1 - March 11, 2023 ======================= diff --git a/meson.build b/meson.build index 5097173e..2ad8f752 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.17.1', + version: '0.19.1', ) # Before making a release, the LT_VERSION string should be modified. @@ -16,7 +16,7 @@ project('cog', 'c', # - 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, use [C, R+1, A]. -cogcore_soversion = [11, 1, 2] +cogcore_soversion = [12, 0, 0] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age