summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2014-09-28relay: add quotes in commentSébastien Helleu
2014-09-28relay: don't print ::ffff: in v4-mapped addresses.Anders Bergh
2014-09-26relay: fix send of signals "relay_client_xxx" (closes #214)Sébastien Helleu
The signals about relay client status changes were sent only when the client has ended. Now it is went on any status change.
2014-09-22irc: fix type of value stored in hashtable when joining a channel (closes #211)Sébastien Helleu
2014-09-20core: fix compilation of plugin API functions (macros) when compiler ↵Sébastien Helleu
optimizations are enabled (closes #200)
2014-09-20guile: fix compilation with Guile < 2.0.4 (closes #198)Sébastien Helleu
2014-09-20trigger: do not allow any changes on a trigger when it is currently running ↵Sébastien Helleu
(closes #189)
2014-09-20aspell: fix compilation with enchant version older than 1.6.0 (closes #192)Sébastien Helleu
2014-09-06irc: display nick changes in server buffer (closes #188)Sébastien Helleu
2014-09-04irc: disable creation of temporary servers by default with command /connect, ↵Sébastien Helleu
new option irc.look.temporary_servers
2014-08-29api: use microseconds instead of milliseconds in functions util_timeval_diff ↵Sébastien Helleu
and util_timeval_add
2014-08-23irc: remove a trailing comma in help of server capabilities optionSébastien Helleu
2014-08-23trigger: add option "restore" in command /triggerSébastien Helleu
2014-08-22script: fix crash on "/script update" if a script detail is displayed in ↵Sébastien Helleu
buffer (closes #177)
2014-08-22trigger: 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-17irc: add "server-time" in help of server option "capabilities"Sébastien Helleu
2014-08-16irc: remove unneeded variable "seconds"Sébastien Helleu
2014-08-16irc: fix translation of CTCP PING reply (closes #137)Sébastien Helleu
2014-08-16aspell: display an error if command "/aspell setdict" is called without a ↵Sébastien Helleu
dictionary
2014-08-16aspell: remove unneeded else conditionSébastien Helleu
2014-08-15aspell: fix crash with command "/aspell addword" if no word is given (closes ↵nils_2
#164)
2014-08-10irc: free nick immediately in case of malloc errorSébastien Helleu
2014-08-10script: fix potential crash in case of malloc errorSébastien Helleu
2014-08-10logger: fix memory leaks in backlogSébastien Helleu
2014-08-09irc: fix memory leak in CTCP answerSébastien Helleu
2014-08-09core: fix memory leak when removing script filesSébastien Helleu
2014-08-09exec: invert a condition to make code more readableSébastien Helleu
2014-08-09relay: fix memory leak during handshake on websocketSébastien Helleu
2014-08-09relay: fix memory leak when receiving several lines from client (weechat ↵Sébastien Helleu
protocol)
2014-08-09relay: fix memory leak when receiving commands from client (weechat protocol)Sébastien Helleu
2014-08-09relay: remove dead assignmentSébastien Helleu
2014-08-09relay: fix crash when an IRC "MODE" command is received from client without ↵Sébastien Helleu
arguments
2014-08-02core: fix result of hash function (in hashtables) on 32-bit systemsSébastien Helleu
2014-08-02trigger: fix hook count on 32-bit systemsSébastien Helleu
2014-08-02relay: fix number of bytes sent/received on 32-bit systemsSébastien Helleu
2014-08-02irc: fix duplicate sender name in display of wallops (closes #142, closes #145)Sébastien Helleu
2014-07-23trigger: update commentSébastien Helleu
2014-07-22trigger: refuse triggers with . in their nameAndrew Potter
2014-07-20core: remove whitespace in cmake filesSébastien Helleu
2014-07-14script: fix display of curl errorsSébastien Helleu
2014-07-14aspell: rename variable "utf8_char_int" to "code_point"Sébastien Helleu
2014-07-12irc: display locally away status changes in private buffers (in addition to ↵Sébastien Helleu
channels) (closes #117)
2014-07-12python: fix read of return value for callbacks returning an integer in ↵Sébastien Helleu
Python 2.x (closes #125)
2014-07-01core: remove "www" in weechat.org URLsSébastien Helleu
2014-06-19irc: fix typo in a messageSébastien Helleu
2014-06-14irc: 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-10core: 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-08irc: fix help of commands kick/kickban/remove (closes #102)Sébastien Helleu
2014-06-03irc: fix commentSébastien Helleu
2014-05-29relay: don't send signals "buffer_clear" and "buffer_line_added" for relay ↵Sébastien Helleu
raw/list buffers to clients (weechat protocol)