Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-20 | trigger: do not allow any changes on a trigger when it is currently running ↵ | Sébastien Helleu | |
(closes #189) | |||
2014-09-20 | aspell: fix compilation with enchant version older than 1.6.0 (closes #192) | Sébastien Helleu | |
2014-09-06 | irc: display nick changes in server buffer (closes #188) | Sébastien Helleu | |
2014-09-04 | irc: disable creation of temporary servers by default with command /connect, ↵ | Sébastien Helleu | |
new option irc.look.temporary_servers | |||
2014-09-01 | core: optimize completion by using arraylists | Sébastien Helleu | |
With arraylist (vs weelist), the completion is about 50x faster. It is visible on "/help [+tab]". | |||
2014-08-29 | irc: use irc_protocol_nick_address for ban/quiet/invex/exception lists | Max Teufel | |
2014-08-29 | api: use microseconds instead of milliseconds in functions util_timeval_diff ↵ | Sébastien Helleu | |
and util_timeval_add | |||
2014-08-23 | irc: remove a trailing comma in help of server capabilities option | Sébastien Helleu | |
2014-08-23 | trigger: add option "restore" in command /trigger | Sébastien Helleu | |
2014-08-22 | script: fix crash on "/script update" if a script detail is displayed in ↵ | Sébastien Helleu | |
buffer (closes #177) | |||
2014-08-22 | trigger: fix regex used in default triggers to hide passwords (closes #172) | Sébastien Helleu | |
"\S" is not supported on *BSD, so it is replaced by "[^ ]" (which should be enough, since there should be no tabs or other whitespace different from spaces in command line). | |||
2014-08-20 | xfer: bind to wildcard address when sending | Andrew Potter | |
When #5 was fixed, we started to always bind to the local address connected to the irc server because the xfer.network.own_ip address may not be able to be bound to when NATed. But this means when the own_ip address is a different family (IPv4 vs IPv6) from the irc server connection, we were listening for connections on the wrong interface. This patch lets us figure out which family is being used, (xfer.network.own_ip's family, or the irc connection's family otherwise) and bind() into the correct family via that family's wildcard address. | |||
2014-08-19 | xfer: Use hook_connect() for receiving chats | Andrew Potter | |
fixes #160 | |||
2014-08-17 | irc: add "server-time" in help of server option "capabilities" | Sébastien Helleu | |
2014-08-16 | irc: remove unneeded variable "seconds" | Sébastien Helleu | |
2014-08-16 | irc: fix translation of CTCP PING reply (closes #137) | Sébastien Helleu | |
2014-08-16 | aspell: display an error if command "/aspell setdict" is called without a ↵ | Sébastien Helleu | |
dictionary | |||
2014-08-16 | aspell: remove unneeded else condition | Sébastien Helleu | |
2014-08-15 | aspell: fix crash with command "/aspell addword" if no word is given (closes ↵ | nils_2 | |
#164) | |||
2014-08-10 | irc: free nick immediately in case of malloc error | Sébastien Helleu | |
2014-08-10 | script: fix potential crash in case of malloc error | Sébastien Helleu | |
2014-08-10 | logger: fix memory leaks in backlog | Sébastien Helleu | |
2014-08-09 | irc: fix memory leak in CTCP answer | Sébastien Helleu | |
2014-08-09 | core: fix memory leak when removing script files | Sébastien Helleu | |
2014-08-09 | exec: invert a condition to make code more readable | Sébastien Helleu | |
2014-08-09 | relay: fix memory leak during handshake on websocket | Sébastien Helleu | |
2014-08-09 | relay: fix memory leak when receiving several lines from client (weechat ↵ | Sébastien Helleu | |
protocol) | |||
2014-08-09 | relay: fix memory leak when receiving commands from client (weechat protocol) | Sébastien Helleu | |
2014-08-09 | relay: remove dead assignment | Sébastien Helleu | |
2014-08-09 | relay: fix crash when an IRC "MODE" command is received from client without ↵ | Sébastien Helleu | |
arguments | |||
2014-08-02 | core: fix result of hash function (in hashtables) on 32-bit systems | Sébastien Helleu | |
2014-08-02 | trigger: fix hook count on 32-bit systems | Sébastien Helleu | |
2014-08-02 | relay: fix number of bytes sent/received on 32-bit systems | Sébastien Helleu | |
2014-08-02 | irc: fix duplicate sender name in display of wallops (closes #142, closes #145) | Sébastien Helleu | |
2014-07-23 | trigger: update comment | Sébastien Helleu | |
2014-07-22 | trigger: refuse triggers with . in their name | Andrew Potter | |
2014-07-20 | core: remove whitespace in cmake files | Sébastien Helleu | |
2014-07-14 | script: fix display of curl errors | Sébastien Helleu | |
2014-07-14 | aspell: rename variable "utf8_char_int" to "code_point" | Sébastien Helleu | |
2014-07-12 | irc: display locally away status changes in private buffers (in addition to ↵ | Sébastien Helleu | |
channels) (closes #117) | |||
2014-07-12 | python: fix read of return value for callbacks returning an integer in ↵ | Sébastien Helleu | |
Python 2.x (closes #125) | |||
2014-07-01 | core: remove "www" in weechat.org URLs | Sébastien Helleu | |
2014-06-19 | irc: fix typo in a message | Sébastien Helleu | |
2014-06-14 | irc: add value "+" for option irc.look.smart_filter_mode to use modes from ↵ | Sébastien Helleu | |
server prefixes (closes #90) The new default value of option irc.look.smart_filter_mode is now "+". | |||
2014-06-10 | core: fix potential memory leak with infolists not freed in plugins (debian ↵ | Sébastien Helleu | |
#751108) The memory leak should not happen if infolists are properly freed by plugins, and it happened only on unload of plugins (or exit). | |||
2014-06-08 | irc: fix help of commands kick/kickban/remove (closes #102) | Sébastien Helleu | |
2014-06-03 | irc: fix comment | Sébastien Helleu | |
2014-05-29 | relay: don't send signals "buffer_clear" and "buffer_line_added" for relay ↵ | Sébastien Helleu | |
raw/list buffers to clients (weechat protocol) | |||
2014-05-28 | irc: fix extract of channel in parser for JOIN/PART messages when there is a ↵ | Sébastien Helleu | |
colon before the channel name (closes #83) The problem was only affecting scripts or triggers using the parser. The irc plugin does not use the "channel" variable built by the parser (when parsing JOIN/PART messages). | |||
2014-05-26 | irc: add command /remove (closes #91) | Sébastien Helleu | |