summaryrefslogtreecommitdiff
path: root/src/gui/curses
AgeCommit message (Collapse)Author
2013-08-02core: rename binary and man page from "weechat-curses" to "weechat" (task ↵Sebastien Helleu
#11027) A symbolic link weechat-curses -> weechat is now created (by both cmake and configure), so that the /upgrade will work from an old version. However, if you upgrade from an old version, it is recommended to force the use of the new binary name with the command: `/upgrade /path/to/weechat` (replace the path accordingly).
2013-07-31core: do not scroll when using /window {page_down|scroll_down} after /window ↵Sebastien Helleu
scroll_beyond_end
2013-07-31core: reset scroll after /window {page_down|scroll_down} if last line of ↵Sebastien Helleu
buffer is displayed at bottom A regression was introduced by commit bee56c3b7fa6ef0ce820a8f0a7e5e51b95aa3fab (/window scroll_beyond_end). Scenario to reproduce the problem, for example on an IRC channel with a long history (more than two pages): /window page_up /window page_down <type some text and send to channel> It will display -MORE(1)- instead of automatically scrolling to bottom of buffer.
2013-07-30core: use variable "items_count" directly from hashtable without calling ↵Sebastien Helleu
function hashtable_get_integer
2013-07-27core: add option "-o" for command /colorSebastien Helleu
2013-07-27core: add secured data with optional encryption in file sec.confSebastien Helleu
2013-07-22core: remove gap after read marker line when there is no bar on the right ↵Sebastien Helleu
(bug #39548)
2013-07-20Merge branch 'scroll-beyond-end'Sebastien Helleu
2013-07-20core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.amSebastien Helleu
2013-07-18core: fix filtered line displayed after /window scroll_beyond_endSebastien Helleu
2013-07-17core: fix pointer used to check if buffer has linesSebastien Helleu
2013-07-17core: do nothing in "/window scroll_beyond_end" if the buffer has no linesSebastien Helleu
2013-07-17core: add option "scroll_beyond_end" for command /window (task #6745)Sebastien Helleu
2013-07-10core: fix char displayed at the intersection of three windows (bug #39331)Sebastien Helleu
2013-05-22core: fix compilation warningsSebastien Helleu
2013-05-21core: fix line alignment when option weechat.look.buffer_time_format is set ↵Sebastien Helleu
to empty string A regression was introduced by commit 305175fb8c464a169e767a814f5c400154507e6f
2013-05-03core: add options weechat.look.prefix_align_more_after and ↵Sebastien Helleu
weechat.look.prefix_buffer_align_more_after
2013-05-01core: fix display of long lines without time (message beginning with two tabs)Sebastien Helleu
The long lines without time were not properly aligned: the second and subsequent lines should start at column 0 of chat area.
2013-04-29core: make nick prefix/suffix dynamic (move options from irc plugin to core, ↵Sebastien Helleu
add logger options) (bug #37531)
2013-04-12core: do not force weechat_quit to 0 in main loop, so that a /quit issued ↵Sebastien Helleu
before main loop is working
2013-03-17core: fix refresh of item "completion" (bug #38214) (patch from Nils Görs)Sebastien Helleu
The item is now cleared after any action that is changing content of command line and after switch of buffer.
2013-03-17core: fix typos in many comments and some stringsSebastien Helleu
2013-03-17core: add support of multiple layouts (task #11274)Sebastien Helleu
2013-01-12core: fix crash in display of chat area when the ncurses chat window is not ↵Sebastien Helleu
initialized This can happen when a window becomes too small for display: then we set the ncurses chat window to NULL. So when displaying buffer, we'll skip it if the ncurses chat window is NULL. Steps to reproduce crash: 1. /window splith 2. /window resize -1 (many times, until chat area is less than one line) 3. /window balance
2013-01-05core: fix refresh of bars when applying layout (bug #37944, bug #37952)Sebastien Helleu
2013-01-01core: fix scroll to bottom of window (default key: alt+end) when line ↵Sebastien Helleu
displayed is bigger than chat area
2013-01-01core: update copyright datesSebastien Helleu
2012-12-20core: fix another bug with horizontal separator displayed at bottom after ↵Sebastien Helleu
split of windows (bug #37874)
2012-12-19core: fix refresh of windows after split (fix bug with horizontal separator ↵Sebastien Helleu
between windows) (bug #37874)
2012-12-19core: fix stuck mouse (patch from Nei) (bug #36533)Sebastien Helleu
2012-12-19core: fix default mouse buttons actions for script buffer (focus the window ↵Sebastien Helleu
before executing action)
2012-12-16core: add git version in build, display it in "weechat-curses --help" and ↵Sebastien Helleu
/version
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-12-07core: fix scroll of one page down when weechat.look.scroll_page_percent is ↵Sebastien Helleu
less than 100 (bug #37875)
2012-11-30core: fix display of combining chars (patch from Nei) (bug #37775)Sebastien Helleu
2012-11-02core: add incomplete mouse events "event-down" and "event-drag" (task #11840)Ailin Nemui
2012-10-17core: fix display problem when option weechat.look.prefix_same_nick is set ↵Sebastien Helleu
(problem with nick displayed in first line of screen) (bug #37556) To fix this bug, a feature has been removed: the first message with a nick has the prefix forced (to not display the value of weechat.look.prefix_same_nick on top of screen), commit was: 04e98c3f29156a04785f86d429dda4d521fc1779 This feature may be reintroduced in a future commit.
2012-09-17core: move the set of cmake policy CMP0003 in directory src (so it applies ↵Sebastien Helleu
to all plugins) (bug #37311)
2012-08-30core: add default key alt+"x" (zoom on merged buffer) (task #11029)Sebastien Helleu
2012-08-27core: fix display bug when end of a line is displayed on top of chat (last ↵Sebastien Helleu
line truncated and MORE(0) in status bar) (bug #37203)
2012-08-22core: display spaces at the end of messages in chat area (bug #37024)Sebastien Helleu
2012-08-22core: fix infinite loop in display when chat area has width of 1 with a bar ↵Sebastien Helleu
displayed on the right (nicklist by default) (bug #37089)
2012-08-21script: add option script.look.quiet_actions (no messages when ↵Sebastien Helleu
installing/removing/loading/unloading scripts on script buffer)
2012-08-20script: add focus info for mouse on script buffer, add two default mouse ↵Sebastien Helleu
bindings: left button = select line, right button = install/remove script
2012-08-17core: fix display of "bar more down" char when text is truncated by size_max ↵Nils Görs
in bars with vertical filling (bug #37054)
2012-08-17core: fix color of long lines (displayed on more than one line on screen) ↵Sebastien Helleu
under FreeBSD (bug #36999)
2012-08-17core: add mouse bindings ctrl+wheel up/down to scroll horizontally buffers ↵Sebastien Helleu
with free content
2012-08-14core: add new plugin "script" (scripts manager, replacing scripts weeget.py ↵Sebastien Helleu
and script.pl)
2012-07-18core: fix compilation of gui-curses-window.c under SolarisSebastien Helleu