diff options
author | mbkma <[email protected]> | 2022-11-11 20:30:43 +0100 |
---|---|---|
committer | mbkma <[email protected]> | 2022-11-11 21:06:56 +0100 |
commit | 06e5a6dd42bf839e7e73996a992ff4e5f9ad3f80 (patch) | |
tree | 90479c2f9c9b1ae756907750f80b5533ae8537c8 | |
parent | 0c5bbfa8c16fc1922338c03ea63cbb79da3f30e8 (diff) | |
download | mozo-06e5a6dd42bf839e7e73996a992ff4e5f9ad3f80.tar.bz2 mozo-06e5a6dd42bf839e7e73996a992ff4e5f9ad3f80.tar.xz |
release 1.27.0v1.27.0
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,16 @@ +### mozo 1.27.0 + + * tx: sync with transifex + * configure.ac: The macro 'AC_HELP_STRING' is obsolete + * tx: update resource + * only require gtk version 3.12 instead of 3.24 + * tx: migrate config file + * meson build: drop desktop-file argument + * tx: update resource + * mozo-ui: fix typo in button label + * make the collection menu item removeable + * fix adding and removing seperator item + ### mozo 1.26.0 * Translations update diff --git a/configure.ac b/configure.ac index d20999c..f68ca88 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl -*- Mode: autoconf -*- dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.58) -AC_INIT(mozo, 1.26.0, https://mate-desktop.org) +AC_INIT(mozo, 1.27.0, https://mate-desktop.org) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR(mozo.in) AC_CONFIG_HEADERS([config.h]) diff --git a/meson.build b/meson.build index 5d6d311..1f3da01 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('mozo', - version : '1.26.0', + version : '1.27.0', meson_version: '>= 0.47.0' ) |