summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2014-03-11api: add option "signal" in function hook_set to send a signal to the child ↵Sebastien Helleu
process
2014-03-11core: fix detection of terminated process in hook_processSebastien Helleu
Check if the process is finished, even if stdout/stderr are not closed. Moreover, if the process was terminated by a signal, the return code is set to WEECHAT_HOOK_PROCESS_ERROR.
2014-03-07core: set option weechat.look.buffer_search_where to prefix_message by defaultSebastien Helleu
2014-03-06core: add option weechat.look.hotlist_add_conditions, remove option ↵Sebastien Helleu
weechat.look.hotlist_add_buffer_if_away
2014-03-06core: fix recursive calls to function eval_expressionSebastien Helleu
2014-03-04core: mute all buffers by default in command /mute (replace option -all by ↵Sebastien Helleu
-core)
2014-03-04core: save and restore mute state in command /mute (bug #41748)Sebastien Helleu
2014-03-02core: fix memory in execution of commandsSebastien Helleu
This memory leak was introduced by commit aa81067ad070f05a4aaf98383781eba0fbafefd6
2014-03-02core: fix memory leak when removing a hdataSebastien Helleu
2014-03-02core: fix memory leak in evaluation of sub-conditionsSebastien Helleu
2014-02-28irc: evaluate content of server options "username" and "realname"Sebastien Helleu
2014-02-28core: fix output of /eval -n when there is a tab in outputSebastien Helleu
2014-02-28api: add support of escaped strings in function string_eval_expression and ↵Sebastien Helleu
command /eval
2014-02-26core: fix size used in some snprintfSebastien Helleu
2014-02-25core: fix malloc size when building filename of upgrade fileSebastien Helleu
2014-02-24core: fix size used in snprintf when reading a configuration fileSebastien Helleu
2014-02-22core: fix uninitialized value in functions secure_{encrypt|decrypt}_data (in ↵Sebastien Helleu
case of insufficient memory)
2014-02-22core: fix possible zero bytes allocation in /help commandSebastien Helleu
2014-02-22core: fix potential dereference of NULL pointer in function ↵Sebastien Helleu
command_set_display_option
2014-02-22core: comment unneeded assignment in function string_split_shell (make C ↵Sebastien Helleu
static analyzer happy)
2014-02-22core: fix uninitialized value in function string_decode_base64Sebastien Helleu
2014-02-22core: fix memory leak and use of invalid pointer in split of string (in case ↵Sebastien Helleu
of insufficient memory)
2014-02-21Merge branch 'trigger'Sebastien Helleu
2014-02-21core: use same return code and message in all commands when arguments are ↵Sebastien Helleu
wrong/missing
2014-02-20core: add option "-beep" in command /printSebastien Helleu
2014-02-19core: add missing option "rename" in /help filter and in command completionSebastien Helleu
2014-02-17core: allow empty arguments for command /printSebastien Helleu
2014-02-16core: add bare display mode (for easy text selection and click on URLs)Sebastien Helleu
New key: alt+"!", to swith to bare display (same key to come back to standard display). New options: - weechat.look.bare_display_exit_on_input (default: on): by default any changes in input will return to standard display - weechat.look.bare_display_time_format (default: "%H:%M"): the format of time used in bare display.
2014-02-15core: move function string_replace before string_replace_regexSebastien Helleu
2014-02-14core: fix completion template used in command completion when first argument ↵Sebastien Helleu
in template has pipes
2014-02-14doc: add function string_split_shell in plugin API referenceSebastien Helleu
2014-02-14core: change text in comment of function string_replace_regexSebastien Helleu
2014-02-11core: ignore return value of 'write' in function hook_set (fix compiler warning)Sebastien Helleu
2014-02-10api: add integer return code for functions hook_{signal|hsignal}_sendSebastien Helleu
2014-02-09core: improve the string_replace_regex function (add reference char, change ↵Sebastien Helleu
syntax for match refs) The reference char is now an argument for the function. The references are now $0 .. $99 and $+ was added (last match, with highest number). The syntax to replace a match with one char is now: $.cN or $.c+ (for example: "$.*3").
2014-02-09core: replace "regex_t *" by "void *" in string functions (fix ruby ↵Sebastien Helleu
compilation error with autotools)
2014-02-09core: add argument "num_items" in function string_split_shellSebastien Helleu
2014-02-09trigger: add trigger pluginSebastien Helleu
2014-02-09core: display a warning in case of inconsistency between the options ↵Sebastien Helleu
weechat.look.save_{config|layout}_on_exit
2014-02-09core: add more info in /help weechat.look.hotlist_sortSebastien Helleu
2014-01-29core: fix typos in translations and docsSebastien Helleu
2014-01-26core: fix memory leak in regex matching when evaluating expressionSebastien Helleu
2014-01-24core: add support of escaped unicode chars in commands /print and "/input ↵Sebastien Helleu
insert"
2014-01-22core: revert the rename of option weechat.look.save_layout_on_exitSebastien Helleu
2014-01-22core: fix typo in /help printSebastien Helleu
2014-01-22api: add function "infolist_search_var"Sebastien Helleu
2014-01-21core: rename option weechat.look.save_layout_on_exit to ↵Sebastien Helleu
weechat.look.store_layout_on_exit, replace "save" by "store" for layouts
2014-01-21core: change format of buffer name in output of /bufferSebastien Helleu
Now the full name of buffer is displayed, without parentheses around the plugin name. The old ouput was: [1] (core) weechat (notification: all) [1] (irc) server.freenode (notification: all) [2] (irc) freenode.#weechat (notification: all) Now it is: [1] core.weechat (notification: all) [1] irc.server.freenode (notification: all) [2] irc.freenode.#weechat (notification: all)
2014-01-19core: add command /printSebastien Helleu
2014-01-18core: fix typo in arguments description of command /muteSebastien Helleu