Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-01 | core: fix style in CMake files | Sébastien Helleu | |
2019-06-24 | core: auto disable upgrade process (command line option "--upgrade") if the ↵ | Sébastien Helleu | |
file weechat.upgrade is not found | |||
2019-06-15 | api: add argument "strip_items" in function string_split | Sébastien Helleu | |
2019-04-25 | cmake: allow custom libdir (fix #1341) | Ryan Farley | |
Allows for custom LIBDIR to specified with cmake builds. WEECHAT_LIBDIR is used for a custom Weechat directory, or set from LIBDIR (as LIBDIR used to be set). | |||
2019-04-13 | trigger: add hook "info_hashtable" | Sébastien Helleu | |
2019-04-13 | trigger: add hook "info" | Sébastien Helleu | |
2019-03-24 | core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵ | Sébastien Helleu | |
options This option is OFF by default and should be enabled only for tests, to measure test coverage. | |||
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-03-09 | core: add value -1 for keep_eol in function string_strip (issue #1322) | Sébastien Helleu | |
The value -1 means it's a standard split, but empty items are kept, and separators are not removed at beginning/end of string. | |||
2019-01-26 | doc: fix regex examples to be compatible with FreeBSD | Sé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). | |||
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-10-01 | core: replace "long unsigned int" by "unsigned long" | Sébastien Helleu | |
2018-08-17 | trigger: add variables "tg_prefix_nocolor" and "tg_message_nocolor" in line ↵ | Sébastien Helleu | |
trigger | |||
2018-08-17 | trigger: rename variable "tg_tags" to "tags" in line trigger | Sébastien Helleu | |
2018-08-16 | trigger: allow creation of temporary variables with the regex | Sébastien Helleu | |
2018-08-15 | trigger: fix /help trigger | Sébastien Helleu | |
2018-08-15 | trigger: add missing initialization of variable "tags" in hook line callback | Sébastien Helleu | |
2018-08-15 | trigger: fix memory leak in hook_line trigger callback | Sébastien Helleu | |
2018-08-15 | trigger: add missing values for line trigger | Sébastien Helleu | |
2018-08-12 | api: add function hook_line | Sébastien Helleu | |
2018-05-31 | trigger: hide password in display of command "/msg nickserv set password", ↵ | Sébastien Helleu | |
support the option "-server xxx" | |||
2018-05-31 | trigger: hide password in command "/msg nickserv set password" | Sébastien Helleu | |
2018-01-14 | core: reinitialize config file pointer to NULL after an error on section ↵ | Sébastien Helleu | |
creation | |||
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-11-15 | trigger: fix typo in /help trigger | Sébastien Helleu | |
2017-09-23 | core, plugins: check return code of strftime function | Sébastien Helleu | |
2017-08-10 | core: remove value for first #define in headers, add "PLUGIN" in plugin headers | Sébastien Helleu | |
2017-06-25 | fset: shift plugins priority to insert fset plugin between buflist and fifo | Sébastien Helleu | |
2017-06-10 | core, plugins: fix conditions to insert elements in linked lists | Sébastien Helleu | |
This removes scan-build warnings about dereference of last_xxx null pointers. | |||
2017-06-10 | trigger: if hashmap creation failed, don't use tags | Neui | |
If hashmap creation fails (eg. not enough memory), it jumps to the label "end", where it checks the pointer tags, that hadn't been initialized before. The simple fix is to initialize it before creating the hashmap. | |||
2017-06-02 | trigger: add "irc_server" and "irc_channel" pointers in data for IRC ↵ | Sébastien Helleu | |
signal/modifier hooks | |||
2017-03-25 | buflist: load plugin after some other plugins by shifting plugins priority | Sébastien Helleu | |
2017-03-25 | trigger: check that regex pointers are not NULL in function "trigger_regex_free" | Sébastien Helleu | |
2017-01-13 | tests: fix compilation of tests on FreeBSD 11 | Sébastien Helleu | |
Some includes were missing in .h files, and the tests must be linked with intl and execinfo on FreeBSD. | |||
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-11-19 | trigger: add comments above default triggers | Sébastien Helleu | |
2016-11-19 | trigger: do not hide email in command "/msg nickserv register password ↵ | Sébastien Helleu | |
email" (closes #849) | |||
2016-08-10 | trigger: add missing step with post action in /help trigger | Sébastien Helleu | |
2016-08-09 | trigger: add post action in command line built by /trigger input|output|recreate | Sébastien Helleu | |
2016-08-09 | trigger: add quotes around completions of post action | Sébastien Helleu | |
2016-08-09 | trigger: rename "once action" to "post action" | Sébastien Helleu | |
2016-08-09 | Merge remote-tracking branch 'origin/pr/509' | Sébastien Helleu | |
2016-06-18 | api: remove functions printf_date() and printf_tags() | Sébastien Helleu | |
2016-03-21 | core: 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-02-05 | trigger: fix long lines | Sébastien Helleu | |
2016-02-05 | Merge pull request #511 from juanfra684/patch-1 | Sébastien Helleu | |
trigger: add recover to cmd_pass/msg_auth, and regain to msg_auth | |||
2016-01-15 | Add extern keyword several places to link in osx | Luis Colorado | |
2016-01-05 | trigger: add info in error messages | Sébastien Helleu | |
2016-01-01 | core: update copyright dates | Sébastien Helleu | |