From: Johan Malm Date: Mon, 28 Jun 2021 19:59:43 +0000 (+0100) Subject: labwc 0.3.0 X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=d38d1a9bd008f88dd8854ef4ccbe57878757dfc6;p=proto%2Flabwc.git labwc 0.3.0 --- diff --git a/NEWS.md b/NEWS.md index f56f4403..af8899b9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,9 +3,14 @@ This file contains significant user-visible changes for each version. For full changelog, use `git log` -## 0.2.1 (2021-04-16) +## 0.3.0 (2021-06-28) -Fix meson.build +Compile with wlroots 0.14.0 + +- add config options and + (provided-by: Mikhail Kshevetskiy) +- stop trying to use Clearlooks-3.4 theme by default, just use built-in theme +- fix Qt application segfault ## 0.2.0 (2021-04-15) diff --git a/meson.build b/meson.build index fa7bee68..19870b46 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'labwc', 'c', - version: '0.2.1', + version: '0.3.0', license: 'GPL-2', default_options: [ 'c_std=c11', @@ -36,7 +36,7 @@ if git.found() endif add_project_arguments('-DLABWC_VERSION=@0@'.format(version), language: 'c') -wlroots_version = ['>=0.15.0', '<0.16.0'] +wlroots_version = ['>=0.14.0', '<0.15.0'] wlroots_proj = subproject( 'wlroots', default_options: ['examples=false'],