diff options
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | src/fe-common/core/windows-layout.c | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -77,7 +77,7 @@ Other patches (grep for "patch" in ChangeLog) by: Jon Mayo Johan Kiviniemi JasonX - Lukas Mai + Lukas Mai (mauke) Ismael Luceno Thomas Karpiniec Svante Kvarnström @@ -95,6 +95,5 @@ Other patches (grep for "patch" in ChangeLog) by: Adam- Robert C Jensen Paul Johnson - mauke KindOne Fabian Kurz @@ -1,4 +1,8 @@ v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org> + * Modules will now require to define a + void MODULENAME ## _abicheck(int *version) + method to ensure that they are compiled against the correct Irssi + version. * The signature of "message private" has been changed to 5: server, message, nick, address, target in order to support "self messages". Module authors should @@ -22,6 +26,7 @@ v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org> + The config parser is more robust and prints out better diagnostics on incorrect config files. + Ctrl+^ (FS#721) and Ctrl+J can now be bound. + + Command history can be cleared with /window history -clear + /hilight -mask -line is now supported (FS#275). + CHANTYPES are now supported. + Improved reload speed of ignores. @@ -32,6 +37,7 @@ v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org> + Disable SSLv3 due to the POODLE vulnerability. + SSL ciphers can now be specified per server. + Added SNI support for SSL. + - /ignore now respects -pattern on merge (#78). - irssiproxy (BNC) module now uses correct line endings. - Fix missing lines on large pastes (FS#905). - Correctly preserve STATUSMSG prefixes (#291). diff --git a/src/fe-common/core/windows-layout.c b/src/fe-common/core/windows-layout.c index 8ebcc12d..ce6b9910 100644 --- a/src/fe-common/core/windows-layout.c +++ b/src/fe-common/core/windows-layout.c @@ -168,12 +168,12 @@ static void sig_layout_save_item(WINDOW_REC *window, WI_ITEM_REC *item, chat_protocol_find_id(item->chat_type); if (proto != NULL) iconfig_node_set_str(subnode, "chat_type", proto->name); - iconfig_node_set_str(subnode, "name", item->visible_name); + iconfig_node_set_str(subnode, "name", item->name); if (item->server != NULL) { iconfig_node_set_str(subnode, "tag", item->server->tag); if (IS_CHANNEL(item)) { - rec = window_bind_add(window, item->server->tag, item->visible_name); + rec = window_bind_add(window, item->server->tag, item->name); if (rec != NULL) rec->sticky = TRUE; } |