summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2009-04-14Fix bug with upgrade and irc raw buffer, save irc raw messages during upgradeSebastien Helleu
2009-04-14Fix crash when reloading perl plugin (bug #25464)Sebastien Helleu
2009-04-14Add missing API functions in doc (infolists and upgrade), move infos and ↵Sebastien Helleu
infolists from user guide to developer guide
2009-04-11Add utf8_charcmp in plugin API, fix bug with utf8_charcasecmpSebastien Helleu
2009-04-11Fix /me command (irc plugin): allow command without argumentSebastien Helleu
2009-04-11Add support of many templates for completion of command arguments, rename ↵Sebastien Helleu
default completion items
2009-04-07Some improvements on key bindingsSebastien Helleu
List of changes: - do not automatically create default keys if they do not exist, when reading weechat.conf (let user do that if needed) - add "/key missing": add missing keys using default keys (do not update or remove user keys), - key "meta-s" moved from irc/jabber plugins to core - improved output of /key (display number of keys)
2009-04-07Fix crash with IRC server switch (alt-s) when no server buffer is openedSebastien Helleu
2009-04-07Fix another aspell bug: don't consider '-' as a word delimiterSebastien Helleu
2009-04-07Fix aspell bug: don't consider apostrophe as a word delimiterSebastien Helleu
2009-04-05Fix script installationSebastien Helleu
2009-04-05Fix memory leak in script installSebastien Helleu
2009-04-05Add signals in script plugins to install and remove scriptsSebastien Helleu
2009-04-03Add new values for option irc.look.nick_completion_smart: off / speakers / ↵Sebastien Helleu
speakers_highlights
2009-04-03Fix bug with nick completion (too many nick completors were added to nick if ↵Sebastien Helleu
private was open with nick)
2009-04-03Fix broken time in backlog displayed by logger plugin: use DST for time ↵Sebastien Helleu
displayed in buffer (bug #26074)
2009-04-02Fix bug in alias: use current buffer to run commands (bug #22876)Sebastien Helleu
2009-04-01Fix crash when executing "/msg * something" on an IRC server bufferSebastien Helleu
2009-04-01Add default template completion (by default: nick or IRC channel)Sebastien Helleu
2009-03-30Fix crash in python plugin when there is recursion on exec or when a script ↵Sebastien Helleu
is unloaded by call to command() in other python script
2009-03-29Fix python error messageSebastien Helleu
2009-03-28Add cmake files in package built by autotoolsSebastien Helleu
2009-03-28Fix display of python errorsSebastien Helleu
2009-03-28Add infolists with list of scriptsSebastien Helleu
2009-03-27Fix SSL connection to some IRC servers using Diffie Hellman and small ↵Sebastien Helleu
exchange keys (bug #25996)
2009-03-26Add new bar item "away" (now displayed by default in input bar)Sebastien Helleu
2009-03-24Fix crash on FreeBSD: first unload last loaded pluginsSebastien Helleu
2009-03-23Add new IRC modifiers: irc_color_decode/irc_color_encode, add IRC color ↵Sebastien Helleu
support in xfer DCC chat (bug #25974)
2009-03-23Add nick completion in xfer dcc buffers, fix bug when opening xfer dcc ↵Sebastien Helleu
buffer if it already exists
2009-03-23Fix typo in irc-raw.c and jabber-debug.cSebastien Helleu
2009-03-23Set again buffer properties when using existing irc/jabber channel/pv bufferSebastien Helleu
2009-03-23Add completion with self nick in irc/jabber private buffersSebastien Helleu
2009-03-22Add default alias /v to "/command core version"Sebastien Helleu
2009-03-22Add option aspell.check.real_time (off by default), fix bugs with aspell and ↵Sebastien Helleu
utf-8 chars, add function utf8_char_int to API
2009-03-21Fix bug when closing IRC channel buffers (pointer to current server is lost)Sebastien Helleu
2009-03-21Add new command /version, add count of /upgrade, fix bugs with command execSebastien Helleu
New (core) command /version displays version, and number of upgrades done with first start date (if # /upgrade > 0). The number of upgrades is displayed at startup (if > 0).
2009-03-21Add new modifier "input_text_content"Sebastien Helleu
2009-03-19Add missing include of time.h in irc-raw.CSebastien Helleu
2009-03-19Fix bugs with color in IRC topicsSebastien Helleu
2009-03-19Many improvements on IRC raw bufferSebastien Helleu
New features: - key alt-j alt-r is reintroduced to open IRC raw buffer - command "/server raw" opens IRC raw buffer - new option irc.look.raw_messages, which is number of lines to keep in memory to display when user will open raw buffer (to see last messages received before opening raw buffer)
2009-03-18Replace WeeChat color codes by "?" in incoming IRC messages (bug #25862)Sebastien Helleu
2009-03-18Add "replacement" argument for string_remove_color in plugin APISebastien Helleu
2009-03-18Fix bug with IRC raw buffer and chars < 32, use of hexadecimal for such charsSebastien Helleu
2009-03-18Remove some messages during startup about scripts and plugins loadedSebastien Helleu
It is still possible to see messages by changing debug level for "core" or plugins (perl, python, ruby, lua, tcl).
2009-03-15Add new option irc.look.display_old_topic to display old topic when channel ↵Sebastien Helleu
topic is changed
2009-03-07Fix bug with text attribute in IRC messages: toggle attribute instead of ↵Sebastien Helleu
always forcing it to on (bug #25770)
2009-03-06Fix bug with namespace in tcl plugin (bug #25754)Sebastien Helleu
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-02Fix bug with detection of channel name in command /modeSebastien Helleu