Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-15 | api: add argument "strip_items" in function string_split | Sébastien Helleu | |
2019-04-13 | core: fix /help weechat.look.buffer_time_same | Sébastien Helleu | |
2019-04-13 | core: add option weechat.look.prefix_same_nick_middle (closes #930, closes #931) | Adrian Bjugård | |
2019-04-13 | core: add option weechat.look.buffer_time_same (closes #1127) | Simmo Saan | |
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-02-21 | gui: only refilter affected buffers on filter change (closes #1309) | Simmo Saan | |
2019-02-03 | Fix typo "part or words" -> "part of words" | arza | |
2019-01-26 | core: do not automatically add a space when completing "nick:" at the ↵ | Sébastien Helleu | |
beginning of command line The space can be added in option weechat.completion.nick_completer (this is now the default value of the option): /set weechat.completion.nick_completer ": " | |||
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-11-12 | core: improve help on option weechat.look.nick_color_stop_chars (closes #1268) | Sébastien Helleu | |
2018-08-12 | core: fix check of tags in lines | Sébastien Helleu | |
All changes: - fix check of tags in lines: check lines without tags, fix check of tags with negation ("!tag") - add string functions string_split_tags and string_free_split_tags - add tests on function gui_line_match_tags | |||
2018-06-14 | core: change default value of option weechat.look.hotlist_add_conditions ↵ | Sébastien Helleu | |
(closes #1206) Now if there are at least one relay client connected via weechat protocol, the buffer is always added to the hotlist. | |||
2018-04-16 | core: do not set terminal title by default (option ↵ | Sébastien Helleu | |
weechat.look.window_title) (closes #1182) | |||
2018-03-31 | core: fix help on option weechat.look.hotlist_count_max | Sébastien Helleu | |
2018-03-31 | core: improve help on option weechat.look.hotlist_count_max | Sébastien Helleu | |
2018-03-19 | core: improve help of option weechat.completion.partial_completion_alert | Sébastien Helleu | |
2018-01-14 | core: reinitialize config file pointer to NULL after an error on section ↵ | Sébastien Helleu | |
creation | |||
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-12-10 | core: add link to API doc in /help ↵ | Sébastien Helleu | |
weechat.completion.partial_completion_templates | |||
2017-12-09 | core: add option weechat.completion.partial_completion_templates | Sébastien Helleu | |
This option is used to force partial completion on specific templates (for now only "config_options"). | |||
2017-10-14 | core: add option weechat.look.save_config_with_fsync (closes #1083) | Sébastien Helleu | |
This makes the save of all configuration files about 20 to 200x slower (according to the storage device speed); so this is disabled by default. | |||
2017-09-23 | core, plugins: check return code of strftime function | Sébastien Helleu | |
2017-08-21 | core: add note about bar item "input_paste" in /help ↵ | Sébastien Helleu | |
weechat.look.paste_max_lines (closes #1054) | |||
2017-07-08 | core: call the config hook when options are removed | Sébastien Helleu | |
2017-06-10 | core, plugins: fix conditions to insert elements in linked lists | Sébastien Helleu | |
This removes scan-build warnings about dereference of last_xxx null pointers. | |||
2017-06-01 | core: remove config_look_hotlist_add_buffer_if_away completely | Miroslav Koskar | |
2017-05-06 | core: add option weechat.completion.nick_case_sensitive (closes #981) | Sébastien Helleu | |
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-12-20 | core: fix typo in /help weechat.look.align_multiline_words | Sébastien Helleu | |
2016-12-17 | core: improve /help weechat.look.align_multiline_words | Sébastien Helleu | |
2016-12-17 | Merge remote-tracking branch 'origin/pr/802' | Sébastien Helleu | |
2016-11-25 | core: add more info in /help weechat.color.chat_nick | Sébastien Helleu | |
2016-09-20 | core: add option weechat.look.align_multiline_words | arza | |
2016-09-03 | core: evaluate content of option "weechat.look.item_time_format" (issue #791) | Sébastien Helleu | |
2016-08-16 | core: add optional argument "lowest", "highest" or level mask in command ↵ | Sébastien Helleu | |
/input hotlist_clear | |||
2016-07-09 | core: replace some single quotes by double quotes in help of options | Sébastien Helleu | |
2016-04-06 | core: set default value "djb2" for option weechat.look.nick_color_hash | Sébastien Helleu | |
2016-04-05 | core: move nick coloring from irc plugin to core (closes #262) | Sébastien Helleu | |
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color. | |||
2016-03-21 | core: add pointer in some callbacks (closes #406) | Sébastien Helleu | |
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read | |||
2016-02-15 | core: move irc bar item "away" and two options to core (closes #692) | Sébastien Helleu | |
Options moved: * "irc.look.item_away_message" --> "weechat.look.item_away_message" * "irc.color.item_away" --> "weechat.color.item_away". | |||
2016-01-06 | core: remove unused option weechat.color.nicklist_offline | Simmo Saan | |
Added in c1c1005b364d28409339f46b5233bcb0f2f86ed7. | |||
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-12-24 | core: add a parent name in options (closes #629) | Sébastien Helleu | |
Inherited values are now displayed in /set output when the value is null, if a parent option name is defined in option. New option: weechat.color.chat_value_null | |||
2015-10-03 | core: add option weechat.look.paste_auto_add_newline (closes #543) | Sébastien Helleu | |
2015-07-26 | core: fix typo in /help weechat.look.key_grab_delay | Sébastien Helleu | |
2015-07-26 | core: add option weechat.look.key_grab_delay to set the default delay when ↵ | Sébastien Helleu | |
grabbing a key with alt-k | |||
2015-07-14 | core: add option weechat.look.confirm_upgrade (closes #463) | Sébastien Helleu | |
2015-06-04 | core: replace "create" by "add" in messages and docs for IRC servers and proxies | Sébastien Helleu | |
2015-04-19 | core: add options weechat.look.quote_{nick_prefix|nick_suffix|time_format} ↵ | Sébastien Helleu | |
to customize quoted messages in cursor mode (closes #403) |