summaryrefslogtreecommitdiff
path: root/src/plugins/irc
AgeCommit message (Collapse)Author
2009-03-19Add missing include of time.h in irc-raw.CSebastien Helleu
2009-03-19Fix bugs with color in IRC topicsSebastien Helleu
2009-03-19Many improvements on IRC raw bufferSebastien Helleu
New features: - key alt-j alt-r is reintroduced to open IRC raw buffer - command "/server raw" opens IRC raw buffer - new option irc.look.raw_messages, which is number of lines to keep in memory to display when user will open raw buffer (to see last messages received before opening raw buffer)
2009-03-18Replace WeeChat color codes by "?" in incoming IRC messages (bug #25862)Sebastien Helleu
2009-03-18Fix bug with IRC raw buffer and chars < 32, use of hexadecimal for such charsSebastien Helleu
2009-03-15Add new option irc.look.display_old_topic to display old topic when channel ↵Sebastien Helleu
topic is changed
2009-03-07Fix bug with text attribute in IRC messages: toggle attribute instead of ↵Sebastien Helleu
always forcing it to on (bug #25770)
2009-03-06Add new hook type "process": launch command with fork and catch result ↵Sebastien Helleu
(rc/stdout/stderr) via callback
2009-03-02Fix bug with detection of channel name in command /modeSebastien Helleu
2009-03-02Make channel optional in IRC command /mode (bug #25735)Sebastien Helleu
2009-03-01Fix crash with IRC commands msg/notice/query/quote when executed with too ↵Sebastien Helleu
few arguments (bug #25739)
2009-03-01Fix IRC command /who (nothing was displayed if WeeChat already checked ↵Sebastien Helleu
channel for away nicks) (bug #25736)
2009-02-26Display explicit message when irc command must be executed on irc buffer or ↵Sebastien Helleu
connected server
2009-02-25Add option "irc.look.topic_strip_colors" to strip topic colors in buffer's ↵Sebastien Helleu
title bar (task #6030)
2009-02-25Fix bug with reset of topic for irc channel / jabber mucSebastien Helleu
2009-02-24Fix option irc.network.send_unknown_commands: allow unknown commands on irc ↵Sebastien Helleu
server buffers (bug #25557)
2009-02-23Fix irc excess flood caused by mode command sent when a mode is received: ↵Sebastien Helleu
send mode only when channel modes are updated (bug #25651)
2009-02-22Add upgrade functions in script plugin APISebastien Helleu
2009-02-21Fix bug with buffer name/short_name when IRC query name has changed (remote ↵Sebastien Helleu
nick has changed) (bug #25654)
2009-02-20Fix bug with smart completion (irc/jabber): keep unique nicks in list of ↵Sebastien Helleu
last speakers (bug #25559)
2009-02-18Give file descriptor to callback of hook_fdSebastien Helleu
2009-02-17Add new local variable "type" for buffersSebastien Helleu
Values are set by plugins: - irc and jabber: "server", "channel", "private", "debug" - relay: "relay" (list) - xfer: "xfer" (list), "private" (DCC chat)
2009-02-17Use string instead of char for prefixes in nicklistSebastien Helleu
2009-02-11Fix build of IRC CTCP message (bug #25560)Sebastien Helleu
2009-02-11Add irc and jabber options to display nick modes in input_prompt bar itemSebastien Helleu
2009-02-11Add missing IRC command 330 (whois, logged in as)Sebastien Helleu
2009-02-10Authorize IRC commands msg/notice/query/quote outside IRC buffers if option ↵Sebastien Helleu
"-server" is given
2009-02-10Add option "-server" to IRC commands: msg, notice, query, quoteSebastien Helleu
2009-02-10Add irc info "irc_nick" to get current nick on a serverSebastien Helleu
2009-02-08Fix nick displayed by command /msg (bug #25518)Sebastien Helleu
2009-02-08Add new signals "irc_channel_opened" and "irc_pv_opened"Sebastien Helleu
2009-02-07Fix bug in irc color decoding: reset color if color code is not followed by ↵Sebastien Helleu
a color number
2009-02-07Add numeric codes for low chars (< 32) in irc and jabber debug buffersSebastien Helleu
2009-02-04Add missing include of time.h in irc.cSebastien Helleu
2009-02-04Fix 14 memory leaks (in core, gui, irc, jabber, logger, script plugins)Sebastien Helleu
2009-01-31Fix nicklist sort with IRC nicks (chan owner and admin first in list)Sebastien Helleu
2009-01-30Fix crash after /upgrade with IRC servers connected via SSL (bug #25398)Sebastien Helleu
We force disconnection of IRC servers connected via SSL, and schedule reconnection to server after WeeChat restart.
2009-01-30Fix problem with read marker when manually switching to other buffer with ↵Sebastien Helleu
some commands like /query
2009-01-30Fix some bugs with TLS connections in Jabber pluigin (TLS still not working ↵Sebastien Helleu
in Jabber)
2009-01-25Fix unread marker set with irc /away command: set unread marker for all ↵Sebastien Helleu
servers/channels that are not displayed in a window
2009-01-15Fix bug with IRC SSL server optionSebastien Helleu
2009-01-15Add Jabber plugin (alpha version, many Jabber features are missing)Sebastien Helleu
This commit introduces Jabber/XMPP protocol for WeeChat. It uses iksemel lib. Please note many major Jabber features are missing: - roster management (add/remove/.. buddies), - MUC, - transports. It is possible to define servers (with /jabber), connect to them (with /jconnect), disconnect (/jdisconnect) and chat with buddies (with /jchat).
2009-01-06Fix typoSebastien Helleu
2009-01-05Do not set unread marker on IRC server and channels when reconnecting to IRC ↵Sebastien Helleu
server if self nick is away
2009-01-04Add comments for IRC server optionsSebastien Helleu
2009-01-04Fix typoSebastien Helleu
2009-01-04Update highlight words for server and channel buffers when local nick is changedSebastien Helleu
2009-01-04Fix exec of IRC command when connecting to server if server buffers are ↵Sebastien Helleu
merged, and that server is not the selected server
2009-01-04Remove unused functions and prototypesSebastien Helleu
2009-01-03Add color for channel name in IRC info/error messagesSebastien Helleu