From 134050e1df7dc2e31a7226523f3c5a7983c2840b Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Sun, 28 Jul 2019 11:08:40 -0300 Subject: [PATCH] Updates for release --- NEWS | 37 ++++++++++++++++++++++++++++++++++++- configure.ac.in | 4 ++-- 2 files changed, 38 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 660c29f..e52c211 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,38 @@ +0.4.2 +====== +- Port to GDBus (Bug #14337) +- Show full path in window title by default (Bug #2896) +- Reset modification time when new filename is set (Bug #10498) +- Do not overwrite view settings when opening encoding dialog (Bug #12298) +- Make dialog windows modal only for parent window (Bug #10488) +- Add string to translation (Bug #11049) +- Selecting a font via menu now disables system font (Bug #12773) +- Check for exo-csource in maintainer mode (Bug #12719) +- New line can't be printed in status bar (Bug #11050) +- Do not move text cursor when searching backwards (Bug #14942) +- Fix gravity of selection end mark (Bug #10986) +- Missing line in dbus.h, found typo in window.h (Bug #10583) +- Append a newline char at EOF when saving (Bug #4824) +- Do not core dump on silly errors, just exit (Bug #12413) +- Fix gtksourceview warnings/errors (Bug 11663) +- Only set template filetype when detected (Bug #15314) +- Replace deprecated style properties in MousepadCloseButton (Bug #13114) +- Fix Tab mode and Home/End Keys in preferences dialog (Bug #15075) +- Fix language guess function (Bug #15141) +- Read system font from xfconf property (Bug #12485) +- Add pkexec policy (Bug #11088) +- Fix g_type_class_add_private is deprecated +- Set intltool minimum version +- Bump minimal required glib +- Translation Updates: Albanian, Arabic, Asturian, Basque, Belarusian, + Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, + Danish, Dutch (Flemish), English (Australia), English (Great Britain), + Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, + Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay, + Norwegian Bokmål, Norwegian Nynorsk, Occitan, Polish, Portuguese, + Portuguese (Brazilian), Romanian, Russian, Serbian, Slovak, Slovenian, + Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur + 0.4.1 ===== - Fix crash when dragging tab to root window (Bug #13336) @@ -80,4 +115,4 @@ Bug fixes: - Fix recent files support (Bug #5635, #3850 & #7890). - Use GTK+ printing (Bug #4477). - Settings saved in Find (and Replace) dialogs (Bug #7246). - - No deprecated dependencies (Bug #7259). + - No deprecated dependencies (Bug #7259). \ No newline at end of file diff --git a/configure.ac.in b/configure.ac.in index 41ddc47..47d101b 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -3,10 +3,10 @@ dnl *** Version information *** dnl *************************** m4_define([mousepad_version_major], [0]) m4_define([mousepad_version_minor], [4]) -m4_define([mousepad_version_micro], [1]) +m4_define([mousepad_version_micro], [2]) m4_define([mousepad_version_nano], []) dnl leave this empty to have no nano version m4_define([mousepad_version_build], [@REVISION@]) -m4_define([mousepad_version_tag], [git]) +m4_define([mousepad_version_tag], []) m4_define([mousepad_version], [mousepad_version_major().mousepad_version_minor().mousepad_version_micro()ifelse(mousepad_version_nano(), [], [], [.mousepad_version_nano()])ifelse(mousepad_version_tag(), [git], [mousepad_version_tag()-mousepad_version_build()], [mousepad_version_tag()])]) dnl *******************************************