summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-10-26ruby: remove useless call to Gem.latest_load_pathsDominik Honnef
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-10-26guile: new script plugin for scheme (task #7289)Sebastien Helleu
2011-10-26script plugins: use new macros to reduce code lengthSebastien Helleu
2011-10-25core: fix typo: childs -> childrenSebastien Helleu
2011-10-25core: fix compilation error with "pid_t" on Mac OS X (bug #34639)Sebastien Helleu
2011-10-23core: enable background process under Cygwin to connect to servers, fix ↵Sebastien Helleu
reconnection problem (bug #34626) The connection was not made with a fork() under Cygwin because the connect() in child process was not working. This seems to be fixed in latest Cygwin, so this hack has been removed and now a fork() is done for all systems.
2011-10-19core: fix freeze when calling function util_file_get_content with a ↵Sebastien Helleu
directory instead of a filename
2011-10-16irc: fix split of outgoing message when there are only spacesSebastien Helleu
This fix error "No text to send" when sending message with one space (the space was lost during split of string).
2011-10-16core: use value 2 of keep_eol in function string_split to keep separators at ↵Sebastien Helleu
end of string
2011-10-16core: fix status of mouse displayed by command /mouseSebastien Helleu
2011-10-15irc: fix uninitialized key_type in struct gnutls_retr2_st (for gnutls >= 2.11.0)Sebastien Helleu
This was causing connection problem with following messages: irc: TLS handshake failed irc: error: Insufficient credentials for that request.
2011-10-15core: add color attribute "|" and value "resetcolor" for function ↵Sebastien Helleu
weechat_color in plugin API (bug #34550)
2011-10-10core: uninstall docs and weechat-plugin.h on "make uninstall", fix ↵Sebastien Helleu
compilation of doc in standalone package
2011-10-09core: display timeout for hook_process command only if debug for core is ↵Sebastien Helleu
enabled (task #11401)
2011-10-07core: bufferize lines displayed before core buffer is created, to display ↵Sebastien Helleu
them in buffer when it is created
2011-10-05core: add modifiers control/alt ("ctrl" and "alt") for mouse eventsSebastien Helleu
2011-10-05core: ignore mouse code '@' (coordinates) when it is received as first event ↵Sebastien Helleu
(bug of urxvt sending only this code on shift-selection in terminal)
2011-10-04irc: fix display of items "away" and "lag" in root bars, refresh all irc bar ↵Sebastien Helleu
items on signal "buffer_switch" (bug #34466)
2011-10-03core: update text in command history when pressing (ctrl-)upSebastien Helleu
2011-10-03irc: fix crash on malformed irc notice received (without message after target)Sebastien Helleu
2011-10-02core: fix display of background color in chat area after line feedSebastien Helleu
2011-10-01core: add missing hook type "focus" in array "hook_type_string" (fix crash ↵Sebastien Helleu
when calling infolist_get with bad hook type)
2011-09-30core: fix memory leak when a window is destroyed (free coords)Sebastien Helleu
2011-09-30core: fix sentence in /help upgradeSebastien Helleu
2011-09-30irc: set host for nick on each nick change (if not already set)Sebastien Helleu
2011-09-30irc: display host in message "nick is back on server" (in private) only if ↵Sebastien Helleu
host is set for nick
2011-09-29irc: set host for nick on each channel message (if not already set)Sebastien Helleu
2011-09-28core: fix color of highlighted prefix on inactive window when option ↵Sebastien Helleu
weechat.look.color_inactive_prefix is off
2011-09-27irc: add missing messages for whois: 223, 264Sebastien Helleu
2011-09-27core: fix paste detection (problem with end of lines)Sebastien Helleu
2011-09-24core: update help of option weechat.look.color_basic_force_boldSebastien Helleu
2011-09-24core: fix color of inactive merged lines in inactive windows when ↵Sebastien Helleu
weechat.look.color_inactive_window is off
2011-09-24core: add new option weechat.look.color_basic_force_bold, off by default: ↵Sebastien Helleu
bold is used only if terminal has less than 16 colors (patch #7621)
2011-09-23core: change default value for option weechat.look.color_inactive_buffer to offSebastien Helleu
2011-09-23core: add default key "meta2-[E" (F5) for linux consoleSebastien Helleu
2011-09-23irc: remove compilation warning about function pointerSebastien Helleu
2011-09-22core: fix option weechat.look.color_inactive_messageSebastien Helleu
2011-09-22core: add options weechat.look.color_inactive_window/buffer, fix bugs with ↵Sebastien Helleu
inactive colors
2011-09-22core: rename options *_inactive_line to *_inactive_bufferSebastien Helleu
2011-09-22core: fix option weechat.look.color_inactive_prefix_bufferSebastien Helleu
2011-09-22core: fix display of paste multi-line prompt with a root input bar (bug #34305)Sebastien Helleu
2011-09-22core: fix refresh problem on other windows when options ↵Sebastien Helleu
weechat.look.color_inactive_* are changed
2011-09-22irc: use high priority queue for sending modes and wallchops messagesSebastien Helleu
2011-09-22core: remove compilation warnings about unused return values of functionsSebastien Helleu
2011-09-22irc: add missing aliases for some printed messages ("whois" for message ↵Sebastien Helleu
330/343, "invitelist" for message 346) These aliases are used to find target buffer to print message (options irc.msgbuffer.*)
2011-09-22core: add colors for inactive windows and lines (in merged buffers)Sebastien Helleu
New boolean options to control use of inactive colors: - weechat.look.color_inactive_message - weechat.look.color_inactive_prefix - weechat.look.color_inactive_prefix_buffer - weechat.look.color_inactive_time New "inactive" color options: - weechat.color.chat_inactive_line - weechat.color.chat_inactive_window - weechat.color.chat_prefix_buffer_inactive_line
2011-09-20core: add missing assignment of buffer pointer in line structureSebastien Helleu
2011-08-29irc: fix uninitialiazed variables in function irc_message_splitSebastien Helleu
2011-08-28irc: allow reason for command /disconnectSebastien Helleu