summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-03-06Fix callbacks in script plugins: always return empty string instead of NULL ↵Sebastien Helleu
for arguments
2009-03-06Add new hook type "process": launch command with fork and catch result ↵Sebastien Helleu
(rc/stdout/stderr) via callback
2009-03-05Fix scroll indicator when the only line displayed is bigger than chat windowSebastien Helleu
2009-03-02Fix bug with detection of channel name in command /modeSebastien Helleu
2009-03-02Make channel optional in IRC command /mode (bug #25735)Sebastien Helleu
2009-03-01Fix crash with IRC commands msg/notice/query/quote when executed with too ↵Sebastien Helleu
few arguments (bug #25739)
2009-03-01Fix IRC command /who (nothing was displayed if WeeChat already checked ↵Sebastien Helleu
channel for away nicks) (bug #25736)
2009-03-01Update FAQ (new format for website and some updates/additions)Sebastien Helleu
2009-02-28Add missing refresh when resizing terminalSebastien Helleu
2009-02-28Fix freeze/crash when sigwinch signal is received during refresh (for ↵Sebastien Helleu
example if repaint is done during terminal resize)
2009-02-27Remove old debug message when creating new windowSebastien Helleu
2009-02-27Add missing refreshs when creating/deleting barsSebastien Helleu
2009-02-26Fix "/window refresh" (key ctrl+L): force curses refresh (was broken by ↵Sebastien Helleu
previous commit for terminal resize)
2009-02-26Display explicit message when irc command must be executed on irc buffer or ↵Sebastien Helleu
connected server
2009-02-25Add option "irc.look.topic_strip_colors" to strip topic colors in buffer's ↵Sebastien Helleu
title bar (task #6030)
2009-02-25Fix bug with reset of topic for irc channel / jabber mucSebastien Helleu
2009-02-25Send buffer pointer with signal "buffer_title_changed"Sebastien Helleu
2009-02-25Fix with read marker, can not be filtered any more (bug #25590)Sebastien Helleu
2009-02-25Fix bug with terminal resize: on some systems, weechat failed to read new ↵Sebastien Helleu
terminal size
2009-02-25Update debian build dependency for tcl-dev packageSebastien Helleu
2009-02-24Fix option irc.network.send_unknown_commands: allow unknown commands on irc ↵Sebastien Helleu
server buffers (bug #25557)
2009-02-24Improved search of buffer with partial name (command "/buffer name")Sebastien Helleu
2009-02-23Test return code of some malloc/strdupSebastien Helleu
2009-02-23Fix irc excess flood caused by mode command sent when a mode is received: ↵Sebastien Helleu
send mode only when channel modes are updated (bug #25651)
2009-02-22Add missing option "toggle" in /help barSebastien Helleu
2009-02-22Add upgrade functions in script plugin APISebastien Helleu
2009-02-22Add missing functions in script plugin API to get default values of optionsSebastien Helleu
2009-02-21Add missing config functions in script plugin API to free sections and optionsSebastien Helleu
2009-02-21Add signals when local variables or buffer type are changedSebastien Helleu
2009-02-21Fix bug with buffer name/short_name when IRC query name has changed (remote ↵Sebastien Helleu
nick has changed) (bug #25654)
2009-02-20Fix crash in python plugin when calling function prnt_date_tags()Sebastien Helleu
2009-02-20Fix some return codes of callbacks in script pluginsSebastien Helleu
2009-02-20Add return code value for config_read callback in script pluginsSebastien Helleu
2009-02-20Fix bug with smart completion (irc/jabber): keep unique nicks in list of ↵Sebastien Helleu
last speakers (bug #25559)
2009-02-20Fix crash in python plugin when callbacks are called during script ↵Sebastien Helleu
initialization
2009-02-19Fix bug with current script pointer when current script is unloadedSebastien Helleu
2009-02-19Fix bug with arguments of config_read callback in script pluginsSebastien Helleu
2009-02-19Fix bug in config_file_write_line with empty value, when called from script ↵Sebastien Helleu
plugins
2009-02-18Display clock skew detection only if debug for core is >= 1Sebastien Helleu
2009-02-18Give file descriptor to callback of hook_fdSebastien Helleu
2009-02-17Add new local variable "type" for buffersSebastien Helleu
Values are set by plugins: - irc and jabber: "server", "channel", "private", "debug" - relay: "relay" (list) - xfer: "xfer" (list), "private" (DCC chat)
2009-02-17Use string instead of char for prefixes in nicklistSebastien Helleu
2009-02-17Free all proxies before exitingSebastien Helleu
2009-02-11Fix typo in FAQSebastien Helleu
2009-02-11Fix build of IRC CTCP message (bug #25560)Sebastien Helleu
2009-02-11Add irc and jabber options to display nick modes in input_prompt bar itemSebastien Helleu
2009-02-11Add missing IRC command 330 (whois, logged in as)Sebastien Helleu
2009-02-10Add missing refresh for windows separators (vertical splits)Sebastien Helleu
2009-02-10Authorize IRC commands msg/notice/query/quote outside IRC buffers if option ↵Sebastien Helleu
"-server" is given
2009-02-10Add option "-server" to IRC commands: msg, notice, query, quoteSebastien Helleu