summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-11-30core: add command prefix in completion of /commandSébastien Helleu
2016-11-29core: add optional command prefix in completion templates "commands", ↵Sébastien Helleu
"plugins_commands" and ""weechat_commands"
2016-11-29core: add optional arguments in completion template, sent to the callbackSébastien Helleu
2016-11-28core: add option "time" in command /debugSébastien Helleu
2016-11-27api: move functions hook_completion* after hook_commandSébastien Helleu
2016-11-26irc: add tag "self_msg" on self messages (closes #840)Sébastien Helleu
2016-11-26irc: add missing tags on CTCP message sentSébastien Helleu
2016-11-25core: add more info in /help weechat.color.chat_nickSébastien Helleu
2016-11-22fifo: add file fifo.conf and option fifo.file.path to customize FIFO pipe ↵Sébastien Helleu
path/filename (closes #850)
2016-11-21core: add a warning in header of configuration files to not edit by hand ↵Sébastien Helleu
(closes #851)
2016-11-20api: add info "pid" (WeeChat PID) (issue #850)Sébastien Helleu
2016-11-19trigger: add comments above default triggersSébastien Helleu
2016-11-19trigger: do not hide email in command "/msg nickserv register password ↵Sébastien Helleu
email" (closes #849)
2016-11-13core: fix deadlock when quitting after a signal is received (closes #32)Sébastien Helleu
The code in signal handers (SIGHUP, SIGQUIT, SIGTERM) is moved into main loop, this hopefully fixes the deadlock when quitting after receiving one of these signals. The code in SIGWINCH signal handler is moved too (even if it shouldn't be a problem).
2016-11-09irc: fix help on mask in command /ignoreSébastien Helleu
2016-11-01lua: use lua_pushinteger for int values in lua 5.3tomoe-mami
2016-10-30xfer: add check on filename2 allocationSébastien Helleu
Now string_expand_home() can return NULL if the HOME environment variable it not set, so this commit adds an extra check on the variable "filename2" before using it.
2016-10-30Merge pull request #827 from sim642/string_expand_home-sigsegvSébastien Helleu
api: fix string_expand_home SIGSEGV when HOME environment variable unset
2016-10-29core: fix display of empty lines in search mode (closes #829)Sébastien Helleu
2016-10-25relay: set status to AUTH_FAILED in case of auth failure in irc protocol ↵Sébastien Helleu
(issue #825)
2016-10-21relay: set status to AUTH_FAILED in case of auth failure in weechat protocol ↵Sébastien Helleu
(closes #825)
2016-10-20api: fix string_expand_home SIGSEGV when HOME environment variable unsetSimmo Saan
2016-10-18irc: change default value of option irc.network.lag_reconnect to 300 (closes ↵Sébastien Helleu
#818)
2016-10-12Add server option umodes (closes #377)Simmo Saan
2016-10-08core: fix integer overflow in calls to realloc (issue #809)Sébastien Helleu
2016-10-08core: fix realloc in function gui_input_optimize_size (issue #809)Sébastien Helleu
This could cause crash in case of memory allocation error (but WeeChat would probably crash or have problems anyway if there's not enough memory for the input line).
2016-10-02api: fix return of function string_match() when there are multiple masks in ↵Sébastien Helleu
the string (issue #812) Some tests are added as well to test the multiple masks in the string.
2016-09-22irc: remove unneeded commentSébastien Helleu
2016-09-20core: add option weechat.look.align_multiline_wordsarza
2016-09-19Fix for unclosed/leaking sockets from issue #358Rob Campbell
2016-09-08core: replace "clipboard" by "internal clipboard" in /help input and user's ↵Sébastien Helleu
guide
2016-09-03core: evaluate content of option "weechat.look.item_time_format" (issue #791)Sébastien Helleu
2016-08-30irc: fix display of service notice mask (message 008) (closes #429)Sébastien Helleu
2016-08-27core: add example of splith and merge in /help windowSébastien Helleu
2016-08-22core: fix warnings about unused variablesSébastien Helleu
2016-08-20api: fix crash in function network_connect_to() if address is NULL (issue #781)Sébastien Helleu
2016-08-20xfer: fix crash on DCC send if option xfer.file.auto_accept_nicks is set ↵Sébastien Helleu
(closes #781)
2016-08-19api: fix connection to servers with hook_connect() on Windows 10 with ↵Sébastien Helleu
Windows subsystem for Linux (issue #770) The test on socketpair() function is now made when hooks are initialized (instead of doing the test at compilation time).
2016-08-19Revert "api: fix connection to servers with hook_connect() on Windows 10 ↵Sébastien Helleu
with Windows subsystem for Linux (closes #770)" This reverts commit 399636f98453bdc1fca19b4dbc742993549aa6c3.
2016-08-18core: move the extra_vars_eval argument after extra_varsSébastien Helleu
2016-08-18core: fix empty commentSébastien Helleu
2016-08-18Merge remote-tracking branch 'origin/pr/534'Sébastien Helleu
2016-08-16core: add optional argument "lowest", "highest" or level mask in command ↵Sébastien Helleu
/input hotlist_clear
2016-08-14core: fix completion of command /buffer swapSébastien Helleu
2016-08-14core: add option "cycle" in command /bufferSébastien Helleu
2016-08-13xfer: fix NULL pointer derefence in case of memory error in ↵Sébastien Helleu
xfer_set_{local|remote}_address()
2016-08-13xfer: fix memory leak in case of memory error in xfer_chat_open_buffer()Sébastien Helleu
2016-08-13irc: fix NULL pointer derefence in case of memory error in irc_sasl_dh()Sébastien Helleu
2016-08-13core: fix NULL pointer derefence in case of memory error in ↵Sébastien Helleu
gui_buffer_input_buffer_init()
2016-08-13core: free file pointer in case of memory error in util_file_get_content()Sébastien Helleu