summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
2015-08-18api: add argument "length" in function utf8_is_valid()Sébastien Helleu
2015-07-26core: factorize functions to search text in windowSébastien Helleu
2015-07-26Merge remote-tracking branch 'origin/pr/393'Sébastien Helleu
2015-07-26core: add option weechat.look.key_grab_delay to set the default delay when ↵Sébastien Helleu
grabbing a key with alt-k
2015-07-25core: flush stdout/stderr after sending text directly on them (fix corrupted ↵Sébastien Helleu
data sent to hook_process() callback) (closes #442)
2015-07-25core: allow execution of command "/input return" on a buffer which is not ↵Sébastien Helleu
displayed in a window
2015-07-24core: allow jump from current to previous buffer with default keys "alt-j NN"Simmo Saan
2015-07-18core: fix crash if a file descriptor used in hook_fd() is too high (> 1024 ↵Sébastien Helleu
on Linux/BSD) (closes #465) The calls to select() are replaced by poll(), which doesn't have limitation on file descriptor number.
2015-07-05core: fix type of value returned by function gui_bar_window_content_getSébastien Helleu
2015-07-04core: fix type of value returned by function gui_mouse_grab_event2inputSébastien Helleu
2015-07-04core: fix type of value returned by functions gui_chat_string_next_char, ↵Sébastien Helleu
gui_chat_string_add_offset and gui_chat_string_add_offset_screen
2015-07-04api: fix type of value returned by functions utf8_prev_char, utf8_next_char ↵Sébastien Helleu
and utf8_add_offset
2015-07-04core: add missing comments before functions when the result must be freed ↵Sébastien Helleu
after use
2015-07-03api: fix type of value returned by function strcasestrSébastien Helleu
2015-06-28core: allow ctrl-C to exit WeeChat when the passphrase is asked on startup ↵Sébastien Helleu
(closes #452)
2015-06-27core: fix display of invalid UTF-8 chars in bars (issue #218)Sébastien Helleu
2015-06-22core: fix bar item "scroll" after /buffer clear (closes #448)Sébastien Helleu
2015-06-14core: fix display of time in bare display when option ↵Sébastien Helleu
weechat.look.buffer_time_format is set to empty string (closes #441) This reverts commit 2498ff63dba0ad3880fc3dadcac6b36f047ac0e2.
2015-05-01core: fix compilation on CygwinSébastien Helleu
The header sys/select.h is now required for select() function.
2015-04-30core: add comments after some #endifSébastien Helleu
2015-04-26core: remove extra spaces in function gui_bar_item_default_mouse_statusSébastien Helleu
2015-04-26core: add support of full color option name in command /eval and API ↵Sébastien Helleu
function string_eval_expression()
2015-04-26api: add support of full color option name in function color()Sébastien Helleu
2015-04-25core: display the welcome message immediately after the startup message, ↵Sébastien Helleu
move source code to weechat.c
2015-04-19core: add options weechat.look.quote_{nick_prefix|nick_suffix|time_format} ↵Sébastien Helleu
to customize quoted messages in cursor mode (closes #403)
2015-04-19api: add "_chat_line" (line pointer) in hashtable of hook_focusSébastien Helleu
2015-04-17core: add a welcome message on first WeeChat run (closes #318)Sébastien Helleu
2015-04-12core: add more intuitive buffer searching (closes #76)Simmo Saan
2015-04-11core: add options weechat.look.word_chars_{highlight|input} (closes #55, ↵Sébastien Helleu
task #9459)
2015-03-08core: update comments on default keysSébastien Helleu
2015-01-24core: fix random error when creating symbolic link weechat-curses on make ↵Sébastien Helleu
install with cmake (bug #40313)
2015-01-23core: fix crash when a root bar has conditions different from ↵Sébastien Helleu
active/inactive/nicklist (closes #317)
2015-01-03core: fix NULL pointer in free of bar window (closes #293); add extra checks ↵Sébastien Helleu
on bar window pointers
2015-01-01core: update copyright datesSébastien Helleu
2014-12-28core: check bar conditions in root bars and on each update of a bar itemSébastien Helleu
2014-12-20core: fully evaluate commands bound to keys in cursor and mouse contextsSébastien Helleu
2014-11-22api: return value in function command(), remove WeeChat error after command ↵Sébastien Helleu
callback if return code is WEECHAT_RC_ERROR
2014-11-16core: fix display bug when scrolling in buffer on a filtered line (closes #240)Sébastien Helleu
2014-11-09core: add option weechat.completion.command_inline (task #12491)Sébastien Helleu
2014-11-06core: add bar item "mouse_status", new options ↵Nils Görs
weechat.look.item_mouse_status and weechat.color.status_mouse
2014-11-01core: add signals "mouse_enabled" and "mouse_disabled" (closes #244)Sébastien Helleu
2014-11-01core: fix buffer property "lines_hidden" when merging buffers or when a line ↵Sébastien Helleu
is removed from a buffer (closes #226)
2014-10-22core: display time in bare display only if option ↵Sébastien Helleu
weechat.look.buffer_time_format is not an empty string
2014-10-16core: fix memory leak in completionSébastien Helleu
2014-10-05Merge branch 'arraylist'Sébastien Helleu
2014-09-28core: move bar item "scroll" between buffer name and lag in default bar ↵Sébastien Helleu
items of status bar
2014-09-24core: fix crash on buffer close when option weechat.look.hotlist_remove is ↵Sébastien Helleu
set to "merged" (closes #199)
2014-09-21core: fix highlight of IRC action messages when option irc.look.nick_mode is ↵Sébastien Helleu
set to "action" or "both" (closes #206)
2014-09-01core: use a sorted arraylist for partial completionsSébastien Helleu
With a sorted list, the partial completion is about 50x faster (like other completions).
2014-09-01core: optimize completion by using arraylistsSébastien Helleu
With arraylist (vs weelist), the completion is about 50x faster. It is visible on "/help [+tab]".