mirror of
https://github.com/znc/znc.git
synced 2026-07-06 18:01:21 +02:00
Merge branch '1.8.x'
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.1)
|
|||||||
project(ZNC VERSION 1.8.0 LANGUAGES CXX)
|
project(ZNC VERSION 1.8.0 LANGUAGES CXX)
|
||||||
set(ZNC_VERSION 1.8.0)
|
set(ZNC_VERSION 1.8.0)
|
||||||
set(append_git_version false)
|
set(append_git_version false)
|
||||||
set(alpha_version "-beta1") # e.g. "-rc1"
|
set(alpha_version "") # e.g. "-rc1"
|
||||||
set(VERSION_EXTRA "" CACHE STRING
|
set(VERSION_EXTRA "" CACHE STRING
|
||||||
"Additional string appended to version, e.g. to mark distribution")
|
"Additional string appended to version, e.g. to mark distribution")
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,42 @@
|
|||||||
|
# ZNC 1.8.0 (2020-05-01)
|
||||||
|
|
||||||
|
## New
|
||||||
|
* Output of various commands (e.g. `/znc help`) was switched from a table to a list
|
||||||
|
* Support IP while verifying SSL certificates
|
||||||
|
* Make it more visible that admins have lots of privileges
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
* Fix parsing of channel modes when the last parameter starts with a colon, improving compatibility with InspIRCd v3
|
||||||
|
* Fix null dereference on startup when reading invalid config
|
||||||
|
* Don't show server passwords on ZNC startup
|
||||||
|
* Fix build with newer OpenSSL
|
||||||
|
* Fix in-source CMake build
|
||||||
|
* Fix echo-message for `status`
|
||||||
|
|
||||||
|
## Modules
|
||||||
|
* controlpanel: Add already supported NoTrafficTimeout User variable to help output
|
||||||
|
* modpython:
|
||||||
|
* Use FindPython3 in addition to pkg-config in CMake to simplify builds on Gentoo when not using emerge
|
||||||
|
* Support python 3.9
|
||||||
|
* modtcl: Added GetNetworkName
|
||||||
|
* partyline: Module is removed
|
||||||
|
* q: Module is removed
|
||||||
|
* route_replies: Handle more numerics
|
||||||
|
* sasl: Fix sending of long authentication information
|
||||||
|
* shell: Unblock signals when spawning child processes
|
||||||
|
* simple_away: Convert to UTC time
|
||||||
|
* watch: Better support multiple clients
|
||||||
|
* webadmin: Better wording for TrustPKI setting
|
||||||
|
|
||||||
|
## Internal
|
||||||
|
* Refactor the way how SSL certificate is checked to simplify future socket-related refactors
|
||||||
|
* Build integration test and ZNC itself with the same compiler (https://bugs.gentoo.org/699258)
|
||||||
|
* Various improvements for translation CI
|
||||||
|
* Normalize variable name sUserName/sUsername
|
||||||
|
* Make de-escaping less lenient
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ZNC 1.7.5 (2019-09-23)
|
# ZNC 1.7.5 (2019-09-23)
|
||||||
|
|
||||||
* modpython: Add support for Python 3.8
|
* modpython: Add support for Python 3.8
|
||||||
|
|||||||
+1
-1
@@ -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
|
dnl Needed for AC_PATH_PROGS_FEATURE_CHECK which was added in 2.62
|
||||||
AC_PREREQ([2.62])
|
AC_PREREQ([2.62])
|
||||||
dnl Keep the version number in sync with version.h!
|
dnl Keep the version number in sync with version.h!
|
||||||
AC_INIT([znc], [1.8.0-beta1])
|
AC_INIT([znc], [1.8.0])
|
||||||
LIBZNC_VERSION=1.8.0
|
LIBZNC_VERSION=1.8.0
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_SRCDIR([src/znc.cpp])
|
AC_CONFIG_SRCDIR([src/znc.cpp])
|
||||||
|
|||||||
Reference in New Issue
Block a user