summaryrefslogtreecommitdiff
path: root/src/gui/gui-buffer.h
AgeCommit message (Collapse)Author
2010-03-19Reformat multi-line commentsSebastien Helleu
2010-02-02Add option "switch_active_buffer_previous" for command /input (task #10141)Sebastien Helleu
2010-01-03Update copyright datesSebastien Helleu
2009-06-13Display buffer name in hotlist if buffers are merged with same numberSebastien Helleu
2009-06-10Add buffer merging feature, with /buffer merge/unmerge (task #7404)Sebastien Helleu
2009-05-18Add option weechat.history.max_visited_buffersSebastien Helleu
2009-05-18Add new keys to move into last visited buffers (alt + "<", alt + ">"), come ↵Sebastien Helleu
back to last visited buffer when closing a buffer
2009-05-17Fix typo: formated -> formattedSebastien Helleu
2009-05-04Disable print hooks during display of backlog (in logger plugin)Sebastien Helleu
2009-04-24Remove notify plugin (moved to core)Sebastien Helleu
2009-03-15Add property in buffer to hide time for all linesSebastien Helleu
2009-02-02Fix crash when read marker is moved before first line displayed (when first ↵Sebastien Helleu
line of buffer is removed)
2009-01-04Remove unused functions and prototypesSebastien Helleu
2009-01-03Update copyright datesSebastien Helleu
2008-11-27Remove argument "switch_to_another" for function gui_buffer_close()Sebastien Helleu
2008-11-22Save last read line (for marker) within /upgradeSebastien Helleu
2008-11-15Use of const for some functions returning "char *"Sebastien Helleu
2008-11-15Reintroduce option "irc.network.send_unknown_commands", save extra data for ↵Sebastien Helleu
buffers with /upgrade (title, input data, text search)
2008-10-24Add local variables for buffers, fix alias creation, use of local variables ↵Sebastien Helleu
$nick/$channel/$server in alias
2008-10-22Add function buffer_set_pointer in plugin APISebastien Helleu
2008-10-20Add new property "short_name" for buffersSebastien Helleu
2008-10-18Remove unused option look.input_format, fix refresh bug with input prompt ↵Sebastien Helleu
for IRC buffers
2008-10-18Aspell plugin is born againSebastien Helleu
2008-10-12Remove old title/nicklist/status/input, use of new barsSebastien Helleu
2008-10-02Add new /layout command and save_layout_on_exit config option, to ↵Sebastien Helleu
save/restore windows and buffers order (task #5453)
2008-09-30Set unread marker for IRC server/channels/pv buffers when using /away commandSebastien Helleu
2008-09-24Fix /upgrade when there is one buffer for all IRC serversSebastien Helleu
2008-09-18Remove "category" for buffers (keep only name).Sebastien Helleu
2008-08-19Reintroduce /upgrade command, working only with core and IRC plugin todaySebastien Helleu
Command will be improved in near future and other plugins like xfer will be modified to manage upgrade process.
2008-06-17New plugin "notify", new option for debug messages in pluginsSebastien Helleu
2008-06-03Add "const" keyword for some "char *" function arguments (core and plugins API)Sebastien Helleu
2008-06-01Reintroduce highlight (move code from irc plugin to core)Sebastien Helleu
2008-05-20Remove old dcc code, unused nowSebastien 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-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-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-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
2008-01-29Reduced number of screen refreshs, fixed display bug with title barSebastien Helleu
2008-01-10Added some missing functions in Perl plugin APISebastien Helleu
2008-01-06Added hotlist option for buffer in plugins API, improved buffer refreshsSebastien Helleu
2008-01-02Update of year in some copyrightsSebastien Helleu
2008-01-01Added group support for nicklist, fixed some bugs in plugins API and IRC pluginSebastien Helleu
Added group support for nicklist (with subgroups). Partial changes in IRC protocol functions (new arguments with argv and argv_eol). Fixed some bugs: - nicklist in plugins API - problem in main loop with select() when SIGWINCH is received (terminal resize) - bug in string explode function - bug in infobar countdown.
2007-12-17New backlog option in logger plugin, added variable names in .h files, ↵Sebastien Helleu
replaced "void *" pointers by structures
2007-12-10Many changes in IRC pluginSebastien Helleu
2007-12-09Changes in IRC plugin to use new APISebastien Helleu
2007-11-26Added input_data callback argument to gui_buffer_new() functionSebastien Helleu