diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 12:18:47 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 12:18:47 +0200 |
commit | 8ca36552eaa5fcdb2b82961dee0fa81ed69fe2bb (patch) | |
tree | ac56c52d00ec9cf8d87c0276217980066d1bab27 /NEWS | |
parent | f486b84134a86bd58ce9427afd1dbf652d48964c (diff) | |
download | weechat-8ca36552eaa5fcdb2b82961dee0fa81ed69fe2bb.zip |
core: change color format for options from `${xxx}` to `${color:xxx}`
Options affected:
- weechat.look.buffer_time_format
- weechat.look.prefix_action
- weechat.look.prefix_error
- weechat.look.prefix_join
- weechat.look.prefix_network
- weechat.look.prefix_quit
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -1,7 +1,7 @@ WeeChat Release Notes ===================== Sébastien Helleu <flashcode@flashtux.org> -v0.4.2-dev, 2013-08-02 +v0.4.2-dev, 2013-08-04 This document lists important changes for each version, that require manual @@ -16,6 +16,31 @@ http://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog] Version 0.4.2 (under dev!) -------------------------- +=== Color codes in options === + +The format for color codes in some options has changed. The options are +evaluated with the function "string_eval_expression", which uses the format +`${color:xxx}`. + +Following options are affected: + +* 'weechat.look.buffer_time_format' +* 'weechat.look.prefix_action' +* 'weechat.look.prefix_error' +* 'weechat.look.prefix_join' +* 'weechat.look.prefix_network' +* 'weechat.look.prefix_quit' + +The options using old format `${xxx}` must be changed with new format +`${color:xxx}` (where xxx is a color name or number, with optional color +attributes). + +Example: + +---------------------------------------- +/set weechat.look.buffer_time_format "${color:251}%H${color:243}%M${color:238}%S" +---------------------------------------- + === Binary and man page === WeeChat binary and man page have been renamed from `weechat-curses` to |