summaryrefslogtreecommitdiff
path: root/src/plugins/irc
AgeCommit message (Collapse)Author
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-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-10irc: free nick immediately in case of malloc errorSébastien Helleu
2014-08-09irc: fix memory leak in CTCP answerSébastien Helleu
2014-08-02irc: fix duplicate sender name in display of wallops (closes #142, closes #145)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-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-08irc: fix help of commands kick/kickban/remove (closes #102)Sébastien Helleu
2014-06-03irc: fix commentSébastien Helleu
2014-05-28irc: 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-26irc: add command /remove (closes #91)Sébastien Helleu
2014-05-24api: add argument "flags" in function hdata_new_listSébastien Helleu
2014-05-23irc: fix refresh of bar item "irc_channel" after join/part/kick/kill (issue #86)Sébastien Helleu
2014-05-21irc: fix duplicate sender name in display of notice (closes #87)Sébastien Helleu
2014-05-21irc: fix refresh of buffer name in bar items after join/part/kick/kill ↵Sébastien Helleu
(closes #86)
2014-05-20irc: display message 936 (censored word) on channel instead of server bufferSébastien Helleu
2014-05-16core: add bar item "buffer_short_name" (task #10882)Sébastien Helleu
2014-05-15irc: add bar item "irc_nick_modes" (closes #71)Sébastien Helleu
2014-05-12irc: make reason optional in command /killSébastien Helleu
2014-05-08irc: add support of message 324 (channel modes) in option ↵Sébastien Helleu
irc.look.display_join_message (closes #75)
2014-05-06irc: add option irc.look.join_auto_add_chantype (closes #65)Sébastien Helleu
2014-04-20core: add non-breaking spaces in French translationsSébastien Helleu
2014-04-17irc: fix description of arguments in infolist "irc_nick"Sébastien Helleu
Only the nick is optional is this infolist (server and channel are required).
2014-04-13irc: add alias "whois" for target buffer of messages 401/402 (closes #54)Sébastien Helleu
2014-04-12api: allow wildcard "*" inside the mask in function string_matchSébastien Helleu
2014-04-12core: fix crash on "weechat --upgrade" if no .upgrade files are foundSébastien Helleu
2014-04-12core: use lower case for CMake keywordsSébastien Helleu
2014-04-12irc: add tag with host ("host_xxx") in IRC messages displayedSébastien Helleu
2014-04-04irc: allow many fingerprints in server option ssl_fingerprint (closes #49)Sébastien Helleu
2014-04-04irc: add option irc.look.item_channel_modes_hide_args (task #12070, task ↵Sébastien Helleu
#12163, closes #48) This option replaces the option irc.look.item_channel_modes_hide_key. It is now a string, so channel modes arguments can be hidden using many channel modes (or all, with "*").
2014-04-04irc: add option irc.color.item_nick_modes (closes #47)Sébastien Helleu
2014-04-03core: close .upgrade files before deleting them after /upgradeSébastien Helleu
2014-03-30irc: allow "$ident" in option irc.network.ban_mask_default (closes #18)Sébastien Helleu
2014-03-30irc: add support of "away-notify" capability (closes #12)Sébastien Helleu
2014-03-24irc: fix notify message: "joined" -> "connected"Sebastien Helleu
2014-03-22irc: replace "user" by "nick" in description of commandsSebastien Helleu
2014-03-22irc: fix arguments in /help unquiet: at least one nick/host is requiredSebastien Helleu
2014-03-22irc: update description of some commandsSebastien Helleu
2014-03-22irc: add command /unquiet (closes #36)Sebastien Helleu
2014-03-19irc: fix typo in /help allpvSebastien Helleu
2014-03-19irc: add command /allpv (task #13111)Sebastien Helleu
2014-03-19core: fix use of reserved C identifiers in headers (closes #31)Sebastien Helleu
2014-03-18irc: fix truncated read on socket with SSL (bug #41558)Sebastien Helleu
If there are still data on socket with SSL (if gnutls_record_check_pending(session) returns > 0), then call gnutls_record_recv() again to read all available data. The problem was that some data remained in the gnutls buffers and the recv callback was not called any more (nothing available on raw socket).
2014-03-17irc: fix typo in /help kickbanSebastien Helleu
2014-03-16core: fix some compilation problems on SmartOSSebastien Helleu