]> git.mdlowis.com Git - proto/labwc.git/commitdiff
labwc 0.3.0
authorJohan Malm <jgm323@gmail.com>
Mon, 28 Jun 2021 19:59:43 +0000 (20:59 +0100)
committerJohan Malm <jgm323@gmail.com>
Mon, 28 Jun 2021 19:59:43 +0000 (20:59 +0100)
NEWS.md
meson.build

diff --git a/NEWS.md b/NEWS.md
index f56f4403346137bfec466f49916608bb9db51074..af8899b91428743776c9dc7b159945208f2a64c6 100644 (file)
--- 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 <focus><followMouse> and <focus><raiseOnFocus>
+  (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)
 
index fa7bee68815e5c845a529e1eadd0c1c22160defe..19870b462e5c2c2fbc629d2a003160b11463c807 100644 (file)
@@ -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'],