summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-input.c
AgeCommit message (Collapse)Author
2019-11-03irc: add filters on raw buffer (closes #1000)Sébastien Helleu
2019-06-15api: add argument "strip_items" in function string_splitSébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-01-13irc: add server option "split_msg_max_length"Sébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-11-26irc: add tag "self_msg" on self messages (closes #840)Sébastien Helleu
2016-06-18api: remove functions printf_date() and printf_tags()Sébastien Helleu
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-03-05relay: do not execute any command received from an irc relay client (closes ↵Sébastien Helleu
#699)
2016-01-01core: update copyright datesSébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-11-01irc: reformat some code to make it more readableSébastien Helleu
2014-04-12irc: add tag with host ("host_xxx") in IRC messages displayedSébastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-05-18irc: fix uncontrolled format string when sending unknown irc commands (if ↵Sebastien Helleu
option irc.network.send_unknown_commands is on)
2013-05-06irc: fix display of CTCP messages that contain bold attribute (bug #38895)Sebastien Helleu
2013-01-06irc: fix display of actions (/me) when they are received from a relay client ↵Sebastien Helleu
(in channel and private buffers) (bug #38027)
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-04-03irc: use tag "prefix_nick_ccc" (where "ccc" is color of nick) in messages ↵Sebastien Helleu
displayed This new tag is used by WeeChat to hide/replace same prefix (option weechat.look.prefix_same_nick).
2012-01-08core: update copyright datesSebastien Helleu
2011-11-12irc: add case insensitive string comparison based on casemapping of server ↵Sebastien Helleu
(rfc1459, strict-rfc1459, ascii) (bug #34239)
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-08-26irc: improve split of privmsg, add split of some other messages (bug ↵Sebastien Helleu
#29879), add new info_hashtable "irc_message_split", split irc messages in relay plugin List of new features/bugs fixed: - improve split of privmsg: keep CTCP in split - add split of messages: ison, join, notice, wallops, 005, 353 - add new info_hashtable "irc_message_split" (for plugins/scripts) - in relay plugin: split irc messages sent to clients of irc proxy
2011-04-24irc: use tag "notify_none" for self messagesSebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2010-11-12Set tag "notify_message" for messages sent to IRC channelsSebastien Helleu
2010-10-31Remove test on pointer which can't be NULLSebastien Helleu
2010-10-19Fix use of flags for irc_server_sendf in signal irc_input_sendSebastien Helleu
2010-10-10Add tag "nick_xxx" in IRC messagesSebastien Helleu
2010-09-17Beta version of IRC proxy feature in Relay pluginSebastien Helleu
Major changes in Relay plugin: - IRC proxy feature (beta), - raw buffer. Changes in IRC plugin: - add tags for messages sent to servers, - add signal "irc_input_send" to simulate text/command on an IRC buffer, - add prefix in infolist "irc_nick".
2010-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-05-29Fix bug with nick prefix '*' (chan founder) on some IRC servers (bug #29890)Sebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-03-19Reformat multi-line commentsSebastien Helleu
2010-03-19Move /away command from irc plugin to coreSebastien Helleu
2010-03-02Add new option weechat.look.command_chars, add functions ↵Sebastien Helleu
string_is_command_char and string_input_for_buffer in plugin and script API
2010-02-20Allow input "q" to close IRC raw bufferSebastien Helleu
2010-01-17Add new IRC output queue for messages with low priority (like automatic CTCP ↵Sebastien Helleu
replies), high priority is given to user messages or commands
2010-01-03Update copyright datesSebastien Helleu
2009-04-24Add anti-flood for extra IRC commands like msg/notice/query/quote and some otherSebastien Helleu
2009-02-24Fix option irc.network.send_unknown_commands: allow unknown commands on irc ↵Sebastien Helleu
server buffers (bug #25557)
2009-01-03Update copyright datesSebastien Helleu
2008-11-15Reintroduce option "irc.network.send_unknown_commands", save extra data for ↵Sebastien Helleu
buffers with /upgrade (title, input data, text search)
2008-11-10Disable highlight for IRC messages from local nickSebastien Helleu
2008-10-30Add new features to logger plugin (command /logger, log level, level by ↵Sebastien Helleu
buffer, mask by buffer, ..), fix some bugs New features: - new command /logger - log level, to log only some messages, according to importance (task #8592) - level by buffer: custom level for some buffers (or group of buffers) - log filename mask by buffer (or group of buffers) - marker line is added after display of backlog - add "delete" callback for config file sections - add "mkdir_parents" function to plugin API - remove old log options in IRC plugin Bug fix: - marker line is set only when user switches buffer (not when a plugin force switch, like IRC plugin does when opening server or channel buffer) - backlog fixed (sometimes lines were not properly displayed)