summaryrefslogtreecommitdiff
path: root/doc/it/weechat_plugin_api.it.adoc
AgeCommit message (Collapse)Author
2019-09-24core: add power operator "**" in calc expressions (issue #997)Sébastien Helleu
2019-09-21core: ignore color codes in ${length:xxx} and ${lengthscr:xxx}Sébastien Helleu
2019-09-21core: add "length:xxx" and "lengthscr:xxx" in evaluation of expressionsSébastien Helleu
2019-09-20core: add calculation of expression in evaluation of expressions with ↵Sébastien Helleu
"calc:..." (issue #997)
2019-08-10api: add function list_user_data (issue #666)Andrew Potter
2019-07-11doc: add function "register" in the plugin API referenceSébastien Helleu
2019-07-11doc: add Python prototype for function window_get_string (plugin API reference)Sébastien Helleu
2019-07-11doc: fix return value of function window_get_string (plugin API reference)Sébastien Helleu
2019-07-06doc: fix typos in examples of function hook_process_hashtable (plugin API ↵Sébastien Helleu
reference)
2019-06-26doc: add description of arguments sent to the weechat_plugin_init plugin ↵Sébastien Helleu
function (plugin API reference)
2019-06-15api: add argument "strip_items" in function string_splitSébastien Helleu
2019-04-13api: return allocated string in hook_info callback and function info_getSébastien Helleu
2019-04-11doc: fix styles in user guide and plugin API referenceSébastien Helleu
2019-03-28api: add option "delay" in hashtable options of function command_options ↵Sébastien Helleu
(issue #1327)
2019-03-17core: fix typo: Weechat -> WeeChatSébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-02-28api: add function command_options (issue #928)Sébastien Helleu
2019-02-27doc: fix typo in plugin API referenceSébastien Helleu
2019-02-27api: add function string_match_listSébastien Helleu
2019-02-19spell: rename "aspell" plugin to "spell" (issue #1299)Sébastien Helleu
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict
2019-01-26doc: fix regex examples to be compatible with FreeBSDSébastien Helleu
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence).
2018-11-29core: use https for all links where secured http is supportedSébastien Helleu
2018-11-13doc: add missing variable "pointer" to make C compiler really happy (plugin ↵Sébastien Helleu
API reference)
2018-11-13doc: fix name of compiled plugin example (plugin API reference)Sébastien Helleu
2018-11-04api: add functions string_base_{encode,decode}, remove functions ↵Sébastien Helleu
string_{encode,decode}_base64
2018-11-02api: return integer in function string_encode_base64Sébastien Helleu
2018-10-09core: add repeat of string in evaluation of expressions with ↵Sébastien Helleu
"repeat:count,string" (closes #958)
2018-09-01doc: add missing comma in example of function config_new_option (plugin API ↵Sébastien Helleu
reference)
2018-08-17doc: split list of modifiers into two tables (plugin API reference)Sébastien Helleu
2018-08-15doc: fix typos in plugin API referenceSébastien Helleu
2018-08-15doc: add more info about line, print and modifier functions for new lines ↵Sébastien Helleu
(plugin API reference)
2018-08-12api: add function hook_lineSébastien Helleu
2018-06-02core: add reverse of string in evaluation of expressions with "rev:" (closes ↵Sébastien Helleu
#1200)
2018-05-31core: send buffer pointer (when possible) in signal "hotlist_changed" ↵Sébastien Helleu
(closes #1133) When a buffer is added or updated in the hotlist, the buffer pointer is sent. When the hotlist is cleared or resorted, the buffer pointer is NULL.
2018-05-21doc: add note about "list" options for curl in function ↵Sébastien Helleu
hook_process_hashtable (plugin API reference)
2018-05-21doc: add example of URL with custom HTTP headers in function ↵Sébastien Helleu
hook_process_hashtable (plugin API reference)
2018-05-20doc: add translations for function hashtable_add_from_infolist (plugin API ↵Sébastien Helleu
reference)
2018-04-07doc: add version 2.2 in Python example for function string_format_size ↵Sébastien Helleu
(plugin API reference)
2018-04-07api: add function string_format_size in scripting APISébastien Helleu
2018-03-25irc: send whole IRC message including IRCv3 tags in the signals irc_in, ↵Sébastien Helleu
irc_in2, irc_raw_in and irc_raw_in2 (issue #787)
2018-03-20doc: add more info about the reload callback in function config_new (plugin ↵Sébastien Helleu
API reference)
2018-03-01doc: add more info about return value of function hdata_move (plugin API ↵Sébastien Helleu
reference)
2018-01-21doc: rename callback name in example of function hook_process (plugin API ↵Sébastien Helleu
reference)
2018-01-13irc: add server option "split_msg_max_length"Sébastien Helleu
2017-11-26doc: translate doc on weechat_plugin pointer in other languages (plugin API ↵Sébastien Helleu
reference)
2017-11-03doc: add info about strings not translated in functions gettext/ngettext ↵Sébastien Helleu
(plugin API reference)
2017-10-24api: add support of prefix "quiet:" in function key_unbind() to quietly ↵Sébastien Helleu
remove keys
2017-10-17core: allow floating point and hexadecimal numbers in comparison of ↵Sébastien Helleu
evaluated values
2017-09-23core: fix typo: Javascript -> JavaScriptSébastien Helleu
2017-09-03doc: add PHP plugin in plugin API referenceSébastien Helleu