Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-07 | core: add support for negated tags in filters (closes #72) | stfn | |
2014-03-29 | core: 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-02-10 | api: add integer return code for functions hook_{signal|hsignal}_send | Sebastien Helleu | |
2014-02-04 | core: use structure itself for sizeof in two malloc | Sebastien Helleu | |
2014-01-05 | core: fix crash with hdata_update on shared strings, add hdata type ↵ | Sebastien Helleu | |
"shared_string" (bug #41104) | |||
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-12-15 | core: add buffer property "highlight_tags_restrict", rename option ↵ | Sebastien Helleu | |
irc.look.highlight_tags to irc.look.highlight_tags_restrict The buffer property "highlight_tags" is renamed to "highlight_tags_restrict". New behavior for buffer property "highlight_tags": force highlight on tags. Option irc.look.highlight_tags is renamed to irc.look.highlight_tags_restrict. | |||
2013-12-14 | core: add logical "and" between tags in filters, weechat.look.highlight_tags ↵ | Sebastien Helleu | |
and buffer property "highlight_tags" The logical "and" is made with the separator "+". Example: "irc_notice+nick_toto,nick_test" will match a notice from nick "toto" or any message from nick "test". | |||
2013-11-08 | core: fix highlight on action messages: skip the nick at beginning to ↵ | Sebastien Helleu | |
prevent highlight on it (bug #40516) | |||
2013-09-02 | Merge branch 'shared-strings' | Sebastien Helleu | |
2013-08-17 | core: use shared strings for prefix on lines | Sebastien Helleu | |
It can reduce by about 10% the memory used for lines in a buffer. | |||
2013-08-17 | core: add search of regular expression in buffer, don't reset search type on ↵ | Sebastien Helleu | |
a new search, select where to search (messages/prefixes) Key changed in search context: - ctrl+"r": switch search type: string/regex New keys in search context: - alt+"c": case (in)sensitive search - tab: search in messages/prefixes/both | |||
2013-08-10 | core: use shared strings for tags on lines | Sebastien Helleu | |
It can reduce by about 30% the memory used for lines in a buffer. | |||
2013-08-10 | core: optimize the removal of lines in buffers (a lot faster to clear/close ↵ | Sebastien Helleu | |
buffers with lot of lines) The update of variables "buffer_max_length" and "prefix_max_length" in struct t_gui_lines is now delayed and made during the main refresh (in main loop). For a buffer with 50K lines, it is up to 3300 times faster to clear/close it. For a buffer with 4096 lines (default limit), it is up to 120 times faster. | |||
2013-05-30 | core: fix random crash on mouse actions (bug #39094) | Sebastien Helleu | |
2013-05-21 | core: 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-01 | core: 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-29 | core: make nick prefix/suffix dynamic (move options from irc plugin to core, ↵ | Sebastien Helleu | |
add logger options) (bug #37531) | |||
2013-03-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-02-04 | core: fix refresh of line after changes with hdata_update (update flag ↵ | Sebastien Helleu | |
"displayed" according to filters) | |||
2013-01-01 | core: update copyright dates | Sebastien Helleu | |
2012-12-15 | core: move comments with description of C file to top of files | Sebastien Helleu | |
2012-12-13 | core: reformat comments for functions | Sebastien Helleu | |
2012-12-08 | api: allow creation of structure with hdata_update (allowed for hdata "history") | Sebastien Helleu | |
2012-10-17 | core: 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-08-30 | core: add default key alt+"x" (zoom on merged buffer) (task #11029) | Sebastien Helleu | |
2012-08-27 | api: allow update for some variables of hdata, add new functions ↵ | Sebastien Helleu | |
hdata_update and hdata_set | |||
2012-08-14 | core: fix use of unitialized value (line->data->display) when adding a line ↵ | Sebastien Helleu | |
in buffer | |||
2012-07-20 | core: add support of arrays in hdata variables | Sebastien Helleu | |
2012-07-17 | core: fix typo in comment | Sebastien Helleu | |
2012-06-09 | core: fix color of nicks in buffers without nicklist when option ↵ | Sebastien Helleu | |
weechat.look.color_nick_offline is on | |||
2012-06-09 | core: add options to use different color for offline nicks in prefix (patch ↵ | Sebastien Helleu | |
from Nei) (task #11109) New options: - weechat.look.color_nick_offline: boolean to enable feature (off by default) - weechat.color.chat_nick_offline: color for offline nicks (displayed in prefix) | |||
2012-05-22 | core: force display of prefix on first line displayed in window (even if it ↵ | Sebastien Helleu | |
should be hidden by option weechat.look.prefix_same_nick) | |||
2012-04-03 | core: fix bugs with option weechat.look.prefix_same_nick, use nick color for ↵ | Sebastien Helleu | |
string used as replacement Bugs fixed: - hide/replace prefix only if prefix is a nick (do not do it for join/part/quit or action messages) - hide/replace prefix only when displaying messages (do not cache value in lines) The nick color used in replacement string comes from tag "prefix_nick_ccc", where "ccc" is the color of nick. | |||
2012-04-01 | core: fix bug with option weechat.look.prefix_same_nick and filtered lines | Sebastien Helleu | |
2012-03-28 | core: add option weechat.look.prefix_same_nick (hide or change prefix on ↵ | Sebastien Helleu | |
messages whose nick is the same as previous message) (task #11965) | |||
2012-01-08 | core: update copyright dates | Sebastien Helleu | |
2011-12-17 | core: add signal "buffer_line_added" | Sebastien Helleu | |
2011-11-25 | core: fix type of variables in hdata "line_data" (type integer -> char) | Sebastien Helleu | |
2011-11-21 | core: add "full_name" in buffer structure | Sebastien Helleu | |
2011-11-05 | core: rename options weechat.history.{max_lines|max_minutes} to ↵ | Sebastien Helleu | |
weechat.history.{max_buffer_lines_number|max_buffer_lines_minutes} | |||
2011-11-01 | core: add option weechat.history.max_minutes: maximum number of minutes in ↵ | Sebastien Helleu | |
history per buffer (task #10900) (patch from Quentin Pradet) | |||
2011-10-26 | core: remove unneeded whitespace | Sebastien Helleu | |
2011-09-20 | core: add missing assignment of buffer pointer in line structure | Sebastien Helleu | |
2011-08-14 | core: allow empty short name on buffers (name is used if not set) | Sebastien Helleu | |
2011-08-14 | core: return info about line/word for chat area in focus hashtable, add keys ↵ | Sebastien Helleu | |
m/q/Q to quote line in cursor mode, sort mouse keys by priority | |||
2011-08-05 | core: save and restore layout for buffers and windows on /upgrade | Sebastien Helleu | |
2011-06-26 | core: many improvements on hdata | Sebastien Helleu | |
New features: - add optional hdata name for variables in hdata - add plugin API functions: hdata_get_var_hdata - use hashtable to store hdata (created by WeeChat and plugins) - free hdata and infolists created by plugin on plugin unload - free all hdata on exit - add "free" option to command /debug hdata - remove hdata for hooks | |||
2011-06-15 | core: add local variable "highlight_regex" in buffers | Sebastien Helleu | |
2011-06-13 | core: add "hdata" (direct access to WeeChat/plugin data) | Sebastien Helleu | |