summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2020-08-04 16:51:59 +0200
committerraveit65 <[email protected]>2020-08-04 19:00:07 +0200
commit620f08c925c188a4c1eb7ccee21679be09376b85 (patch)
treee6ecefde5450c29b5503d9ac901b1671d74860c8
parent23874f5d0c539f2d8b5ec302155977b7cef3d18a (diff)
downloadmarco-620f08c925c188a4c1eb7ccee21679be09376b85.tar.bz2
marco-620f08c925c188a4c1eb7ccee21679be09376b85.tar.xz
release 1.24.1v1.24.1
-rw-r--r--NEWS20
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 22 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 5e66fcde..8a54beb2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+### marco 1.24.1
+
+ * update translations
+ * common: window icon (META_DEFAULT_ICON_NAME) is no longer available
+ * workspace: Don't try to use per-workspace MRU lists as a hint for focusing
+ * stack: make meta_window_raise() and meta_window_lower() smarter
+ * compositor: fix possible crash closing/destroying window . Fixes to previous commit.
+ * window: fix crash if workspace is null
+ * workspace-switcher: fix colors of selected workspace when compositing is disabled.
+ * build: silent build warnings for distcheck
+ * Remove unnecessary warnings about visible region
+ * meson: improvements
+ * Guard against null changes introduced by previous commit
+ * Introduce nullpointer checks and return null if validation fails
+ * util: meta_bug raises SIGABRT so it shouldn't return
+ * add meson build files to EXTRA_DIST
+ * remove warning: 'GTimeVal' is deprecated
+ * theme: avoid deprecated g_memmove
+ * frames: don't bother painting the background
+
### marco 1.24.0
* update translations
diff --git a/configure.ac b/configure.ac
index 997befd9..b6938419 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ(2.50)
m4_define([marco_major_version], [1])
m4_define([marco_minor_version], [24])
-m4_define([marco_micro_version], [0])
+m4_define([marco_micro_version], [1])
m4_define([marco_version],
[marco_major_version.marco_minor_version.marco_micro_version])
diff --git a/meson.build b/meson.build
index 821d515a..ba5e5f92 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'marco', 'c',
- version: '1.23.2',
+ version: '1.24.1',
meson_version: '>=0.47.0',
license: 'GPL2',
default_options : [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11'],