diff options
author | raveit65 <[email protected]> | 2021-06-05 13:56:38 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-06-05 13:56:38 +0200 |
commit | 2c873003aff83a3671722a324e9a52252b1d25ce (patch) | |
tree | 0022b00505861ad2cafd513eecedd5e42da7d3be | |
parent | 6fc2932e53650e677966ace287e1da6dd350219b (diff) | |
download | eom-2c873003aff83a3671722a324e9a52252b1d25ce.tar.bz2 eom-2c873003aff83a3671722a324e9a52252b1d25ce.tar.xz |
release 1.25.1v1.25.1
-rw-r--r-- | NEWS | 24 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 25 insertions, 1 deletions
@@ -1,3 +1,27 @@ +### eom 1.25.1 + + * Translations update + * eom-window: Remove -Wmissing-field-initializers warnings + * build: change the message for NLS in the configure summary + * build: allow users to disable gettext support (--disable-nls) + * build: Use PACKAGE_URL variable + * build: display package name and version in configure summary + * Fix desktop file validation warning + * Remove cppcheck warning knownConditionTrueFalse + * Remove unnecessary casts on signal function calls + * Update copyright to 2021 + * Remove warning -Wshadow + * eom-uri-converter: dereference of NULL 'repl_str' reported by gcc + * Do not remove the accelerators from image properties dialog + * Upgrade ui files + * eom-save-as-dialog-helper: Fix resource path + * eom-image: warning -Wexpansion-to-defined + * eom-scroll-view.c: Redundant casting GTK_WIDGET + * eom-scroll-view: Remove warning incompatible-pointer-types + * Ensure scrollbar moves when dragged to move image + * require libexif 0.6.22 + * Remove unused macros + ### eom 1.25.0 * Translations update diff --git a/configure.ac b/configure.ac index 0142df6..5076479 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_CONFIG_MACRO_DIR([m4]) m4_define(eom_major_version, 1) m4_define(eom_minor_version, 25) -m4_define(eom_micro_version, 0) +m4_define(eom_micro_version, 1) m4_define(eom_version, eom_major_version.eom_minor_version.eom_micro_version) AC_INIT([eom], eom_version, https://github.com/mate-desktop/eom/issues, [eom], [https://mate-desktop.org]) |