diff options
author | mbkma <[email protected]> | 2022-11-11 20:37:53 +0100 |
---|---|---|
committer | mbkma <[email protected]> | 2022-11-11 20:37:53 +0100 |
commit | 14ca155db113b4c359a270460585ba03c0ccc5c5 (patch) | |
tree | 5c0c94c0fdbb8d3c4e1551048647e51791c6296b | |
parent | ec34b925b4a3fa3659a7b595d8fd0ca627aa762a (diff) | |
download | marco-14ca155db113b4c359a270460585ba03c0ccc5c5.tar.bz2 marco-14ca155db113b4c359a270460585ba03c0ccc5c5.tar.xz |
release 1.27.0v1.27.0
-rw-r--r-- | NEWS | 28 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 30 insertions, 2 deletions
@@ -1,3 +1,31 @@ +### marco 1.27.0 + + * tx: sync with transifex + * replace _NET_WM_PID with XResGetClientPid (#741) + * Always bring into foreground the previous window after closing one + * tx: update resource + * tx: migrate config file + * window: do not disable fullscreen for dialogs + * ui: avoid 'g_object_unref (NULL)' + * marco: Add cmdline option --no-keybindings for disabling all key bindings directly on WM startup. + * boxes: fix build warning -Wstring-conversion + * Fix some -Wfloat-conversion warnings + * keybindings: fix build warning -Wbad-function-cast + * Remove TRUE, FALSE from if statement + * ci: drop -Wunused-parameter compiler cflag from debian build + * theme-viewer: use GTK_STYLE_PROPERTY_FONT + * theme: fix memory leak + * Fix implicit conversion changes signedness: 'gboolean' to 'guint' + * compositor-xrender: remove unrequired g_free because of g_new0 + * compositor-xrender: fix memory leak + * build: fix meson build + * prefs: fix memory leak + * main: Add short name for version option + * Remove whitespaces before #define, #ifdef, and #endif + * fix code-formatting issue of previous commit + * Safeguard against calling gdk_x11_window_get_xid with a NULL GdkWindow + * README: Update gtk requirement and patch submission + ### marco 1.26.0 * update translations diff --git a/configure.ac b/configure.ac index d5002477..81577fd1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.50) m4_define([marco_major_version], [1]) -m4_define([marco_minor_version], [26]) +m4_define([marco_minor_version], [27]) m4_define([marco_micro_version], [0]) m4_define([marco_version], diff --git a/meson.build b/meson.build index 199baa77..3bf9b022 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'marco', 'c', - version: '1.26.0', + version: '1.27.0', meson_version: '>=0.47.0', license: 'GPL2', default_options : [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11'], |