Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-28 | core, plugins: replace calls to string_str(n)cmp by str(n)cmp (issue #1872) | Sébastien Helleu | |
2023-01-28 | core, plugins: check that string parameters are not NULL in search functions ↵ | Sébastien Helleu | |
(issue #1872) | |||
2023-01-28 | core, plugins: make commands, hook command_run, completions and aliases case ↵ | Sébastien Helleu | |
sensitive (issue #1872) | |||
2023-01-28 | plugins: set priority in calls to weechat_config_new (issue #1872) | Sébastien Helleu | |
2023-01-01 | core: update copyright dates | Sébastien Helleu | |
2022-01-17 | core: update copyright dates | Sébastien Helleu | |
2021-07-04 | typing: add typing plugin | Sébastien Helleu | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-12-05 | Revert "exec: return NULL immediately if the task id is invalid" | Sébastien Helleu | |
This reverts commit dff1bf6f0f5521cf9e23e2b32a648512e13b6a72. | |||
2020-10-11 | exec: add option "-oerr" to send stderr to buffer (now disabled by default) ↵ | Sébastien Helleu | |
(closes #1566) | |||
2020-05-03 | exec: return NULL immediately if the task id is invalid | Sébastien Helleu | |
2020-05-03 | exec: fix use of same task id for different tasks (closes #1491) | Sébastien Helleu | |
2020-01-04 | core: update copyright dates | 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-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-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-08-12 | core: fix cast of time_t (to "long long" instead of "long") (closes #1051) | 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-03-25 | buflist: load plugin after some other plugins by shifting plugins priority | Sébastien Helleu | |
2017-01-06 | exec: add option "-oc" in command /exec to execute commands in process ↵ | Sébastien Helleu | |
output (closes #877) The behavior of existing option "-o" is changed: now commands are NOT executed (which is more secure by default). | |||
2017-01-06 | exec: fix memory leak in display of process output | Sébastien Helleu | |
2017-01-01 | core: update copyright dates | 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-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-01-15 | core: add priority in plugins to initialize them in order | Sébastien Helleu | |
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer, irc, relay, guile/lua/perl/python/ruby/tcl, script. | |||
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-08-09 | exec: invert a condition to make code more readable | Sébastien Helleu | |
2014-04-03 | exec: fix tag stdout/stderr used in command output | Sébastien Helleu | |
2014-04-03 | exec: remove comment | Sébastien Helleu | |
2014-04-03 | exec: display output of commands in real time, add options -flush/-noflush ↵ | Sébastien Helleu | |
in command /exec | |||
2014-04-03 | exec: display command output even if process is killed | Sébastien Helleu | |
2014-03-25 | exec: add options -nf and -cl/-nocl in command /exec | Sebastien Helleu | |
-nf: create a new buffer with free content -cl: clear new buffer -nocl: append in new buffer | |||
2014-03-16 | exec: add return code ("rc") in hashtable sent with option "-hsignal" | Sebastien Helleu | |
2014-03-16 | exec: add values "irc" and "weechat" for option "-color", replace "decode" ↵ | Sebastien Helleu | |
by "auto" | |||
2014-03-16 | exec: add options "-pipe" and "-hsignal" in command /exec | Sebastien Helleu | |
2014-03-15 | exec: fix compilation on OpenBSD | Sebastien Helleu | |
Looks like the variable name "stdout" is a problem on OpenBSD (macro?). So "stdout" and "stderr" are renamed to "out" an "err". | |||
2014-03-15 | exec: rename value "off" to "ansi" for option "-color" in command /exec | Sebastien Helleu | |
2014-03-15 | exec: add option "-color" in command /exec (decode ANSI colors by default) | Sebastien Helleu | |
The ANSI colors are decoded by default to WeeChat colors (for local display), or IRC colors (if output is sent to buffer with "-o"). | |||
2014-03-13 | exec: add missing empty lines in output of commands | Sebastien Helleu | |
The function weechat_string_split() collapses many separators (here "\n"), so empty lines were removed and not displayed. For example, if output is "Line1\n\nEnd\n", the empty line between "Line1" and "End" was not displayed. | |||
2014-03-13 | exec: add options "-rc"/"-norc" (display return code) in command /exec | Sebastien Helleu | |
2014-03-12 | exec: add options "-ln"/"-noln" (line numbers) in command /exec | Sebastien Helleu | |
2014-03-12 | exec: add options "-n"/"-ns" in command /exec (display output in a new buffer) | Sebastien Helleu | |
2014-03-11 | exec: add option "-bg" in command /exec | Sebastien Helleu | |
2014-03-11 | exec: remove error prefix in case of unexpected end of a command | Sebastien Helleu | |
2014-03-11 | exec: display command return code after output (stdout/stderr) | Sebastien Helleu | |
2014-03-11 | exec: add tag "exec_rc" for line with command return code, remove empty line ↵ | Sebastien Helleu | |
displayed before | |||
2014-03-11 | exec: add exec plugin | Sebastien Helleu | |