summaryrefslogtreecommitdiff
path: root/src/gui
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-27New default keys for scroll_top/bottomSebastien Helleu
2008-04-25Fixed bug with print_y: now scripts can print empty line to remove a lineSebastien Helleu
2008-04-24Added completion with possible values for /set, new possible values "++n" ↵Sebastien Helleu
and "--n" for integers and colors
2008-04-24Fixed bug with bar auto-sizing in windowsSebastien Helleu
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-20Fixed broken completion on buffers where nicklist is not displayed (bug #23006)Sebastien Helleu
2008-04-20Fixed display bug with nicklist and option weechat.look.nicklistSebastien Helleu
2008-04-19Fixed output of names on channels (now it's sorted/grouped/colored, like ↵Sebastien Helleu
v0.2.6) (bug #22935), added "nicklist" infolist
2008-04-18Replaced /builtin command by /command, and can now be used to launch ↵Sebastien Helleu
commands with same name from different plugins
2008-04-18Use of /window command for some key bindings with actions on current window ↵Sebastien Helleu
(like scroll, ..)
2008-04-17Added infolist "window", scroll in buffers with free content, fixed config ↵Sebastien Helleu
hooks (use of string_match)
2008-04-17Fixed refresh problem (empty screen after resizing terminal to very small ↵Sebastien Helleu
size, then normal size)
2008-04-17Fixed crash when nicklist is top/bottom and that we open a new buffer with a ↵Sebastien Helleu
nicklist
2008-04-16Added "toggle" value for /set on boolean options, fixed refresh bugs, added ↵Sebastien Helleu
option type for infolist "options"
2008-04-16Fixed bug with display of nicklist scroll indicatorSebastien Helleu
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-15New format for [bar] section in weechat.conf file, bar options can be set ↵Sebastien Helleu
with /set command
2008-04-12Added new default bar item "time"Sebastien Helleu
2008-04-11Fixed bugs with nicks color and sorting in nicklistSebastien Helleu
2008-04-11Improved /set command, added /unset command, new name for config files (*.conf)Sebastien Helleu
2008-04-04Added auto-resize feature for barsSebastien Helleu
2008-04-03Bugs fixed with barsSebastien Helleu
2008-04-03Fixed compilation problems when gnutls dev lib is not foundSebastien Helleu
2008-04-03New features and bug fixes with barsSebastien Helleu
2008-04-03Fixed bugs with filters (regex and refresh of buffers)Sebastien Helleu
2008-03-29Fixed bug with creation of bar windowSebastien Helleu
2008-03-29Fixed display bug when first line displayed is not first of bufferSebastien Helleu
2008-03-29Fixed bug with bars refreshSebastien 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-23Removed sizeof(char) and useless type casts from void* to another pointer ↵Sebastien Helleu
type (patch from Leonid Evdokimov)
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks
2008-03-15Fixed bugs with bars size and refreshSebastien Helleu
2008-03-11Fix hotlist update when buffer is current oneSebastien Helleu
2008-03-10Removed typedef for GUI structure (use only struct)Sebastien Helleu
2008-03-09Minor changes in /buffer command and topic of WeeChat bufferSebastien Helleu
2008-03-07Save of bars in main WeeChat config file (weechat.rc)Sebastien Helleu
2008-03-07Cleanup of Curses and Gtk makefilesSebastien Helleu
2008-03-07Fix of link with cmake for Curses and Gtk executablesSebastien Helleu
2008-03-07Added "max_height" parameter for bar item rebuild callbacksSebastien Helleu
2008-03-05Fix of cmake build processSebastien 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-02-22New "irc/debug" buffer (replaces old IRC raw buffer), improved status bar ↵Sebastien Helleu
display, fixed nick in input for IRC buffers The "irc/debug" buffer is displayed when IRC debug is enabled (with "/debug irc" thru debug plugin). If the buffer is closed, it is reopen when new messages are written, until debug is disabled by user (with "/debug irc").
2008-02-21Added new plugin "debug"Sebastien Helleu
2008-02-04Removed typedef for keyboard structures in gui-keyboard.hSebastien Helleu
2008-02-02Use of sizeof(char) in all malloc/realloc for stringsSebastien Helleu
2008-02-01Fixed bugs/crashs when closing buffersSebastien Helleu
2008-02-01New "close callback" for buffers, use of this callback in IRC plugin to ↵Sebastien Helleu
leave channel or disconnect from server when buffer is closed