summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-06core: set default value "djb2" for option weechat.look.nick_color_hashSébastien Helleu
2016-04-05core: move nick coloring from irc plugin to core (closes #262)Sébastien Helleu
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color.
2016-04-04doc: add missing spaces in French plugin API referenceSébastien Helleu
2016-04-03doc: describe return code according to option type in config functions ↵Sébastien Helleu
(plugin API reference)
2016-04-02doc: fix typos in French plugin API referenceSébastien Helleu
2016-04-01core: add return code in usage function (debian build script)Sébastien Helleu
2016-03-31Merge pull request #513 from rakuco/cmake-iconv-detectionSébastien Helleu
core: do not hardcode iconv library name
2016-03-30doc: update Japanese auto-generated filesSébastien Helleu
2016-03-30Merge pull request #709 from l/translation_jaSébastien Helleu
core: update Japanese translations
2016-03-29doc: add note about version 1.5 in config functions (plugin API reference)Sébastien Helleu
2016-03-29core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2016-03-28doc: add callback pointer in doc of function bar_item_new (plugin API reference)Sébastien Helleu
2016-03-28doc: add note about version 1.5 in some functions (plugin API reference)Sébastien Helleu
2016-03-28doc: remove comments in example of function hook_command (plugin API reference)Sébastien Helleu
2016-03-28doc: add missing callback_pointer in hook functions (plugin API reference)Sébastien Helleu
2016-03-28doc: fix name of function in unhook_all prototype (plugin API reference)Sébastien Helleu
2016-03-28doc: add missing pointer in examples (plugin API reference)Sébastien Helleu
2016-03-28doc: fix typos in config functions (plugin API reference)Sébastien Helleu
2016-03-28doc: add missing quotes in plugin API referenceSébastien Helleu
2016-03-28doc: add callback pointer in doc of upgrade functions (plugin API reference)Sébastien Helleu
2016-03-27doc: add callback pointer in doc of function buffer_new (plugin API reference)Sébastien Helleu
2016-03-27doc: update doc of function exec_on_files (plugin API reference)Sébastien Helleu
2016-03-27core: remove rename of function unhook_all in release notesSébastien Helleu
2016-03-26doc: add callback pointer in doc of config functions (plugin API reference)Sébastien Helleu
2016-03-25doc: add pointer in hook callback examples (plugin API reference)Sébastien Helleu
2016-03-24doc: fix arguments in hook functions (plugin API reference)Sébastien Helleu
2016-03-24doc: add argument "subplugin" in function unhook_all (plugin API reference)Sébastien Helleu
2016-03-24api: rename function unhook_all_plugin to unhook_allSébastien Helleu
2016-03-23doc: add callback pointer in doc of hook functions (plugin API reference)Sébastien Helleu
2016-03-22core: add missing pointer argument in calls to hook_connect callbackSébastien Helleu
2016-03-21irc: fix crash in SSL connection to the serverSébastien Helleu
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-03-18doc: update Japanese auto-generated filesSébastien Helleu
2016-03-18Merge pull request #704 from l/translation_jaSébastien Helleu
core: update Japanese translations
2016-03-19core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2016-03-17core: use ${info:term_width} instead of ${window.win_width} in /help ↵Sébastien Helleu
weechat.bar.xxx.conditions (closes #703)
2016-03-15doc: update German auto-generated filesSébastien Helleu
2016-03-14core: update German translationsNils Görs
2016-03-14doc: fix typos in plugin API referenceSébastien Helleu
2016-03-13exec: fix example in /help execSébastien Helleu
2016-03-12scripts: fix typo in commentSébastien Helleu
2016-03-11core: fix long lines in release notesSébastien Helleu
2016-03-10doc: remove unneeded parentheses in quickstart guideSébastien Helleu
2016-03-09logger: add note on buffer local variables to use in /help logger.file.maskSébastien Helleu
2016-03-08doc: add command /disconnect in quickstart guideSébastien Helleu
2016-03-07doc: update Japanese auto-generated filesSébastien Helleu
2016-03-07Merge pull request #701 from l/translation_jaSébastien Helleu
core: update Japanese translations
2016-03-07core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2016-03-06core: remove plugin pointer in hooks debug messagesSébastien Helleu
2016-03-05relay: do not execute any command received from an irc relay client (closes ↵Sébastien Helleu
#699)