summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-04Added new plugin "xfer" (used by irc plugin for DCC file and chat) (warning: ↵Sebastien Helleu
initial commit, not working yet)
2008-05-04Fixed bug with pv buffer name (this name was changed when someone changes ↵Sebastien Helleu
nick on server)
2008-05-02Fix compilation of xfer plugin on FreeBSDSebastien Helleu
2008-05-02Added CPACK options for cmake build, to build source or binary packageSebastien Helleu
Following cmake commands let you build packages: - "make package_source": build source package (that can be installed with cmake or autotools) - "make package": build binary package
2008-04-30Fixed typo in default command for page_up keySebastien Helleu
2008-04-30Fixed string explode (when there's only delimiters in string) (bug #23123)Sebastien Helleu
2008-04-30IRC colors reintroducedSebastien Helleu
2008-04-30Updated ChangeLogSebastien Helleu
2008-04-30Added comment in source for SIGHUP signalSebastien Helleu
2008-04-30Fixed crash with scripts when WeeChat calls functions of many scripts at ↵Sebastien Helleu
same time with callbacks (bug #23109)
2008-04-29Removed key functions (replaced by /input command)Sebastien Helleu
2008-04-29Added bar priority (replaces bar number)Sebastien Helleu
2008-04-29Added "current" option for infolist "window", to retrieve infolist for ↵Sebastien Helleu
current window
2008-04-28Send quit signal when terminal is lost (clean quit: disconnect from servers, ..)flashcode
2008-04-28Merge branch 'protocols' of ssh://git.sv.gnu.org/srv/git/weechat into protocolsSebastien Helleu
2008-04-28Added missing call to config hook when an option is "unset"Sebastien Helleu
2008-04-28Fixed infinite loop when closing terminal without using /quit command (bug ↵Sebastien Helleu
#23078)
2008-04-27Added marker line (or dotted line), more visible than single magenta char ↵Sebastien Helleu
(char is still possible)
2008-04-27Fixed nick display as prefix, use of nickmode and nickmode_empty settings againSebastien Helleu
2008-04-27New default keys for scroll_top/bottomSebastien Helleu
2008-04-25Fixed bug with print_y: now scripts can print empty line to remove a lineSebastien Helleu
2008-04-24Added completion with possible values for /set, new possible values "++n" ↵Sebastien Helleu
and "--n" for integers and colors
2008-04-24Fixed bug with bar auto-sizing in windowsSebastien Helleu
2008-04-24Added filling/color_fg/color_bg options for bars, added ↵Sebastien Helleu
config_get/config_get_plugin/config_set_plugin in script API
2008-04-23Added missing IRC headers files in cmake and automake targetsSebastien Helleu
2008-04-23Fixed perl plugin compilation with old gcc versionsSebastien Helleu
2008-04-22Added conditions for bar display and bar max sizeSebastien Helleu
2008-04-21Updated READMESebastien Helleu
2008-04-20Fixed broken completion on buffers where nicklist is not displayed (bug #23006)Sebastien Helleu
2008-04-20Updated READMESebastien Helleu
2008-04-20Fixed display bug with nicklist and option weechat.look.nicklistSebastien Helleu
2008-04-19Close all buffers created by a plugin when plugin is unloaded (bug #22978)Sebastien Helleu
2008-04-19Fixed bug with print_y in script APISebastien Helleu
2008-04-19Fixed output of names on channels (now it's sorted/grouped/colored, like ↵Sebastien Helleu
v0.2.6) (bug #22935), added "nicklist" infolist
2008-04-19Fixed bug with use of wrong command hooked (bug #22974)Sebastien Helleu
2008-04-18Replaced /builtin command by /command, and can now be used to launch ↵Sebastien Helleu
commands with same name from different plugins
2008-04-18Fixed /redraw aliasSebastien Helleu
2008-04-18Delete IRC server when last option for a server is deleted (with /unset)Sebastien Helleu
2008-04-18Added option name and value when option is changed with /set commandSebastien Helleu
2008-04-18Use of /window command for some key bindings with actions on current window ↵Sebastien Helleu
(like scroll, ..)
2008-04-17Added infolist "window", scroll in buffers with free content, fixed config ↵Sebastien Helleu
hooks (use of string_match)
2008-04-17Fixed refresh problem (empty screen after resizing terminal to very small ↵Sebastien Helleu
size, then normal size)
2008-04-17Fixed crash when nicklist is top/bottom and that we open a new buffer with a ↵Sebastien Helleu
nicklist
2008-04-17Fixed bug with IRC /query commandSebastien Helleu
2008-04-16Added "toggle" value for /set on boolean options, fixed refresh bugs, added ↵Sebastien Helleu
option type for infolist "options"
2008-04-16Fixed bug with display of nicklist scroll indicatorSebastien Helleu
2008-04-15Added keys by buffer (useful for buffers with free content that need own keys)Sebastien Helleu
These keys can be set thru API function "buffer_set", for example: weechat_buffer_set(my_buffer, "key_bind_meta2-A", "/mycommand up"); weechat_buffer_set(my_buffer, "key_bind_meta2-B", "/mycommand down"); weechat_buffer_set(my_buffer, "key_unbind_meta2-B", ""); weechat_buffer_set(my_buffer, "key_unbind_*", ""); These keys are volatile and not saved in any config file. So they must be set when buffer is open.
2008-04-15Fixed bug with alias, use current buffer to run commands (bug #22876)Sebastien Helleu
2008-04-15New format for [bar] section in weechat.conf file, bar options can be set ↵Sebastien Helleu
with /set command
2008-04-14Use of "string_explode" to send many messages to IRC serverSebastien Helleu