diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-26 08:03:15 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-26 08:03:15 +0200 |
commit | acfb5a7638c566923217826e84e74ea55cfce1f3 (patch) | |
tree | 7b48e9e72d1cc79c058d3b83127e6bc13ec3129c /doc/en | |
parent | b0ecbdbf1da175802d3e2f82cf181060886247e3 (diff) | |
download | weechat-acfb5a7638c566923217826e84e74ea55cfce1f3.zip |
relay: add missing field "notify_level" in message "_buffer_line_added" (issue #1529)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_relay_protocol.en.adoc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/en/weechat_relay_protocol.en.adoc b/doc/en/weechat_relay_protocol.en.adoc index 102692061..8a6d94fcd 100644 --- a/doc/en/weechat_relay_protocol.en.adoc +++ b/doc/en/weechat_relay_protocol.en.adoc @@ -2010,6 +2010,7 @@ Data sent as hdata: | date | time | Date of message. | date_printed | time | Date when WeeChat displayed message. | displayed | char | 1 if message is displayed, 0 if message is filtered (hidden). +| notify_level | char | Notify level: -1 = notify disabled, 0 = low, 1 = message, 2 = private, 3 = highlight. | highlight | char | 1 if line has a highlight, otherwise 0. | tags_array | array of strings | List of tags for line. | prefix | string | Prefix. @@ -2027,6 +2028,7 @@ hda: 'date': 'tim', 'date_printed': 'tim', 'displayed': 'chr', + 'notify_level': 'chr', 'highlight': 'chr', 'tags_array': 'arr', 'prefix': 'str', @@ -2039,6 +2041,7 @@ hda: date: 1362728993 date_printed: 1362728993 displayed: 1 + notify_level: 1 highlight: 0 tags_array: [ 'irc_privmsg', |