summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-11-02core: add support of TOTP generation/validation (Time-based One-Time Password)Sébastien Helleu
2018-10-27core: split wee-secure.c into 3 files (secured data functions, buffer and ↵Sébastien Helleu
config)
2018-10-27buflist: fix warning displayed when script buffers.pl is loaded (closes #1274)Sébastien Helleu
2018-10-21core: replace call to strncpy by memcpySébastien Helleu
This fixes a gcc warning: "warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]".
2018-10-21irc: fix uninitialized variables in function irc_protocol_cap_syncSébastien Helleu
2018-10-14Merge pull request #1267 from emkw/masterSébastien Helleu
lua: mkdir API functions should return ERROR on error.
2018-10-14lua: mkdir API functions should return ERROR on error.emk
2018-10-14irc: fix colors 14 and 15 in /help irc.color.mirc_remap (closes #1266)Sébastien Helleu
2018-10-09core: add repeat of string in evaluation of expressions with ↵Sébastien Helleu
"repeat:count,string" (closes #958)
2018-10-08core: fix evaluation of nested ternary operators (closes #1263)Sébastien Helleu
2018-10-06core: fix styleSébastien Helleu
2018-10-06Merge remote-tracking branch 'origin/pr/1259'Sébastien Helleu
2018-10-01aspell: remove useless test on max_suggestionsSébastien Helleu
2018-10-01relay: remove useless test on lengthSébastien Helleu
2018-10-01relay: remove useless test on num_sentSébastien Helleu
2018-10-01irc: remove useless test on argcSébastien Helleu
2018-10-01core: fix format of variables in printf-like functions (from int to long and ↵Sébastien Helleu
long long)
2018-10-01irc: replace call to gmtime by gmtime_rSébastien Helleu
2018-10-01core: replace call to gmtime by gmtime_rSébastien Helleu
2018-10-01core: add missing argument in call to log_printfSébastien Helleu
2018-10-01core: replace "long unsigned int" by "unsigned long"Sébastien Helleu
2018-09-30relay: add real IP in client description (closes #1256)Sébastien Helleu
2018-09-24logger: add more info about log levels in /help logger (closes #1254)Sébastien Helleu
2018-09-24logger: move logger command into a separate source fileSébastien Helleu
2018-09-20irc: display a warning when the value of option irc.server.xxx.autojoin is ↵Sébastien Helleu
set to an invalid value
2018-09-18core: allow multiple arguments in command /buffer closeSébastien Helleu
2018-09-09core: allow specifying buffer number/name for /buffer localvarSimmo Saan
2018-09-09relay: fix URL to the page with remote interfaces in /help relaySébastien Helleu
2018-09-06core: allow multiple options "-r" ("--run-command") in command line ↵Sébastien Helleu
arguments (closes #1248)
2018-09-01core: fix copyright datesSébastien Helleu
2018-08-30core: rename variable "plugin_blacklisted" to "plugin_forbidden"Sébastien Helleu
2018-08-18core: fix evaluation of condition when the left operand is an empty stringSébastien Helleu
2018-08-17core: add option "-P" (or "--plugins") to customize the plugins to load at ↵Sébastien Helleu
startup If given, the option replaces the option weechat.plugin.autoload.
2018-08-17trigger: add variables "tg_prefix_nocolor" and "tg_message_nocolor" in line ↵Sébastien Helleu
trigger
2018-08-17trigger: rename variable "tg_tags" to "tags" in line triggerSébastien Helleu
2018-08-16trigger: allow creation of temporary variables with the regexSébastien Helleu
2018-08-16core: fix string evaluation with regex replacement when the string is emptySébastien Helleu
2018-08-16core: fix weechat_print modifierSébastien Helleu
All changes: - always send the Tab char in the weechat_print modifier string - handle special cases in weechat_print modifier: no prefix (" \t...") or no date ("\t\t...")
2018-08-15core: fix use of NULL pointer in command /buffer when the GUI is not yet ↵Sébastien Helleu
initialized
2018-08-15core: remove use of pointer "buffer" once the line has been initializedSébastien Helleu
2018-08-15core: remove unneeded initialization of variable "highlight"Sébastien Helleu
2018-08-15irc: add missing initialization of variable "chghost"Sébastien Helleu
2018-08-15trigger: fix /help triggerSébastien Helleu
2018-08-15core: add comments in function to print a lineSébastien Helleu
2018-08-15core: fix destruction of line prefix in weechat_print modifierSébastien Helleu
2018-08-15core: fix comparison of strings in weechat_print modifierSébastien Helleu
2018-08-15trigger: add missing initialization of variable "tags" in hook line callbackSébastien Helleu
2018-08-15api: fix memory leak in function string_splitSébastien Helleu
2018-08-15trigger: fix memory leak in hook_line trigger callbackSébastien Helleu
2018-08-15core: fix memory leak when removing a line hookSébastien Helleu