summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-12-23api: add hashtable with variables in plugin structureSébastien Helleu
2017-12-23core: add missing variables "author" and "license" in dump of pluginSébastien Helleu
2017-12-10core: add link to API doc in /help ↵Sébastien Helleu
weechat.completion.partial_completion_templates
2017-12-09core: add option weechat.completion.partial_completion_templatesSébastien Helleu
This option is used to force partial completion on specific templates (for now only "config_options").
2017-12-04python: fix integer arguments in hook_connect() and hook_fd() callbacksSébastien Helleu
2017-12-03buflist: use larger buffer for buflist bar item nameSébastien Helleu
2017-11-15trigger: fix typo in /help triggerSébastien Helleu
2017-11-11fset: only toggle boolean values with /fset -toggle or alt+space keySébastien Helleu
2017-11-06irc: fix help on option irc.look.notice_welcome_redirect (closes #1095)Sébastien Helleu
2017-11-04core: remove colors from prefix/message only when needed in hook_print_execSébastien Helleu
2017-11-04core: add missing includes of stdio.hSébastien Helleu
2017-11-04Include stdio.h for FILEcoypoop
so this header can be included even if it's not already included
2017-10-29core: remove useless condition (issue #1092)Sébastien Helleu
2017-10-29core: do not change the chat prefix size when a filtered line is added ↵Sébastien Helleu
(closes #1092)
2017-10-29core: fix typo in /help keySébastien Helleu
2017-10-24api: add support of prefix "quiet:" in function key_unbind() to quietly ↵Sébastien Helleu
remove keys
2017-10-21core: set value as optional in help of /buffer setSébastien Helleu
2017-10-20core: allow /buffer set without value with empty default (closes #746)Simmo Saan
2017-10-19buflist: add two new bar items using the same format configuration options ↵Sébastien Helleu
(closes #990)
2017-10-17core: allow floating point and hexadecimal numbers in comparison of ↵Sébastien Helleu
evaluated values
2017-10-14build: fix PHP library used to compile PHP plugin (closes #1078)Sébastien Helleu
This was causing a dependency missing in debian packaging.
2017-10-14core: add option weechat.look.save_config_with_fsync (closes #1083)Sébastien Helleu
This makes the save of all configuration files about 20 to 200x slower (according to the storage device speed); so this is disabled by default.
2017-10-13irc: do not clear nicklist when joining an already joined channel if the ↵Sébastien Helleu
option irc.look.buffer_open_before_join is on (closes #1081, closes #1082)
2017-10-09core: fix display of groups/nicks in nicklist in case of empty groups (issue ↵Sébastien Helleu
#1079)
2017-10-08core: fix display of nicks in nicklist when they are in a group with ↵Sébastien Helleu
sub-groups (closes #1079)
2017-10-03php: add commentsSébastien Helleu
2017-10-03php: add messages during script loading/unloadingSébastien Helleu
2017-10-03php: set php_quiet to 1 during plugin endSébastien Helleu
2017-10-03php: set php_quiet to 1 during plugin initializationSébastien Helleu
2017-10-03php: set php_quiet to 1 when loading/reloading/unloading a script with ↵Sébastien Helleu
option "-q"
2017-10-03lua: fix boolean return value (as integer) in API functionsSébastien Helleu
2017-10-03guile: return integer (0/1) instead of boolean in API functionsSébastien Helleu
2017-10-02guile: fix return value of static stringsSébastien Helleu
2017-09-28aspell: display "?" if lang is NULL in /aspell listdictSébastien Helleu
The lang should never be NULL anyway (this fixes a compiler warning).
2017-09-28php: use PHP_VERSION_ID instead of PHP_MAJOR_VERSION and PHP_MINOR_VERSIONSébastien Helleu
2017-09-28php: add comments with PHP versionSébastien Helleu
2017-09-28php: fix condition on PHP version to support future PHP versions (>= 8.0)Sébastien Helleu
2017-09-28Merge pull request #1069 from adsr/masterSébastien Helleu
php: use find_library to find libphp7.so
2017-09-25core: initialize variables attrs and pair before calling wattr_getSébastien Helleu
This fixes a compiler warning, in some cases wattr_get may not initialize the variables.
2017-09-23core, plugins: check return code of strftime functionSébastien Helleu
2017-09-23logger: call strftime before replacing buffer local variablesSébastien Helleu
2017-09-21php: fix crash in API function string_eval_path_homeSébastien Helleu
2017-09-17php: fix compiler warning for PHP >=7.1Adam Saponara
2017-09-17php: fix crash in API function string_eval_expressionSébastien Helleu
2017-09-10php: fix function plugin_get_nameSébastien Helleu
2017-09-09php: fix arguments of hook_command callbackSébastien Helleu
2017-09-07php: rename print functionsSébastien Helleu
Rename: - printf to print - printf_date_tags to print_date_tags - printf_y to print_y - log_printf to log_print
2017-09-07python: add/remove some empty lines for readabilitySébastien Helleu
2017-09-07php: check that script is registered in API functions, add macros to return ↵Sébastien Helleu
values
2017-09-07api: check script pointer in scripting API functionsSébastien Helleu