summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
2011-01-06Fix unlikely memory leak in function gui_keyboard_newSebastien Helleu
2011-01-05Fix scroll problem on buffers with free content and non-allocated lines (bug ↵Sebastien Helleu
#32039)
2011-01-05Remove unneeded call to gui_color_buffer_displaySebastien Helleu
2011-01-04Fix number of colors displayed in buffer opened by /color (can be different ↵Sebastien Helleu
between WeeChat and terminal colors)
2011-01-03Fix crash when changing or removing color palette optionsSebastien Helleu
2011-01-02Free color palette structures when exiting WeeChatSebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2011-01-01Add new command /colorSebastien Helleu
2010-12-21Allow more flexible format for palette optionsSebastien Helleu
Order of alias, pair and rgb is free and semicolon is not required any more before or after pair.
2010-12-20Do not allow empty string for color (regression with 256 colors feature)Sebastien Helleu
2010-12-20Build list of color aliases at startup (fix crash when setting "++1" on ↵Sebastien Helleu
option if no palette option is defined)
2010-12-20Fix parsing of palette optionsSebastien Helleu
2010-12-20Replace the 10 nick color options and number of nick colors by a single ↵Sebastien Helleu
option "weechat.color.chat_nick_colors" (comma separated list of colors)
2010-12-20Fix removal of color pair number in a string (function gui_color_decode)Sebastien Helleu
2010-12-20Add 256 colors supportSebastien Helleu
Changes: - new section "palette" in weechat.conf - new API functions: list_search_pos and list_casesearch_pos
2010-12-17Add command line option "-c" (or "--colors") to display default colors in ↵Sebastien Helleu
terminal
2010-12-17Allow use of color pair number in color options and in API function ↵Sebastien Helleu
"weechat_color"
2010-12-07Add color support in option weechat.look.buffer_time_formatSebastien Helleu
2010-12-07Remove unneeded variable name "position" in gui-bar-window.hSebastien Helleu
2010-11-29Replace buffer local variable "no_highlight_nicks" by "hotlist_max_level_nicks"Sebastien Helleu
2010-11-25Add new option weechat.look.highlight_regex and function ↵Sebastien Helleu
string_has_highlight_regex in plugin API (task #10321)
2010-11-18Add note about comma and "+" in help of options weechat.bar.xxx.itemsSebastien Helleu
2010-11-10Allow search of nicklist group with name not including leading digits (for ↵Sebastien Helleu
nicklist sort)
2010-11-10Fix crash when displaying groups in buffer nicklistSebastien Helleu
2010-11-09Add function "hook_completion_get_string" in plugin APISebastien Helleu
2010-11-09Move WeeChat core completions from gui-completion.c to wee-completion.cSebastien Helleu
2010-11-05Set highlight flag on line printed if there is tag "notify_highlight"Sebastien Helleu
2010-10-31Remove dead assignmentsSebastien Helleu
2010-10-31Add extra checks on some pointersSebastien Helleu
2010-10-31Remove function gui_input_moveSebastien Helleu
2010-10-31Replace unneeded function gui_input_move by memmoveSebastien Helleu
2010-10-31Remove unused variablesSebastien Helleu
2010-10-29Return empty string in API function weechat_color when color is unknownSebastien Helleu
2010-10-29Add new functions in plugin API to get/set nicks/groups properties in nicklistSebastien Helleu
8 new functions added: - nicklist_group_get_integer - nicklist_group_get_string - nicklist_group_get_pointer - nicklist_group_set - nicklist_nick_get_integer - nicklist_nick_get_string - nicklist_nick_get_pointer - nicklist_nick_set
2010-10-29Fix display of nick in nicklist when groups are displayed and nick has ↵Sebastien Helleu
"visible" to 0
2010-10-28Add refresh when buffer property "nicklist_display_groups" is changedSebastien Helleu
2010-10-28Fix bug when counting number of groups/nicks displayed in nicklistSebastien Helleu
2010-10-23Fix default value of bar items options (bug #31422)Sebastien Helleu
2010-10-18Fix color of comma in hotlist bar itemSebastien Helleu
2010-10-17Use const void * for keys and values in some hashtable functionsSebastien Helleu
2010-10-15Fix bug with buffer name in "/bar scroll" commandSebastien Helleu
2010-10-12Add new option weechat.look.hotlist_unique_numbers (task #10691)Sebastien Helleu
2010-10-11Add property "no_highlight_nicks" in buffers to disable highlight for some ↵Sebastien Helleu
nicks in buffer This can be used with script buffer_autoset.py (see /help autosetbuffer).
2010-10-09Use local buffer in print functions, so that they are reentrantSebastien Helleu
2010-10-06Optimize incremental search in buffer: do not search any more when chars are ↵Sebastien Helleu
added to a text not found (bug #31167)
2010-10-06Revert last commit about "buffer_switch" signal (introduced new refresh bugs ↵Sebastien Helleu
on bars)
2010-10-05Fix signal "buffer_switch" (was sent twice when switching buffer) (bug #31158)Sebastien Helleu
2010-10-02Add new option weechat.look.prefix_align_min (task #10650)Sebastien Helleu
2010-09-28New value for option weechat.look.input_share (none, commands, text, all), ↵Sebastien Helleu
add new option weechat.look.input_share_overwrite (boolean)
2010-09-27Fix memory leak in function gui_buffer_set_highlight_words_listSebastien Helleu