summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-03-25Add signals "nicklist_{group|nick}_{added|removed}", remove signal ↵Sebastien Helleu
"nicklist_changed" Data for new signals is a string with format: "buffer,name", where: - buffer is a pointer, for example 0x123456 - name is group or nick name added/removed from nicklist on this buffer.
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 crash on /upgrade if there are some nicks in a nicklist without prefix ↵Sebastien Helleu
or prefix_color defined
2010-03-24Fix bug with nicklist prefix in log fileSebastien Helleu
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-23Fix alignment of keys in output of /key when some keys contain wide charsSebastien Helleu
2010-03-23Remove WeeChat sloganSebastien Helleu
2010-03-23Add note about /unalias in /help aliasSebastien Helleu
2010-03-23Reformat examples in help of some commandsSebastien Helleu
2010-03-22Fix typos in /help window and /help loggerSebastien Helleu
2010-03-22Add list of tags in /help filterSebastien Helleu
2010-03-22Add new option weechat.color.nicklist_offlineSebastien Helleu
2010-03-22Remove obsolete option weechat.color.nicklist_moreSebastien 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 missing refresh of bar item "buffer_number" when a buffer is closedSebastien 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-21Use buffer local variable "nick" for default item "input_prompt"Sebastien Helleu
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-19Fix bugs with function hook_command_runSebastien Helleu
A '/' is always sent at beginning of command to callback, even if user used another command char. Now it is possible to catch a command, with or without arguments, with hook_command_run("/command").
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-04Fix display in bars with filling horizontalSebastien Helleu
2010-03-04Fix display in bars with filling set to columns_vertical or columns_horizontalSebastien Helleu
2010-03-04Hide read marker if all lines after marker are filtered (only if option ↵Sebastien Helleu
read_marker_always_show is off)
2010-03-04Fix bugs with cursor and background in barsSebastien Helleu
Bugs fixed: - cursor was moving to position (0,0) in bar when refreshing input bar content - background color stopped before end of line in bars with vertical filling (like buffers) - cursor was not displayed when input bar has automatic size and that first line is filled (on some terminals like konsole or roxterm)
2010-03-03Set option weechat.look.read_marker_always_show to off by defaultSebastien Helleu
2010-03-03Add new option weechat.look.read_marker_always_showSebastien Helleu
2010-03-03Free IRC raw messages when irc plugin is unloadedSebastien Helleu
2010-03-03Fix completion bug for commands when input starts with two command chars ↵Sebastien Helleu
(like //)
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-24Fix display of color in input when it is scrolledSebastien Helleu
2010-02-24Fix bug with cursor when position is last char of terminalSebastien Helleu