summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-02-10core: add missing initialization of pointer in list allocationSébastien Helleu
2015-02-04relay: remove v4-mapped addresses in /help relay.network.allowed_ipsAnders Bergh
v4-mapped addresses aren't used since commit 85339f6.
2015-01-30core: split expression before evaluating it in command "/eval -s"Sébastien Helleu
2015-01-30core: add option "-s" in command /eval to split commands (no more split by ↵Sébastien Helleu
default) (closes #324)
2015-01-29core: add note about alias /v in /help versionSébastien Helleu
2015-01-28irc: fix completion of commands /allchan and /allpvSébastien Helleu
2015-01-25irc: send WHOX message only if server supports itSébastien Helleu
2015-01-25irc: add "account-notify" in help of server option "capabilities"Sébastien Helleu
2015-01-25irc: fix set of variable "pos_account" in callback for message "354"Sébastien Helleu
2015-01-25irc: free account before changing its valueSébastien Helleu
2015-01-25irc: set away flag to 0 only if channel and nick are foundSébastien Helleu
2015-01-25irc: force host to NULL after freeSébastien Helleu
2015-01-25irc: move account callback to keep protocol callbacks sorted alphabeticallySébastien Helleu
2015-01-25irc: shorten code in account callbackSébastien Helleu
2015-01-25irc: add "account" in irc_nick_print_log()Sébastien Helleu
2015-01-25irc: add "account" in irc_nick hdataSébastien Helleu
2015-01-25irc: remove useless save of variables in irc_nick_new() when updating nickSébastien Helleu
2015-01-25irc: shorten code to call irc_nick_new() in join callbackSébastien Helleu
2015-01-25irc: change type of "account" parameter to "const char *" in irc_nick_new()Sébastien Helleu
2015-01-25irc: remove compiler warning about unused parameter in ↵Sébastien Helleu
irc_channel_remove_account()
2015-01-25irc: fix memory leak on nick account in irc_channel_remove_account()Sébastien Helleu
2015-01-25Merge remote-tracking branch 'origin/pr/246' into irc-account-notifySébastien Helleu
2015-01-24core: fix random error when creating symbolic link weechat-curses on make ↵Sébastien Helleu
install with cmake (bug #40313)
2015-01-24irc: don't keep valid account names when account-notify is disabledMax Teufel
2015-01-24irc: add support for CAP account-notifyMax Teufel
2015-01-24irc: remove server "freenode" from default config file (closes #309)Sébastien Helleu
2015-01-24irc: don't close channel buffer on second /part when option ↵Sébastien Helleu
irc.look.part_closes_buffer is off (closes #313)
2015-01-23core: fix crash when a root bar has conditions different from ↵Sébastien Helleu
active/inactive/nicklist (closes #317)
2015-01-23irc: fix restore of query buffers on /upgrade (closes #315)Sébastien Helleu
After /upgrade it was not possible to send a message in the query buffer or to receive messages from this nick. This commit fixes the search of query buffer when creating the irc channel (with type "private"). The bug was introduced by commit 9749b65f7e67bbee55e8708e571f5cff79b1bdbe.
2015-01-21core: add gnutls version in #if compiler directivesSébastien Helleu
2015-01-21irc: fix compilation of SASL "ecdsa-nist256p-challenge"Sébastien Helleu
Gnutls >= 3.0.21 is now required for SASL "ecdsa-nist256p-challenge". Gnutls >= 3.3.0 is required to display the public key when connecting.
2015-01-19irc: add support of "ecdsa-nist256p-challenge" SASL mechanism (closes #251)Sébastien Helleu
2015-01-19core: check that filename is not NULL in function util_file_get_contentSébastien Helleu
2015-01-19irc: fix /join on a channel buffer opened with autojoin but which failed to joinSébastien Helleu
2015-01-17irc: send QUIT to server and no PART for channels when the server buffer is ↵Sébastien Helleu
closed (closes #294)
2015-01-16irc: fix order of channel buffers opened (closes #303)Sébastien Helleu
2015-01-15irc: fix crash in buffer close when server name is the same as a channel ↵Sébastien Helleu
name (closes #305)
2015-01-15core: add priority in plugins to initialize them in orderSébastien Helleu
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer, irc, relay, guile/lua/perl/python/ruby/tcl, script.
2015-01-10irc: fix warning on cast of a pointerSébastien Helleu
2015-01-06irc: defer the auto-connection to servers with a timer (closes #279, task ↵Sébastien Helleu
#13038)
2015-01-03core: fix NULL pointer in free of bar window (closes #293); add extra checks ↵Sébastien Helleu
on bar window pointers
2015-01-01core: do not add flag "-fPIC" on Cygwin (not needed)Sébastien Helleu
2015-01-01core: fix compilation of plugins with cmake >= 3.1 (closes #287)Sébastien Helleu
The flag -fPIC is now forced for compilation of plugins. It should fix compilation problems when cmake doesn't add this flag.
2015-01-01core: update copyright datesSébastien Helleu
2014-12-28core: check bar conditions in root bars and on each update of a bar itemSébastien Helleu
2014-12-26irc: remove useless refresh of bar itemSébastien Helleu
And the name of item was wrong ("nicklist" instead of "buffer_nicklist").
2014-12-21irc: add option "reorder" in command /server (closes #229)Sébastien Helleu
2014-12-21core: replace irc.freenode.net by chat.freenode.netMikaela Suomalainen
Freenode wants people to use chat.freenode.net instead of irc.freenode.net which is alias to chat.freenode.net.
2014-12-20core: fully evaluate commands bound to keys in cursor and mouse contextsSébastien Helleu
2014-12-14irc: open channel buffers before the JOIN is received from server (autojoin ↵Sébastien Helleu
and manual joins) (closes #216) New options: - irc.look.buffer_open_before_autojoin - irc.look.buffer_open_before_join