diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-04-05 07:56:43 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-04-05 07:56:43 +0200 |
commit | fabd48cc6cc00527c10072297a62fbd8154251ed (patch) | |
tree | 9477279254b3198900a3e01060cbe32e8c7649db /ReleaseNotes.asciidoc | |
parent | e80ff72b97294e87cb59f715d65ad8879c0101b9 (diff) | |
download | weechat-fabd48cc6cc00527c10072297a62fbd8154251ed.zip |
core: move nick coloring from irc plugin to core (closes #262)
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.
Diffstat (limited to 'ReleaseNotes.asciidoc')
-rw-r--r-- | ReleaseNotes.asciidoc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ReleaseNotes.asciidoc b/ReleaseNotes.asciidoc index d0baa6abc..8ee49248a 100644 --- a/ReleaseNotes.asciidoc +++ b/ReleaseNotes.asciidoc @@ -20,6 +20,27 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog] [[1.5]] == Version 1.5 (under dev) +[[1.5_nick_coloring]] +=== Nick coloring moved to core + +The nick coloring feature has been moved from irc plugin to core. + +Two options have been moved from irc plugin (irc.conf) to core (weechat.conf), +and you must set new value if you customized them: + +* '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' + +The following info names (used by API function "info_get") are renamed as well: + +* 'irc_nick_color' renamed to 'nick_color' +* 'irc_nick_color_name' renamed to 'nick_color_name' + +[NOTE] +The old info 'irc_nick_color' and 'irc_nick_color_name' are kept for +compatibility (especially scripts) and will be removed in an upcoming release. + [[1.5_callbacks_pointer]] === Pointer in callbacks |