summaryrefslogtreecommitdiff
path: root/doc/ja/weechat_plugin_api.ja.adoc
AgeCommit message (Collapse)Author
2021-11-04core: fix access to integer/long/time arrays in hdata, add support of static ↵Sébastien Helleu
arrays in hdata
2021-10-17irc: parse and return command parameters in message parserSébastien Helleu
2021-09-20core: add creation of user variables in evaluated expressions with ↵Sébastien Helleu
${define:name,value}
2021-09-06api: add split of string and shell arguments in evaluation of expressionsSébastien Helleu
Split of string: ${split:number,separators,flags,xxx} Split of shell arguments: ${split_shell:number,xxx}
2021-08-29api: add "${re:repl_index}" to get the index of replacement in function ↵Sébastien Helleu
string_eval_expression
2021-08-03api: add random integer number in evaluation of expressions with ↵Sébastien Helleu
"random:min,max"
2021-07-04api: add function string_cutSébastien Helleu
2021-07-04doc: add column for min WeeChat version in function buffer_set (plugin API ↵Sébastien Helleu
reference)
2021-07-04doc: add column for min WeeChat version in function hook_set (plugin API ↵Sébastien Helleu
reference)
2021-07-04doc: add column for min WeeChat version in function hook_modifier_exec ↵Sébastien Helleu
(plugin API reference)
2021-07-04doc: add column for min WeeChat version in function hook_modifier (plugin ↵Sébastien Helleu
API reference)
2021-07-04doc: add column for min WeeChat version in function hook_hsignal (plugin API ↵Sébastien Helleu
reference)
2021-07-04doc: add column for min WeeChat version in function hook_process_hashtable ↵Sébastien Helleu
(plugin API reference)
2021-07-04doc: add typing signals in plugin API referenceSébastien Helleu
2021-07-03api: add function file_copy (issue #1667)Sébastien Helleu
2021-06-27doc: mention WeeChat version for WEECHAT_RC_OK_EAT in signals "irc_raw_in" ↵Sébastien Helleu
and "irc_in" (plugin API reference) (issue #1657)
2021-06-27irc: allow signals "irc_raw_in" and "irc_in" to eat messages (issue #1657)Simon Ser
This is useful to implement IRC protocol extensions which introduce new commands.
2021-06-26api: remember insertion order in hashtablesSébastien Helleu
2021-06-24irc: add keys/values with tags in output of irc_message_parse_to_hashtable ↵Sébastien Helleu
(issue #1654) Key is "tag_xxx" (where "xxx" is the name of tag) and value is the unescaped tag value.
2021-06-24irc: escape/unescape IRC message tags values (issue #1654)Sébastien Helleu
Spec: https://ircv3.net/specs/extensions/message-tags#escaping-values
2021-06-01api: add function crypto_hmac (issue #1628)Sébastien Helleu
2021-05-26core: add signals "cursor_start" and "cursor_end"Sébastien Helleu
2021-05-25doc: replace freenode by libera in plugin API referenceSébastien Helleu
2021-05-16api: add translated string in evaluation of expressions with "translate:xxx" ↵Sébastien Helleu
(issue #1622)
2021-05-13doc: add type annotations in Python prototypes (plugin API reference) (issue ↵Sébastien Helleu
#1377)
2021-05-13doc: fix translations in Italian and Japanese plugin API referenceSébastien Helleu
2021-05-11doc: add XDG directories support in docs (issue #1285)Sébastien Helleu
2021-03-17api: add support of pointer names in function string_eval_expression (direct ↵Sébastien Helleu
and in hdata) These two formats are now supported, if "pointer_name" is present in the "pointers" hashtable: * "${pointer_name}": value of pointer (example: "0x1234abcd") * ${buffer[pointer_name].full_name}: use of a pointer name instead of pointer value or list name
2021-02-05core: add raw string in evaluation of expressions with "raw:xxx" (closes #1611)Sébastien Helleu
2021-01-01doc: add note about call to "regfree" after call to "string_regcomp" (plugin ↵Sébastien Helleu
API reference)
2020-12-31core: display more verbose debug with two "-d" in command /evalSébastien Helleu
Now a single -d in command /eval shows less debug messages than previous versions. To get the same debug messages than previous versions, two -d must be used.
2020-12-19doc: replace "core" by "weechat" in table with extra info for bar item ↵Sébastien Helleu
"buffer_nicklist" (plugin API reference)
2020-11-14core: add evaluation of conditions in evaluation of expressions with ↵Sébastien Helleu
"eval_cond:" (closes #1582)
2020-08-23api: add argument "bytes" in function string_dyn_concatSébastien Helleu
2020-08-22api: add function string_color_code_size (issue #1547)Sébastien Helleu
2020-07-21doc: add "irc_nick" in hashtable sent to hook_focus callback (plugin API ↵Sébastien Helleu
reference) (issue #1538)
2020-06-30doc: fix description of "_chat_bol" and "_chat_eol" in function hook_focus ↵Sébastien Helleu
(plugin API reference)
2020-06-30doc: harmonize example of pointers in plugin API reference and relay protocolSébastien Helleu
2020-06-30api: add pointer "_bar_window" in hashtable sent to hook focus callback ↵Sébastien Helleu
(closes #1450)
2020-06-21core: add bar option "color_bg_inactive" (issue #732)Sébastien Helleu
2020-05-21core: add base 16/32/64 encoding/decoding in evaluation of expressionsSébastien Helleu
2020-05-09core: add an option for multiline input in a buffer (closes #984)Trygve Aaberge
This allows the input callback function for a buffer to receive multiple lines at once, instead of the message being split on newline before being sent to the callback. It adds a new flag, input_multiline, to control this. This flag defaults to 0 which is the current behavior.
2020-05-09api: use buffer pointer in argument "modifier_data" sent to weechat_print ↵Sébastien Helleu
modifier callback (closes #42)
2020-05-08core: rename functions hook_completion_{get_string|list_add} to ↵Sébastien Helleu
completion_{get_string|list_add} Old functions are kept for compatibility reasons.
2020-05-05core: add include comparison operators in evaluation of expressionsSébastien Helleu
New comparison operators: - "==*": is matching mask, case sensitive (wildcard "*" is allowed) - "!!*": is NOT matching mask, case sensitive (wildcard "*" is allowed) - "==-": is included, case sensitive - "!!-": is NOT included, case sensitive - "=-": is included, case insensitive - "!-": is NOT included, case insensitive
2020-05-03doc: merge 53 autogen files into 11 files, move them to includes directorySébastien Helleu
2020-04-28api: return integer in function gui_completion_search (issue #1484)Sébastien Helleu
2020-04-27api: add functions completion_new, completion_search and completion_free ↵Sébastien Helleu
(issue #1484)
2020-04-25doc: protect monospace text with plus characters (plugin API reference)Sébastien Helleu
2020-04-24doc: fix markup error in function hdata_update (plugin API reference)Sébastien Helleu