summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
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]".
2014-08-31core: change comment about linker and circular references problems with ↵Sébastien Helleu
static libs
2014-08-29core: remove some spacesSébastien Helleu
2014-08-23core: add a constant for color buffer nameSébastien Helleu
2014-08-23core: allow incomplete commands if unambiguous (task #5419)Sébastien Helleu
2014-08-19core: fix modifier "weechat_print": discard only one line when several lines ↵Sébastien Helleu
are displayed in same message (closes #171) When several lines are displayed in a message (separated by "\n"), the modifier "weechat_print" will now discard just one line (if return value is an empty string), instead of discarding the whole message.
2014-08-10core: remove dead assignment when converting mouse codeSébastien Helleu
2014-08-10core: return immediately if localtime fails in window scrollSébastien Helleu
2014-08-03core: fix display of bar item "buffer_filter" when toggling filters in ↵Sébastien Helleu
current buffer (closes #150)
2014-07-21core: fix insert of mouse code in input line after a partial key combo ↵Sébastien Helleu
(closes #130)
2014-07-20core: remove whitespace in cmake filesSébastien Helleu
2014-07-20core: fix build with autotools (add main.c)Sébastien Helleu