summaryrefslogtreecommitdiff
path: root/src/core/wee-debug.c
AgeCommit message (Collapse)Author
2016-07-09core: rename function string_iconv_fprintf to string_fprintfSébastien Helleu
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-02-22core: fix long linesSébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-07-15core: add variables with count of hooksSébastien Helleu
2015-04-30core: add comments after some #endifSébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-08-30core: add debug functions to measure time spent in code/functionsSébastien Helleu
2014-03-18core: update the message displayed on crashSebastien Helleu
Add a reference to user's guide, do not ask user to send the crash log file any more (it may have private data and is not needed in most cases).
2014-01-01core: update copyright datesSebastien Helleu
2013-11-18core: use #ifdef to check if versions are defined in signal "debug_libs"Sebastien Helleu
2013-11-18core: remove "v" before versions displayed by /debug libsSebastien Helleu
2013-11-17core: add option "libs" for command /debug, add signal "debug_libs"Sebastien Helleu
2013-11-17core: remove obsolete signals "debug_buffer" and "debug_windows"Sebastien Helleu
2013-08-02Merge branch 'secured-data'Sebastien Helleu
2013-08-02core: rename binary and man page from "weechat-curses" to "weechat" (task ↵Sebastien Helleu
#11027) A symbolic link weechat-curses -> weechat is now created (by both cmake and configure), so that the /upgrade will work from an old version. However, if you upgrade from an old version, it is recommended to force the use of the new binary name with the command: `/upgrade /path/to/weechat` (replace the path accordingly).
2013-07-30core: use variable "items_count" directly from hashtable without calling ↵Sebastien Helleu
function hashtable_get_integer
2013-03-17core: fix typos in many comments and some stringsSebastien Helleu
2013-02-14core: add option "dirs" for command /debugSebastien 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-10-21core: remove duplicated #includeSebastien Helleu
2012-08-27api: allow update for some variables of hdata, add new functions ↵Sebastien Helleu
hdata_update and hdata_set
2012-01-08core: update copyright datesSebastien Helleu
2011-12-07core: add option "hooks" for command /debugSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-07-05core: add context "search" for keys (to define keys used during search in ↵Sebastien Helleu
buffer with ctrl+"r")
2011-06-26core: many improvements on hdataSebastien 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-13core: add "hdata" (direct access to WeeChat/plugin data)Sebastien Helleu
2011-06-01core: add option "infolists" for command /debugSebastien Helleu
2011-05-07core: improve output of /debug windowsSebastien Helleu
2011-02-21Fix typo in /debug windowsSebastien Helleu
2011-02-10Add option "memory" to command /debugSebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2010-09-17Add optional plugin name for command /debug dump and signal "debug_dump"Sebastien Helleu
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
2010-01-03Update copyright datesSebastien Helleu
2009-12-16Add option "term" for command /debug: display infos about terminal and ↵Sebastien Helleu
available colors
2009-04-26Remove time in weechat.log file when dumping data (crash or user is asking dump)Sebastien Helleu
2009-01-04Remove unused functions and prototypesSebastien Helleu
2009-01-03Update copyright datesSebastien Helleu
2008-11-04Fix bug with pointer conversions on 64 bits architectureSebastien Helleu
2008-10-02Add new /layout command and save_layout_on_exit config option, to ↵Sebastien Helleu
save/restore windows and buffers order (task #5453)
2008-08-19Reintroduce /upgrade command, working only with core and IRC plugin todaySebastien Helleu
Command will be improved in near future and other plugins like xfer will be modified to manage upgrade process.
2008-06-03Add "const" keyword for some "char *" function arguments (core and plugins API)Sebastien Helleu
2008-05-06Do not clean all GUI objects when crashing after SIGSEGV (this can cause ↵Sebastien Helleu
crash inside crash!)
2008-04-15Added keys by buffer (useful for buffers with free content that need own keys)Sebastien Helleu
These keys can be set thru API function "buffer_set", for example: weechat_buffer_set(my_buffer, "key_bind_meta2-A", "/mycommand up"); weechat_buffer_set(my_buffer, "key_bind_meta2-B", "/mycommand down"); weechat_buffer_set(my_buffer, "key_unbind_meta2-B", ""); weechat_buffer_set(my_buffer, "key_unbind_*", ""); These keys are volatile and not saved in any config file. So they must be set when buffer is open.
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks