Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-31 | core: do not scroll when using /window {page_down|scroll_down} after /window ↵ | Sebastien Helleu | |
scroll_beyond_end | |||
2013-07-31 | core: 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-30 | core: use variable "items_count" directly from hashtable without calling ↵ | Sebastien Helleu | |
function hashtable_get_integer | |||
2013-07-27 | core: add option "-o" for command /color | Sebastien Helleu | |
2013-07-27 | core: use default value for prefixes used in messages displayed before the ↵ | Sebastien Helleu | |
interface is initialized | |||
2013-07-27 | core: add secured data with optional encryption in file sec.conf | Sebastien Helleu | |
2013-07-22 | core: remove gap after read marker line when there is no bar on the right ↵ | Sebastien Helleu | |
(bug #39548) | |||
2013-07-20 | Merge branch 'scroll-beyond-end' | Sebastien Helleu | |
2013-07-20 | core: scroll to bottom after smart jump (alt-a) only if window was scrolled ↵ | Sebastien Helleu | |
(and not beyond the end) | |||
2013-07-20 | core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.am | Sebastien Helleu | |
2013-07-20 | core: add options weechat.look.hotlist_prefix and ↵ | Sebastien Helleu | |
weechat.look.hotlist_suffix (task #12730) (patch from Nils Görs) | |||
2013-07-18 | core: fix filtered line displayed after /window scroll_beyond_end | Sebastien Helleu | |
2013-07-17 | core: fix pointer used to check if buffer has lines | Sebastien Helleu | |
2013-07-17 | core: do nothing in "/window scroll_beyond_end" if the buffer has no lines | Sebastien Helleu | |
2013-07-17 | core: add option "scroll_beyond_end" for command /window (task #6745) | Sebastien Helleu | |
2013-07-15 | core: add option weechat.look.key_bind_safe | Sebastien Helleu | |
2013-07-15 | core: remove obsolete reference to "key functions" in comments | Sebastien Helleu | |
2013-07-13 | core: fix malloc(0) when building content of a bar using a filling with columns | Sebastien Helleu | |
2013-07-10 | core: fix char displayed at the intersection of three windows (bug #39331) | Sebastien Helleu | |
2013-06-29 | core: move test of invalid UTF-8 char length from gui-chat.c to wee-utf8.c | Sebastien Helleu | |
2013-06-29 | core: fix display bugs with some UTF-8 chars that truncates messages displayed | Sebastien Helleu | |
Example of char causing problems: U+26C4 (snowman without snow) | |||
2013-06-10 | core: remove extra space after empty prefix (when prefix for action, error, ↵ | Sebastien Helleu | |
join, network or quit is set to empty string) (bug #39218) | |||
2013-06-08 | core: add "proxy" infolist and hdata | Sebastien Helleu | |
2013-05-30 | core: fix random crash on mouse actions (bug #39094) | Sebastien Helleu | |
2013-05-22 | core: fix compilation warnings | Sebastien Helleu | |
2013-05-21 | Merge branch 'layout_infolist_hdata' | 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-15 | core: add variable "current_layout" in infolist "layout" | Sebastien Helleu | |
2013-05-14 | core: add infolist "layout" and hdata "layout", "layout_buffer" and ↵ | Sebastien Helleu | |
"layout_window" (thanks to Nils Görs) | |||
2013-05-14 | core: fix typo in comment | Sebastien Helleu | |
2013-05-03 | core: add options weechat.look.prefix_align_more_after and ↵ | Sebastien Helleu | |
weechat.look.prefix_buffer_align_more_after | |||
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-04-24 | core: reset scroll in window before zooming on a merged buffer (bug #38207) | Sebastien Helleu | |
2013-04-18 | api: add property "completion_freeze" for function buffer_set: do not stop ↵ | Sebastien Helleu | |
completion when command line is updated | |||
2013-04-12 | core: do not force weechat_quit to 0 in main loop, so that a /quit issued ↵ | Sebastien Helleu | |
before main loop is working | |||
2013-03-29 | core: use layout saved when option weechat.look.save_layout_on_exit is ↵ | Sebastien Helleu | |
enabled (so it is automatically restored when WeeChat restarts) | |||
2013-03-17 | core: 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-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-03-17 | core: add support of multiple layouts (task #11274) | Sebastien Helleu | |
2013-03-08 | core: add signals and hsignals for nicklist events | Sebastien Helleu | |
New signals: nicklist_group_removing and nicklist_nick_removing. New hsignals: nicklist_group_added, nicklist_nick_added, nicklist_group_removing, nicklist_nick_removing, nicklist_group_changed, nicklist_nick_changed. | |||
2013-03-03 | core: add count for groups, nicks, and total in nicklist | Sebastien Helleu | |
2013-03-02 | core: optimize function nicklist_remove_all (don't remove and create again ↵ | Sebastien Helleu | |
"root" group) | |||
2013-02-17 | core: remove Gtk interface (obsolete sources not working) | Sebastien Helleu | |
2013-02-12 | core: add signal "window_opened" (task #12464) | Sebastien Helleu | |
2013-02-07 | core: fix structures before buffer data when a buffer is closed | Sebastien Helleu | |
This was causing a bug in relay plugin (weechat protocol): when a buffer was closed, local variables were removed after buffer name, and when signal is sent to client, the buffer name was wrong (already freed). | |||
2013-02-04 | core: fix refresh of line after changes with hdata_update (update flag ↵ | Sebastien Helleu | |
"displayed" according to filters) | |||
2013-01-29 | core: fix hidden lines for messages without date when option ↵ | Sebastien Helleu | |
weechat.history.max_buffer_lines_minutes is set (bug #38197) | |||
2013-01-26 | core: use size of 32 for hashtables (instead of 4, 8 or 16) | Sebastien Helleu | |
A size of 32 will use a little more memory but will reduce collisions in key hashs, and then length of linked lists inside hash structure (faster search in hashtable). | |||
2013-01-14 | core: fix click in item "buffer_nicklist" when nicklist is a root bar (bug ↵ | Sebastien Helleu | |
#38080) Argument "*" is now silently ignored in command /window. When item "buffer_nicklist" is in a root bar, we use current window/buffer to find which nick has been clicked (same behaviour as callback used to display bar item "buffer_nicklist"). |