summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-11-12Fix dcc chat buffer name in xfer plugin (use irc server in name) (bug #29925)Sebastien Helleu
2010-11-12Remove obsolete comments in xfer pluginSebastien Helleu
2010-11-12Fix bug with priority (low/high) for irc messages (all messages were sent ↵Sebastien Helleu
with low priority)
2010-11-12Fix upgrade of relay clients in state "disconnected" (do not create any hook ↵Sebastien Helleu
after /upgrade)
2010-11-12Fix color of buffer name in status bar after /upgrade for IRC servers ↵Sebastien Helleu
connected with SSL
2010-11-12Set tag "notify_message" for messages sent to IRC channelsSebastien Helleu
2010-11-10Fix dcc file transfer for large files (more than 4 GB) on 32-bit systems ↵Sebastien Helleu
(bug #31531) This commit fixes another bug when file is sent: sometimes transfer was still active although file was successfully sent.
2010-11-10Use type "unsigned long long" for API function string_format_sizeSebastien Helleu
2010-11-10Remove debug print of irc redirects in log fileSebastien Helleu
2010-11-10Fix bug with /upgrade on ssl servers with prefix modes and charsSebastien Helleu
The value of isupport, prefix_modes and prefix_chars in irc server are now removed on connection, not on disconnection.
2010-11-10Search nicklist group without leading digits in irc pluginSebastien Helleu
2010-11-10Allow search of nicklist group with name not including leading digits (for ↵Sebastien Helleu
nicklist sort)
2010-11-10Fix zero byte malloc when joining a channel without nickSebastien Helleu
2010-11-10Fix crash when displaying groups in buffer nicklistSebastien Helleu
2010-11-09Add note about "%h" replaced by WeeChat home in some optionsSebastien Helleu
2010-11-09Fix irc topic completion in command /topic when channel topic starts with ↵Sebastien Helleu
channel name
2010-11-09Complete with alias value for second argument of command /aliasSebastien Helleu
2010-11-09Add function "hook_completion_get_string" in plugin APISebastien Helleu
2010-11-09Move WeeChat core completions from gui-completion.c to wee-completion.cSebastien Helleu
2010-11-08Update buffer local variables when irc server is renamedSebastien Helleu
2010-11-08Add info "python2_bin" (path to python 2.x interpreter) in Python pluginSebastien Helleu
2010-11-07Fix typo in help of options irc.look.notify_tags_ison and ↵Sebastien Helleu
irc.look.notify_tags_whois
2010-11-06Move examples at the end of /help loggerSebastien Helleu
2010-11-06Add IRC command /notify, new options for notify and infolist "irc_notify" ↵Sebastien Helleu
(task #5441) This commit provides: - new IRC command /notify - new options: irc.look.notify_tags_ison, irc.look.notify_tags_whois, irc.network.notify_check_ison, irc.network.notify_check_whois - new option "notify" in servers (but should not be changed, only /notify command should be used) - infolist "irc_notify" to get notify list (by server or for all servers).
2010-11-05Set highlight flag on line printed if there is tag "notify_highlight"Sebastien Helleu
2010-11-01Write ignore list in debug file when dumping irc dataSebastien Helleu
2010-11-01Use constant WEECHAT_RC_OK instead of 0 in function command_reload_fileSebastien Helleu
2010-10-31Remove dead assignmentsSebastien Helleu
2010-10-31Add 2 "return" to make C static analyzer happySebastien Helleu
2010-10-31Remove test on pointer which can't be NULLSebastien Helleu
2010-10-31Add extra checks on some pointersSebastien Helleu
2010-10-31Remove function gui_input_moveSebastien Helleu
2010-10-31Replace unneeded function gui_input_move by memmoveSebastien Helleu
2010-10-31Check that buffer pointer is not NULL in upgrade_file_read_bufferSebastien Helleu
2010-10-31Remove unused variablesSebastien Helleu
2010-10-31Remove unneeded assignments in ruby and lua API functionsSebastien Helleu
2010-10-30Fix bug with default value in config option infolistSebastien Helleu
2010-10-30Fix target buffer used to display IRC message 327 (whois, host)Sebastien Helleu
2010-10-30Fix crash when unloading lua scriptSebastien Helleu
2010-10-29Add new option irc.look.nick_color_forceSebastien Helleu
2010-10-29Return empty string in API function weechat_color when color is unknownSebastien Helleu
2010-10-29Use function nicklist_nick_set to change nick color (instead of ↵Sebastien Helleu
removing/adding nick in nicklist)
2010-10-29Add new functions in plugin API to get/set nicks/groups properties in nicklistSebastien Helleu
8 new functions added: - nicklist_group_get_integer - nicklist_group_get_string - nicklist_group_get_pointer - nicklist_group_set - nicklist_nick_get_integer - nicklist_nick_get_string - nicklist_nick_get_pointer - nicklist_nick_set
2010-10-29Fix display of nick in nicklist when groups are displayed and nick has ↵Sebastien Helleu
"visible" to 0
2010-10-28Add refresh when buffer property "nicklist_display_groups" is changedSebastien Helleu
2010-10-28Fix bug when counting number of groups/nicks displayed in nicklistSebastien Helleu
2010-10-28Improve IRC nick prefixes, all modes (even unknown) are used with PREFIX ↵Sebastien Helleu
value from message 005
2010-10-25Use IRC command arguments instead of full message for IRC redirection (when ↵Sebastien Helleu
searching "string" in message)
2010-10-23Fix default value of bar items options (bug #31422)Sebastien Helleu
2010-10-23Add IRC command redirection (task #6703)Sebastien Helleu