Skip to content

Commit 52f804f

Browse files
committed
Release version 0.11.1
1 parent 8e5c8b3 commit 52f804f

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.3)
33
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake")
44
include(VersioningUtils)
55

6-
set_project_version(0 9 1)
6+
set_project_version(0 11 1)
77

88
# Before making a release, the LT_VERSION string should be modified.
99
# The string is of the form C:R:A.
@@ -12,7 +12,7 @@ set_project_version(0 9 1)
1212
# - If binary compatibility has been broken (eg removed or changed interfaces)
1313
# change to C+1:0:0
1414
# - If the interface is the same as the previous version, change to C:R+1:A
15-
calculate_library_versions_from_libtool_triple(COGCORE 5 0 4)
15+
calculate_library_versions_from_libtool_triple(COGCORE 6 0 5)
1616

1717
project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C)
1818
include(DistTargets)

NEWS

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
=========================
2+
0.11.1 - November 3, 2021
3+
=========================
4+
5+
- core: Changed platform plug-ins to be able to automatically detect which
6+
one should be used. Passing the "--platform=" command line option to the
7+
launcher is now optional.
8+
- core: Added support for building against libsoup3.
9+
- core: Added CogHostRoutesHandler, which can route URI scheme requests
10+
with different host parts to other handlers.
11+
- core, cog: Added support for running in WebDriver automation mode.
12+
- cog: New "--enable-sandbox" command line option, which allows isolating
13+
rendering processes from the rest of the system.
14+
- cog: New "--content-filter=" command line option, which allows loading
15+
a content blocker (WebKitUserContentFilter) JSON rule set.
16+
- drm: Implemented handling of pointer axis/wheel/finger/continuous events
17+
and absolute motion events.
18+
- wl: Renamed "fdo" platform module to "wl" (Wayland) as it better reflects
19+
its usage; the old name still works e.g. when using "cog --platform=fdo"
20+
but it is considered deprecated and will cause a warning.
21+
- wl, gtk4: Added support for fullscreening web views.
22+
- gtk4: Honor the CogShell.device-scale-factor property.
23+
124
======================
225
0.9.1 - March 16, 2021
326
======================

0 commit comments

Comments
 (0)