summaryrefslogtreecommitdiff
path: root/doc/fr/weechat_plugin_api.fr.adoc
AgeCommit message (Collapse)Author
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
2020-04-18doc: fix table sizes on small screensSébastien Helleu
2020-03-20doc: add note about call to "free" on result of info_get (plugin API reference)Sébastien Helleu
2020-03-02core: require libgcrypt >= 1.7.0 for SHA3 algorithmsSébastien Helleu
2020-03-01api: add function crypto_hash_pbkdf2Sébastien Helleu
2020-03-01core: move crypto functions to wee-crypto.c, rename API function string_hash ↵Sébastien Helleu
to crypto_hash
2020-03-01core: merge functions string_hash_binary and string_hash into a single ↵Sébastien Helleu
function string_hash
2020-02-29core: add support of CRC32 algorithm in hash functionsSébastien Helleu
2020-02-29api: add functions string_hash_binary and string_hashSébastien Helleu
2020-01-05doc: remove space in example of hsignal irc_redirect_command (plugin API ↵Sébastien Helleu
reference)
2019-11-24doc: fix translations in French plugin API referenceSébastien Helleu
2019-11-24doc: remove flags "translation missing" in French docsSébastien Helleu
2019-11-04doc: add examples of division in ${calc:...} (plugin API reference)Sébastien Helleu
2019-11-04doc: fix list of "updated in" versions in function string_eval_expression ↵Sébastien Helleu
(plugin API reference)
2019-10-12doc: add links on signals and hsignals (plugin API reference)Sébastien Helleu
2019-10-12python: send "bytes" instead of "str" to callbacks in Python 3 when the ↵Sébastien Helleu
string is not UTF-8 valid (issue #1220, closes #1389)
2019-10-12core: add reverse of string for screen in evaluation of expressions with ↵Sébastien Helleu
"revscr:"
2019-10-10doc: add value -1 for notify level in function hook_line (plugin API reference)Sébastien Helleu
2019-10-06doc: fix styles in plugin API referenceSébastien Helleu
2019-10-06core: add support of modifiers in evaluation of expressions with ↵Sébastien Helleu
"modifier:name,data,string" (issue #60)
2019-10-06api: add modifier "eval_path_home" (issue #60)Sébastien Helleu
2019-10-01api: add modifier "color_encode_ansi" (issue #528)Sébastien Helleu
2019-09-27irc: add "user" in output of irc_message_parse (closes #136)Sébastien Helleu
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)