summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2010-03-26Fix compilation of irc plugin with old gcc (remove #ifdef inside call of macro)Sebastien Helleu
Compilation failed with gcc 3.2.3.
2010-03-26Fix bug with writing of configuration files when disk is full (bug #29331)Sebastien Helleu
2010-03-25Add "irc_is_nick" for function info_get to check if a string is a valid IRC ↵Sebastien Helleu
nick name (patch #7133)
2010-03-24Add new options for command /key (listdefault, listdiff and reset), add ↵Sebastien Helleu
examples in /help key Note: old option "reset" for /key has been renamed to "resetall".
2010-03-24Fix bug with callbacks when loading a script already loadedSebastien Helleu
2010-03-23Add examples in /help dcc, update german translationsSebastien Helleu
2010-03-23Add note about /unalias in /help aliasSebastien Helleu
2010-03-22Fix typos in /help window and /help loggerSebastien Helleu
2010-03-21Remove IRC commands /forcejoin and /omode (now possible with alias and ↵Sebastien Helleu
custom completion) It is now possible to add such commands with aliases: /alias -completion %%sajoin forcejoin /quote forcejoin /alias -completion %%samode omode /quote omode
2010-03-21Fix typo in /help aliasSebastien Helleu
2010-03-21Add custom completion for aliases (task #9479)Sebastien Helleu
2010-03-21Add new signals "irc_raw_in" and "irc_raw_in2" (sent for all IRC messages, ↵Sebastien Helleu
even if ignored with /ignore)
2010-03-20Add IRC commands /omode and /forcejoin (patch #7126)Sebastien Helleu
2010-03-20Refresh screen when exiting WeeChat (to display messages printed after /quit)Sebastien Helleu
2010-03-20Add functions string_match, string_has_highlight and string_mask_to_regex in ↵Sebastien Helleu
script plugin API
2010-03-19Reformat multi-line commentsSebastien Helleu
2010-03-19Move /away command from irc plugin to coreSebastien Helleu
2010-03-17Fix bugs with xfer buffer after /upgradeSebastien Helleu
2010-03-17Do not send signals "irc_in" and "irc_in2" when IRC messages are ignoredSebastien Helleu
2010-03-14Fix display of host in IRC message 333 (channel topic)Sebastien Helleu
2010-03-11Display IRC command 324 (channel modes) on server buffer if channel is not openSebastien Helleu
2010-03-09Add missing initialization of variable in function irc_sasl_mechanism_plainSebastien Helleu
2010-03-08Fix color of away nicks in nicklist when doing /names (nick color was reset ↵Sebastien Helleu
to default color)
2010-03-08Return absolute path for info_get of "weechat_dir" (bug #27936)Sebastien Helleu
2010-03-07Fix extraction and check of IRC prefixSebastien Helleu
2010-03-07Bug with IRC prefix "!" for mode "a" (channel admin) (bug #29109)Sebastien Helleu
2010-03-03Free IRC raw messages when irc plugin is unloadedSebastien Helleu
2010-03-02Fix bug with /away -all in IRC plugin: set or unset future away for ↵Sebastien Helleu
disconnected servers (bug #29022)
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-27Fix crash in Perl plugin when callbacks are called during script ↵Sebastien Helleu
initialization (bug #29018)
2010-02-26Add command line option "-s" (or "--no-script") to start WeeChat without ↵Sebastien Helleu
loading any script
2010-02-23Allow script commands to reload only one scriptSebastien Helleu
2010-02-20Allow input "q" to close IRC raw bufferSebastien Helleu
2010-02-20Remove connection timer when closing connection with IRC serverSebastien Helleu
2010-02-19Add option irc.network.connection_timeout (timeout between TCP connection to ↵Sebastien Helleu
server and reception of message 001)
2010-02-18Add mechanism DH-BLOWFISH for SASL authentication with IRC serverSebastien Helleu
2010-02-18Fix function "color" in Lua script API (patch from Christian Heinz)Sebastien Helleu
2010-02-16Add IRC commands 905 to 907 (for SASL)Sebastien Helleu
2010-02-16Add function "string_decode_base64" in plugin APISebastien Helleu
2010-02-15Add SASL authentication in IRC plugin (task #8829), add function ↵Sebastien Helleu
"string_encode_base64" in plugin API, fix bug with base64 encoding New options for IRC servers: - sasl_mechanism (only "plain" for now) - sasl_username - sasl_password
2010-02-13Fix color of word "Notice" when sending IRC noticeSebastien Helleu
2010-02-12Add description of arguments for API functions hook_info and hook_infolistSebastien Helleu
2010-02-12Use arguments for infolist "nicklist" to return only one nick or groupSebastien Helleu
Format is: nick_xxx or group_xxx to return only nick/group called "xxx".
2010-02-11Allow IRC message 301 to be redirected with irc.msgbuffer featureSebastien Helleu
2010-02-11Add missing IRC commands 276, 343Sebastien Helleu
2010-02-10Fix nick color in quit message displayed in IRC private buffer (when remote ↵Sebastien Helleu
nick did not speak)
2010-02-10Apply IRC smart filter only on channels, not private buffers (bug #28841)Sebastien Helleu
2010-02-10Add "version_number" for API function weechat_info_get to get WeeChat ↵Sebastien Helleu
version as number
2010-02-09Add new option weechat.look.time_format to customize default format for ↵Sebastien Helleu
date/time displayed (localized date by default), add function weechat_util_get_time_string in plugin API (patch #6914)
2010-02-06Display nick prefix in input_prompt only if channel is type "channel" (not ↵Sebastien Helleu
private)