diff options
author | raveit65 <[email protected]> | 2024-02-02 22:22:24 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2024-02-02 22:22:24 +0100 |
commit | a6ae322b606584765ce2298891011c8e87041180 (patch) | |
tree | d64d9c9110c1053e4c6c9ef9e38e2e3c5c377848 | |
parent | a3efb94656cec1c207b1168320a61558901715bb (diff) | |
download | mate-desktop-1.27.4.tar.bz2 mate-desktop-1.27.4.tar.xz |
releases 1.27.4v1.27.4
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 17 insertions, 2 deletions
@@ -1,3 +1,18 @@ +### mate-desktop 1.27.4 + + * Translations update + * mate-colorsel: Fix compilation warnings use rgba replace color + * meson: Add meson support for static library + * Fix compilation warning replace gtk_style_context_get_background_color + * wayland: fix uninitialized variable + * mate-rr-labeler: Fix compilation warnings use css replace gtk_widget_override_color + * mate-colorseldialog: Fix compilation warnings remove deprecated function + * Add meson build libstartup-notification support type is auto + * Remove useless mate_color_button apis + * Fix MATE_DESKTOP_CHECK_VERSION + * Remove useless code + * Rename mate-desktop.h => mate-desktop.h.in add MATE_DESKTOP_VERSION marco + ### mate-desktop 1.27.3 * Translations update diff --git a/configure.ac b/configure.ac index 9cf7e07..1fe1702 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([mate_platform], [1]) m4_define([mate_minor], [27]) -m4_define([mate_micro], [3]) +m4_define([mate_micro], [4]) m4_define(mate_version, [mate_platform.mate_minor.mate_micro]), diff --git a/meson.build b/meson.build index e9844c9..1fbcfe1 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'mate-desktop', 'c', - version: '1.27.3', + version: '1.27.4', license: [ 'GPL-2', 'FDL-1.1', 'LGPL-2' ], ) |