summaryrefslogtreecommitdiff
path: root/ReleaseNotes.asciidoc
AgeCommit message (Collapse)Author
2016-05-10core: fix custom section IDs in ChangeLog and ReleaseNotesSébastien Helleu
Asciidoctor (used on GitHub) requires that the custom ID start with a letter, so a "v" is added in front of releases.
2016-05-01Version 1.5Sébastien Helleu
2016-04-06core: set default value "djb2" for option weechat.look.nick_color_hashSébastien Helleu
2016-04-05core: move nick coloring from irc plugin to core (closes #262)Sébastien Helleu
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color.
2016-03-27core: remove rename of function unhook_all in release notesSébastien Helleu
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-03-11core: fix long lines in release notesSébastien Helleu
2016-02-15core: move irc bar item "away" and two options to core (closes #692)Sébastien Helleu
Options moved: * "irc.look.item_away_message" --> "weechat.look.item_away_message" * "irc.color.item_away" --> "weechat.color.item_away".
2016-02-05core: update ChangeLog and release notesSébastien Helleu
2016-01-10Version 1.4Sébastien Helleu
2015-12-26core: add IRC alternate nicks in release notesSébastien Helleu
2015-12-07core: add names for anchors in ReleaseNotesSébastien Helleu
2015-08-16Version 1.3Sébastien Helleu
2015-08-16core: add note about new option irc.network.channel_encode in release notesSébastien Helleu
2015-07-21core: add command /alias in release notesSébastien Helleu
2015-06-21script: rename option script.scripts.dir to script.scripts.path (issue #388)Sébastien Helleu
2015-05-10Version 1.2Sébastien Helleu
2015-04-11core: add options weechat.look.word_chars_{highlight|input} (closes #55, ↵Sébastien Helleu
task #9459)
2015-01-25core: add table of contents in ChangeLog and ReleaseNotesSébastien Helleu
2015-01-25core: add version 1.1.1 in ChangeLog and ReleaseNotesSébastien Helleu
2015-01-11Version 1.1Sébastien Helleu
2014-12-13core: use https for WeeChat URLsSébastien Helleu
2014-11-22api: return value in function command(), remove WeeChat error after command ↵Sébastien Helleu
callback if return code is WEECHAT_RC_ERROR
2014-11-09core: add option weechat.completion.command_inline (task #12491)Sébastien Helleu
2014-10-29core: fix table layout in release notesSébastien Helleu
2014-10-27core: fix typos in release notesSébastien Helleu
2014-10-26trigger: evaluate and replace regex groups at same time, new format for ↵Sébastien Helleu
regex option in triggers (incompatible with version 1.0) (closes #224)
2014-10-08relay: use comma separator in option relay.irc.backlog_tags, check the value ↵Sébastien Helleu
of option when it is changed with /set
2014-09-28trigger: add "${tg_displayed}" in conditions of default trigger "beep"Sébastien Helleu
The command of "beep" trigger is now executed only if the message is displayed (not filtered with /filter).
2014-09-28core: update ChangeLog and release notesSébastien Helleu
2014-09-28core: add release notes of version 1.0.1Sébastien Helleu
2014-09-04irc: disable creation of temporary servers by default with command /connect, ↵Sébastien Helleu
new option irc.look.temporary_servers
2014-08-29api: use microseconds instead of milliseconds in functions util_timeval_diff ↵Sébastien Helleu
and util_timeval_add
2014-08-23core: add command to restore default triggers that have changed in version ↵Sébastien Helleu
1.1 (release notes)
2014-08-15Version 1.0Sébastien Helleu
Yay! \o/
2014-05-06irc: add option irc.look.join_auto_add_chantype (closes #65)Sébastien Helleu
2014-05-04core: change default key for bare display from alt-'!' to alt-'l'Sébastien Helleu
2014-04-30Version 1.0-devSébastien Helleu
Yeah \o/
2014-04-12core: add note about API mismatch (rmodifier.so) in release notesSébastien Helleu
2014-04-04irc: add option irc.look.item_channel_modes_hide_args (task #12070, task ↵Sébastien Helleu
#12163, closes #48) This option replaces the option irc.look.item_channel_modes_hide_key. It is now a string, so channel modes arguments can be hidden using many channel modes (or all, with "*").
2014-03-19core: add key alt-j,alt-f to jump to first buffer, change command for jump ↵Sebastien Helleu
to last buffer New key alt-j,alt-f is bound by default to "/buffer -". The existing key alt-j,alt-l is now bound by default to "/buffer +".
2014-03-06core: add option weechat.look.hotlist_add_conditions, remove option ↵Sebastien Helleu
weechat.look.hotlist_add_buffer_if_away
2014-03-05core: rename file NEWS.asciidoc to ReleaseNotes.asciidocSebastien Helleu