summaryrefslogtreecommitdiff
path: root/src/core/wee-upgrade.c
AgeCommit message (Collapse)Author
2018-01-07core: set input callback on user buffers after /upgradeSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-08-21core: add flag "input_get_empty" in bufferSébastien Helleu
The default value is 0 (legacy behavior). When it is set to 1, an empty input (just by pressing Return with nothing in input) is sent to the input callback, which receives an empty string.
2017-07-04api: add argument "recurse_subdirs" in function exec_on_files()Sébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-08-16core: add optional argument "lowest", "highest" or level mask in command ↵Sébastien Helleu
/input hotlist_clear
2016-03-21core: 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-01-01core: update copyright datesSébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-08-29api: use microseconds instead of milliseconds in functions util_timeval_diff ↵Sébastien Helleu
and util_timeval_add
2014-08-16core: fix translation of message displayed after /upgradeSébastien Helleu
2014-06-10core: fix potential memory leak with infolists not freed in plugins (debian ↵Sébastien Helleu
#751108) The memory leak should not happen if infolists are properly freed by plugins, and it happened only on unload of plugins (or exit).
2014-05-09core: add commentSébastien Helleu
2014-05-08core: do not restore title of core buffer after /upgradeSébastien Helleu
2014-05-08core: fix memory leak when restoring buffers after /upgradeSébastien Helleu
2014-04-30Version 1.0-devSébastien Helleu
Yeah \o/
2014-04-12core: fix crash on "weechat --upgrade" if no .upgrade files are foundSébastien Helleu
2014-04-05core: fix restoration of core buffer properties after /upgradeSébastien Helleu
2014-04-05core: add hidden buffers, add options hide/unhide in command /bufferSébastien Helleu
2014-04-03core: close .upgrade files before deleting them after /upgradeSébastien Helleu
2014-04-01core: add default key alt-'-' to toggle filters in current buffer (closes #17)Sébastien Helleu
2014-03-25core: save/restore buffer property "clear" on /upgradeSebastien Helleu
2014-03-25core: save/restore buffer property "day_change" on /upgradeSebastien Helleu
2014-02-10api: add integer return code for functions hook_{signal|hsignal}_sendSebastien Helleu
2014-01-21core: rename option weechat.look.save_layout_on_exit to ↵Sebastien Helleu
weechat.look.store_layout_on_exit, replace "save" by "store" for layouts
2014-01-01core: update copyright datesSebastien Helleu
2013-12-15core: 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-07-27core: add secured data with optional encryption in file sec.confSebastien Helleu
2013-03-29core: fix uninitialized variable when saving layout for windows in upgradeSebastien Helleu
2013-03-17core: add support of multiple layouts (task #11274)Sebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-12-08api: allow creation of structure with hdata_update (allowed for hdata "history")Sebastien Helleu
2012-01-08core: update copyright datesSebastien Helleu
2011-11-21core: add "full_name" in buffer structureSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-08-14core: allow empty short name on buffers (name is used if not set)Sebastien Helleu
2011-08-05core: save and restore layout for buffers and windows on /upgradeSebastien Helleu
2011-06-15core: add local variable "highlight_regex" in buffersSebastien Helleu
2011-04-23core: add buffer to hotlist if away is set on buffer (even if buffer is ↵Sebastien Helleu
displayed) (task #10948), do not update hotlist during upgrade
2011-04-11core: add messages counts in hotlist for each buffer, option ↵Sebastien Helleu
weechat.look.hotlist_buffer_separator and tag "notify_none" New options: - weechat.look.hotlist_buffer_separator - weechat.look.hotlist_count_max - weechat.look.hotlist_count_min_msg - weechat.color.status_count_msg - weechat.color.status_count_private - weechat.color.status_count_highlight - weechat.color.status_count_other
2011-01-01Update copyright datesSebastien Helleu
2011-01-01Add new command /colorSebastien Helleu
2010-12-26Add info "weechat_upgrading", signal "upgrade_ended", display duration of ↵Sebastien Helleu
upgrade
2010-11-29Replace buffer local variable "no_highlight_nicks" by "hotlist_max_level_nicks"Sebastien Helleu
2010-10-31Remove dead assignmentsSebastien 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-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu