summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-05-01Move option irc.color.item_buffer_name_ssl to core (new name: ↵Sebastien Helleu
weechat.color.status_name_ssl)
2010-05-01Fix crash with hook_process (when timer is called on a deleted hook process)Sebastien Helleu
2010-04-28Add keys for undo/redo changes on command line (default: ctrl/alt + ↵Sebastien Helleu
underscore) (task #9483)
2010-04-21Add new options irc.network.autoreconnect_delay_growing and ↵Sebastien Helleu
irc.network.autoreconnect_delay_max (task #10338)
2010-04-20Add new option irc.color.item_buffer_name_ssl (task #10339)Sebastien Helleu
2010-04-20Try other nick when connecting to IRC server and receiving message 437 (nick ↵Sebastien Helleu
unavailable)
2010-04-20Set buffer local variable "away" when opening new IRC channel (bug #29618)Sebastien Helleu
2010-04-18Replace "joker" by "wildcard"Sebastien Helleu
2010-04-14Remove unused variableSebastien Helleu
2010-04-14Fix crash on /quit when scrolling in buffer and if first line displayed was ↵Sebastien Helleu
from a plugin
2010-04-13Fix bug with perl script filename when multiplicity is disabled (bug #29530)Sebastien Helleu
2010-04-12Fix display of perl errors (use tab to force empty prefix on message)Sebastien Helleu
2010-04-12Fix crash on /quit or unload of Perl plugin under FreeBSD and Cygwin (bug ↵Sebastien Helleu
#29467)
2010-04-12Fix bug with writing of configuration files under CygwinSebastien Helleu
2010-04-10Use tag "no_highlight" for CTCP repliesSebastien Helleu
2010-04-09Define WeeChat license as macro for C compiler, used in plugins to set licenseSebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-04-08Add buffer pointer as string in modifier_data for modifier "history_add"Sebastien Helleu
2010-04-08Add modifier "history_add" (text added to buffer or global history)Sebastien Helleu
2010-04-08Define list of default aliases as an arraySebastien Helleu
2010-04-06Fix comment in wee-config-file.cSebastien Helleu
2010-04-05Use tag "no_highlight" for backlog lines printed by logger pluginSebastien Helleu
2010-04-05Add missing properties "highlight_words_add" and "highlight_words_del" in ↵Sebastien Helleu
array gui_buffer_properties_set
2010-04-05Add option "-open" for IRC command /connectSebastien Helleu
2010-04-03Fix display of empty nicklist in IRC private buffersSebastien Helleu
2010-04-03Add highlight word "$nick" instead of real nick in IRC and xfer pluginsSebastien Helleu
2010-04-03Add or remove highlight words in a buffer with "highlight_words_add" and ↵Sebastien Helleu
"highlight_words_del" (for buffer_set)
2010-04-03Allow buffer local variables in highlight words (option ↵Sebastien Helleu
"weechat.look.highlight" and buffer property "highlight_words") For example "$nick" with highlight a message printed if it contains content of local variable "nick" for buffer.
2010-04-03Change buffer properties only when buffer is created by IRC plugin (channels ↵Sebastien Helleu
and raw buffer), do not change them after /upgrade
2010-04-03Add option "get" for command /buffer, add completions with buffer propertiesSebastien Helleu
2010-03-31Fix help of option weechat.plugin.autoloadSebastien Helleu
2010-03-31Improve plugins autoload (option weechat.plugin.autoload): allow to use "*" ↵Sebastien Helleu
as joker and "!" to prevent a plugin from being autoloaded (task #6361) Some examples for option weechat.plugin.autoload: - load all plugins (default): "*" - load only alias, charset, irc and logger: "alias,charset,irc,logger" - load all plugins but not lua and tcl: "*,!lua,!tcl" - load all plugins but not perl and python: "*,!p*" (not recommended because new future plugins may begin with "p") - do not load any plugin (weechat core alone is not really useful eheh): "!*"
2010-03-30Add missing variables in debug dumpSebastien Helleu
2010-03-30Fix bug with IRC nicks on reconnection: try all nicks in list, even if nick ↵Sebastien Helleu
used was not the first in list of nicks
2010-03-29Fix display of message 333 (channel topic) when there is no host but only nickSebastien Helleu
2010-03-29Fix IRC command /list: send channel and server name given as argument, and ↵Sebastien Helleu
use separate option "-re" to allow a regex
2010-03-29Free some extra memory when exiting WeeChatSebastien Helleu
2010-03-29Fix infinite loop with /layout apply and bug when applying layout, sometimes ↵Sebastien Helleu
many /layout apply were needed (bug #26110)
2010-03-29Fix check of IRC ignore when channel is specified in ignore (problem with ↵Sebastien Helleu
PRIVMSG queries)
2010-03-26Add new option irc.look.part_closes_buffer to close buffer when /part is ↵Sebastien Helleu
issued on channel (task #10295)
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 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