Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-09 | core: rename function string_iconv_fprintf to string_fprintf | Sébastien Helleu | |
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-22 | core: fix long lines | Sébastien Helleu | |
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-07-15 | core: add variables with count of hooks | Sébastien Helleu | |
2015-04-30 | core: add comments after some #endif | Sébastien Helleu | |
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-08-30 | core: add debug functions to measure time spent in code/functions | Sébastien Helleu | |
2014-03-18 | core: update the message displayed on crash | Sebastien 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-01 | core: update copyright dates | Sebastien Helleu | |
2013-11-18 | core: use #ifdef to check if versions are defined in signal "debug_libs" | Sebastien Helleu | |
2013-11-18 | core: remove "v" before versions displayed by /debug libs | Sebastien Helleu | |
2013-11-17 | core: add option "libs" for command /debug, add signal "debug_libs" | Sebastien Helleu | |
2013-11-17 | core: remove obsolete signals "debug_buffer" and "debug_windows" | Sebastien Helleu | |
2013-08-02 | Merge branch 'secured-data' | Sebastien Helleu | |
2013-08-02 | core: 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-30 | core: use variable "items_count" directly from hashtable without calling ↵ | Sebastien Helleu | |
function hashtable_get_integer | |||
2013-03-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-02-14 | core: add option "dirs" for command /debug | Sebastien Helleu | |
2013-01-01 | core: update copyright dates | Sebastien Helleu | |
2012-12-15 | core: move comments with description of C file to top of files | Sebastien Helleu | |
2012-12-13 | core: reformat comments for functions | Sebastien Helleu | |
2012-10-21 | core: remove duplicated #include | Sebastien Helleu | |
2012-08-27 | api: allow update for some variables of hdata, add new functions ↵ | Sebastien Helleu | |
hdata_update and hdata_set | |||
2012-01-08 | core: update copyright dates | Sebastien Helleu | |
2011-12-07 | core: add option "hooks" for command /debug | Sebastien Helleu | |
2011-10-26 | core: remove unneeded whitespace | Sebastien Helleu | |
2011-07-05 | core: add context "search" for keys (to define keys used during search in ↵ | Sebastien Helleu | |
buffer with ctrl+"r") | |||
2011-06-26 | core: many improvements on hdata | Sebastien 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-13 | core: add "hdata" (direct access to WeeChat/plugin data) | Sebastien Helleu | |
2011-06-01 | core: add option "infolists" for command /debug | Sebastien Helleu | |
2011-05-07 | core: improve output of /debug windows | Sebastien Helleu | |
2011-02-21 | Fix typo in /debug windows | Sebastien Helleu | |
2011-02-10 | Add option "memory" to command /debug | Sebastien Helleu | |
2011-01-01 | Update copyright dates | Sebastien Helleu | |
2010-09-17 | Add optional plugin name for command /debug dump and signal "debug_dump" | Sebastien Helleu | |
2010-06-22 | Update licenses and copyrights, add missing author names in sources | Sebastien Helleu | |
2010-04-08 | Reformat and add comments for description of C sources | Sebastien Helleu | |
2010-01-03 | Update copyright dates | Sebastien Helleu | |
2009-12-16 | Add option "term" for command /debug: display infos about terminal and ↵ | Sebastien Helleu | |
available colors | |||
2009-04-26 | Remove time in weechat.log file when dumping data (crash or user is asking dump) | Sebastien Helleu | |
2009-01-04 | Remove unused functions and prototypes | Sebastien Helleu | |
2009-01-03 | Update copyright dates | Sebastien Helleu | |
2008-11-04 | Fix bug with pointer conversions on 64 bits architecture | Sebastien Helleu | |
2008-10-02 | Add new /layout command and save_layout_on_exit config option, to ↵ | Sebastien Helleu | |
save/restore windows and buffers order (task #5453) | |||
2008-08-19 | Reintroduce /upgrade command, working only with core and IRC plugin today | Sebastien Helleu | |
Command will be improved in near future and other plugins like xfer will be modified to manage upgrade process. | |||
2008-06-03 | Add "const" keyword for some "char *" function arguments (core and plugins API) | Sebastien Helleu | |
2008-05-06 | Do not clean all GUI objects when crashing after SIGSEGV (this can cause ↵ | Sebastien Helleu | |
crash inside crash!) | |||
2008-04-15 | Added 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-22 | Added tags for lines and custom filtering by tags or regex (task #7674), ↵ | Sebastien Helleu | |
fixed many memory leaks |