From 90d03a48e5ffc8b98bd24ba8be88a6b0175e1968 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Tue, 23 Feb 2016 21:23:42 +0000 Subject: [PATCH] ZNC 1.6.3 --- ChangeLog.md | 28 ++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index b6b51c93..5337647b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,31 @@ +# ZNC 1.6.3 (2016-02-16) + +## Core +* New character encoding is now applied immediately, without reconnect. +* Fixed build with LibreSSL. +* Fixed error 404 when accessing the web UI with the configured URI prefix, + but without the `/` in the end. +* `znc-buildmod` now exits with non-zero exit code when the .cpp file is not found. +* Fixed `znc-buildmod` on Cygwin. +* ExpandString got expanded. It now expands `%znc%` to + `ZNC - http://znc.in`, honoring the global "Hide version" setting. +* Default quit message is switched from `ZNC - http://znc.in` to `%znc%`, + which is the same, but "automatically" changes the shown version when ZNC gets upgraded. + Before, the old version was recorded in the user's quit message, and stayed the same + regardless of the current version of ZNC. + +## Modules +* modperl: + * Fixed a memory leak. +* sasl: + * Added an option to show which mechanisms failed or succeeded. +* webadmin: + * Fixed an error message on invalid user settings to say what exactly was invalid. + * No more autocomplete password in user settings. It led to an error when ZNC + thought the user is going to change a password, but the passwords didn't match. + + + # ZNC 1.6.2 (2015-11-15) ## Fixes diff --git a/configure.ac b/configure.ac index 27a5dfbb..d7f485ef 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_DEFUN([AC_PROG_CC], [m4_errprint(__file__:__line__[: Something is trying to u dnl Needed for AC_PATH_PROGS_FEATURE_CHECK which was added in 2.62 AC_PREREQ([2.62]) dnl Keep the version number in sync with version.h! -AC_INIT([znc], [1.6.3-rc2]) +AC_INIT([znc], [1.6.3]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/znc.cpp]) AC_LANG([C++])