Skip to content

Commit

Permalink
Release version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Mar 16, 2021
1 parent 4d9e72f commit 814de0e
Show file tree
Hide file tree
Showing 2 changed files with 33 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.3)
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake")
include(VersioningUtils)

set_project_version(0 7 1)
set_project_version(0 9 1)

# 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 7 1)
# - 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 4 0 3)
calculate_library_versions_from_libtool_triple(COGCORE 5 0 4)

project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C)
include(DistTargets)
Expand Down
31 changes: 31 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
======================
0.9.1 - March 16, 2021
======================

- core: Added CogPrefixRoutesHandler, which can route URI scheme requests
with different path prefixes to other handlers.
- core: Added new CogShell.device-scale-factor property.
- core: Added support in CogDirectoryFilesHandler to use the URI host part
as a path component, to ignore a certain amount of path components, and
expose the base path as a property.
- core: Removed support for building using WebKitGTK, only the WPE port is
supported now.
- drm: The DRM/KMS platform module is now built by default.
- drm: Added support for key press event repeat.
- drm: Added support for mouse cursor.
- drm: Added support for atomic modesetting, which is automatically used
by default when support is detected in the video driver.
- drm: Added support for limiting the maximum used video mode width and
height, settable using the COG_PLATFORM_DRM_MODE_MAX environment variable.
- drm: Fixed usage of the specified output device scaling factor.
- drm: Improve logging output.
- drm, fdo: Added support for SHM buffer exports, which for example allows
using Mesa's software rasterization.
- fdo: Try using the largest available output video mode when using the
zwp_fullscreen_shell_v1 protocol.
- headless: Added new "headless" platform module, which does not produce
output and can be used without any graphics hardware e.g. in combination
with Mesa's software rasterization.
- x11: Added new "x11" platform module, which uses an X11 window to paint
rendered web content using XCB and OpenGL.

======================
0.7.1 - April 11, 2020
======================
Expand Down

0 comments on commit 814de0e

Please sign in to comment.