summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
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
2014-07-20core: fix link errors with ncurses librarySébastien Helleu
2014-07-14core: do not exit WeeChat in weechat_end() (let the caller do that)Sébastien Helleu
This is needed for automated tests, to exit with return code of tests.
2014-07-14core: move main() function into Curses GUISébastien Helleu
2014-07-14core: send signal key_combo_xxx even for unknown combosSébastien Helleu
2014-07-14core: hide message timestamp in bare display if timestamp is disabled in ↵Sébastien Helleu
buffer (closes #129)
2014-07-12core: add option weechat.color.status_nicklist_count (closes #109, closes #110)Sébastien Helleu
2014-06-07core: fix color display of last color number + 1 (closes #101)Sébastien Helleu
2014-06-06core: add option weechat.look.hotlist_remove (closes #99)Sébastien Helleu
2014-05-24relay: fix crash when closing relay buffers (closes #57, closes #78)Sébastien Helleu
A flag "closing" has been added in buffers. It is set to 1 when the buffer is closing, and then no more printf is allowed in the buffer (a message printed on relay buffer was causing a crash when it is closed).
2014-05-24api: add argument "flags" in function hdata_new_listSébastien Helleu
2014-05-22core: fix reset of attributes between nick colors in /color bufferSébastien Helleu
2014-05-18core: fix display of item buffer_short_name when the short name is not ↵Sébastien Helleu
defined in buffer
2014-05-16core: add bar item "buffer_short_name" (task #10882)Sébastien Helleu
2014-05-08core: add parentheses around tests in conditionsSébastien Helleu
2014-05-07core: add support for negated tags in filters (closes #72)stfn
2014-05-04core: change default key for bare display from alt-'!' to alt-'l'Sébastien Helleu
2014-04-12core: use lower case for CMake keywordsSébastien Helleu
2014-04-05core: add option -all for command /buffer hide|unhideSébastien Helleu
2014-04-05core: add hidden buffers, add options hide/unhide in command /bufferSébastien Helleu
2014-04-04core: add a message about key alt-c in /color bufferSébastien Helleu
2014-04-03core: add "hotlist" in completion of command "/buffer set"Sébastien Helleu
2014-04-03api: allow value "-1" for property "hotlist" in function buffer_set (to ↵Sébastien Helleu
remove a buffer from hotlist)
2014-04-02core: use an integer for seconds in command /window bare <delay>Sébastien Helleu
2014-04-01core: add default key alt-'-' to toggle filters in current buffer (closes #17)Sébastien Helleu
2014-03-31core: don't remove a buffer from hotlist if it's not visible (another merged ↵Sébastien Helleu
buffer is zoomed)
2014-03-31core: add non-active merged buffers with activity in hotlist (if another ↵Sébastien Helleu
merged buffer is zoomed) (task #12845) There was a bug with "num_displayed" in buffers when they are merged and that one buffer is zoomed: now the num_displayed is > 0 for the active buffer, and it is set to 0 for all merged non-active buffers (only in case of zoom). A variable "zoomed" has been added in buffers to know if a buffer with this number is zoomed or not (possibly another buffer).
2014-03-31core: fix refresh of bar item "buffer_zoom" on buffer switchSébastien Helleu
2014-03-30core: use seconds as float number for delay in command /window bare <delay>Sébastien Helleu
2014-03-30core: fix reset of attributes in bars when "resetcolor" is used (closes #41)Sebastien Helleu
2014-03-29core: fix alignment of lines in merged buffers (closes #43)Sebastien Helleu
The bug happened when options weechat.look.prefix_align and weechat.look.prefix_buffer_align are set to "none".
2014-03-29core: quit WeeChat on signal SIGHUP, remove signal "signal_sighup"Sebastien Helleu