From b0c5b0b08ed70bd1cc943df04410ee328bc5284c Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Thu, 9 Dec 2021 01:25:28 +0200 Subject: [PATCH] Release version 0.13.2 --- CMakeLists.txt | 4 ++-- NEWS | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73164ce1..01e819ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 13 1) +set_project_version(0 13 2) # Before making a release, the LT_VERSION string should be modified. # The string is of the form C:R:A. @@ -12,7 +12,7 @@ set_project_version(0 13 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 9 0 0) +calculate_library_versions_from_libtool_triple(COGCORE 9 1 0) project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C) include(DistTargets) diff --git a/NEWS b/NEWS index fdc0b15d..730a6df5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +========================= +0.13.2 - December 9, 2021 +========================= + +- launcher: Add new "--platform-params"/"-O" command line option, which + allows passing parameters to platforms plug-ins during initialization. +- drm: Add support for output rotation by means of a new OpenGL ES based + renderer, which can be enabled with "cog -O renderer=gles,rotation=1". +- drm: Rotate input device coordinates as needed to match output rotation. + ========================== 0.13.1 - November 26, 2021 ==========================