From df1df75ca2cc461360e336ce83052366002b1b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Sat, 11 Oct 2014 10:44:46 +0200 Subject: [PATCH 1/4] Prepare for 0.8.17 --- NEWS | 3 ++- configure.ac | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 8f9e36a1..ac002150 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -v0.8.17-head 2014-XX-XX The Irssi team +v0.8.17 2014-10-11 The Irssi team + Document that SSL connections aren't properly handled during /UPGRADE. See Github PR #39. + Synchronize scripts with scripts.irssi.org. + Performance enhancement of the nicklist as well as the window_item_find function. See Github PR #24. @@ -19,6 +19,7 @@ v0.8.17-head 2014-XX-XX The Irssi team - Fixed gui_printtext_after and term_refresh_*() visibility. See Github PR #22. - Fixed issue where UTF-8 characters was corrupted once for every 32k text. See Github PR #12. - Fixed redrawing issue with right-aligned statusbar. + - Fixed use-after-free bug with cached settings values. See Github PR #147. v0.8.16 2014-05-28 The Irssi team + Add -noautosendcmd to /SERVER and /CONNECT. Passing this option will diff --git a/configure.ac b/configure.ac index 2a7bee0d..f148885c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(irssi, 0.8.17-head) +AC_INIT(irssi, 0.8.17) AC_CONFIG_SRCDIR([src]) AC_CONFIG_AUX_DIR(build-aux) AC_PREREQ(2.50) From 3f50b8f2ad7e9a10aab1ff88c58141563c4dd68a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Sat, 11 Oct 2014 11:12:43 +0200 Subject: [PATCH 2/4] HEAD's now 0.8.18-head. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f148885c..477f8c4d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(irssi, 0.8.17) +AC_INIT(irssi, 0.8.18-head) AC_CONFIG_SRCDIR([src]) AC_CONFIG_AUX_DIR(build-aux) AC_PREREQ(2.50) From 10078407f6cab2e25e35be37dba903d91126f561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Sat, 11 Oct 2014 12:13:22 +0200 Subject: [PATCH 3/4] Remove unnecessary NULL check Fixes: #135 --- src/core/servers.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/servers.c b/src/core/servers.c index 06f82d4d..6eaad191 100644 --- a/src/core/servers.c +++ b/src/core/servers.c @@ -218,9 +218,7 @@ static void server_real_connect(SERVER_REC *server, IPADDR *ip, return; if (ip != NULL) { - own_ip = ip == NULL ? NULL : - (IPADDR_IS_V6(ip) ? server->connrec->own_ip6 : - server->connrec->own_ip4); + own_ip = IPADDR_IS_V6(ip) ? server->connrec->own_ip6 : server->connrec->own_ip4; port = server->connrec->proxy != NULL ? server->connrec->proxy_port : server->connrec->port; handle = server->connrec->use_ssl ? From 971b1e57ab762fce967f15c28e7b6e6a826a0188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Sat, 11 Oct 2014 12:16:43 +0200 Subject: [PATCH 4/4] Add header for v0.8.18-head --- NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS b/NEWS index ac002150..5d313da1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +v0.8.18-head 2014-XX-YY The Irssi team + v0.8.17 2014-10-11 The Irssi team + Document that SSL connections aren't properly handled during /UPGRADE. See Github PR #39. + Synchronize scripts with scripts.irssi.org.