summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-curses-chat.c
AgeCommit message (Collapse)Author
2008-04-27Added marker line (or dotted line), more visible than single magenta char ↵Sebastien Helleu
(char is still possible)
2008-04-24Added filling/color_fg/color_bg options for bars, added ↵Sebastien Helleu
config_get/config_get_plugin/config_set_plugin in script API
2008-04-22Added conditions for bar display and bar max sizeSebastien Helleu
2008-04-17Added infolist "window", scroll in buffers with free content, fixed config ↵Sebastien Helleu
hooks (use of string_match)
2008-04-16Added "toggle" value for /set on boolean options, fixed refresh bugs, added ↵Sebastien Helleu
option type for infolist "options"
2008-04-15Added keys by buffer (useful for buffers with free content that need own keys)Sebastien Helleu
These keys can be set thru API function "buffer_set", for example: weechat_buffer_set(my_buffer, "key_bind_meta2-A", "/mycommand up"); weechat_buffer_set(my_buffer, "key_bind_meta2-B", "/mycommand down"); weechat_buffer_set(my_buffer, "key_unbind_meta2-B", ""); weechat_buffer_set(my_buffer, "key_unbind_*", ""); These keys are volatile and not saved in any config file. So they must be set when buffer is open.
2008-04-03Bugs fixed with barsSebastien Helleu
2008-04-03New features and bug fixes with barsSebastien Helleu
2008-03-29Fixed display bug when first line displayed is not first of bufferSebastien Helleu
2008-03-29Lines of buffers with free content are now truncated according to window widthSebastien Helleu
2008-03-28Added preliminary support of new buffer type, with free contentSebastien Helleu
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks
2008-03-07Added "max_height" parameter for bar item rebuild callbacksSebastien Helleu
2008-03-05Partial support of bars, with custom items.Sebastien Helleu
Today only root bars are partially working (refresh is not always performed), and bars are not saved in configuration file. To be continued...
2008-01-29Reduced number of screen refreshs, fixed display bug with title barSebastien Helleu
2008-01-02Update of year in some copyrightsSebastien Helleu
2007-12-17New backlog option in logger plugin, added variable names in .h files, ↵Sebastien Helleu
replaced "void *" pointers by structures
2007-12-01New config functions, almost entirely rewritten from scratchSebastien Helleu
2007-11-04Fixed display bug with truncation of long linesSebastien Helleu
2007-11-04Fixed display bug with long linesSebastien Helleu
2007-10-31Renamed many sources and functions in src/gui, improved display of messages ↵Sebastien Helleu
in buffer (faster and using less memory)
2007-09-20Moved IRC sources from src/irc/ to src/protocols/irc/Sebastien Helleu
2007-09-02Fixed display bug with some special chars in messages (some words were ↵Sebastien Helleu
truncated on screen) (bug #20944)
2007-08-27Added option to align text of messages (except first lines) (task #7246)Sebastien Helleu
2007-08-16Code cleanup: renamed some constants and variables (prefix added)Sebastien Helleu
2007-07-12Fixed bugs with IRC color in messages, now color codes are inserted in ↵Sebastien Helleu
command line with ^Cc,^Cb,.. instead of %C,%B,.. (bug #20222, task #7060)
2007-07-02Replaced GPL 2 license by GPL 3Sebastien Helleu
2007-03-20Fixed bug with text search and previous/next highlight (sometimes search ↵Sebastien Helleu
came back to end of buffer)
2007-03-20Added case-sensitive search in buffer, display marker for each line matching ↵Sebastien Helleu
search
2007-01-08Fixed bug in topic displaySebastien Helleu
2007-01-07Fixed topic scroll when topic has multi-bytes charsSebastien Helleu
2007-01-05Changed copyright date (2006 -> 2007)Sebastien Helleu
2006-12-05Fixed display bug with color for first line on screen (bug #17719)Sebastien Helleu
2006-11-29Added keys (F9/F10) to scroll topic (task #6030)Sebastien Helleu
2006-11-17Added space between chat and nicklist when position is "right" (bug #17852)Sebastien Helleu
2006-11-08Added charset plugin (WeeChat is now full UTF-8 for internal data storage), ↵Sebastien Helleu
fixed compilation problems with FreeBSD, fixed status bar display bug
2006-10-08Fixed comparison between a char and negative value (now using 'signed char' ↵Sebastien Helleu
to compare), this should fix minor display bug on some arch like PPC
2006-08-03Improved DCC speed (up to x5 on LAN) by forking for DCC files and a new ↵Sebastien Helleu
option "dcc_fast_send" (does not wait for ACK) (task #5758)
2006-07-16Fixed crash on DCC buffer under Darwin 8 (bug #17115)Sebastien Helleu
2006-07-16added some panel functions, fixed refresh bugs when terminal is resized: too ↵Sebastien Helleu
many refreshs, display bug with splited windows
2006-06-26Fixed refresh bug (too many refresh) when terminal is resizedSebastien Helleu
2006-06-16Fixed display bug with special char (bug #16732)Sebastien Helleu
2006-05-08Fixed UTF-8 display bug with chars using more than one cell on screen (bug ↵Sebastien Helleu
#16356)
2006-05-07Fixed display bug with DCC file size when > 1 GbSebastien Helleu
2006-05-07Added some panel structures and functionsSebastien Helleu