Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-01 | core: replace "long unsigned int" by "unsigned long" | Sébastien Helleu | |
2018-05-18 | script: fix memory leak in case of invalid XML content in list of scripts | Sébastien Helleu | |
2018-02-08 | script: change default value of option script.look.sort from "p,n" to "i,p,n" | Sébastien Helleu | |
2018-01-29 | core: fix typo: scripts manager -> script manager | Sébastien Helleu | |
2018-01-14 | core: reinitialize config file pointer to NULL after an error on section ↵ | Sébastien Helleu | |
creation | |||
2018-01-07 | core: fix some styles | Sébastien Helleu | |
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-09-23 | core, plugins: check return code of strftime function | Sébastien Helleu | |
2017-09-03 | script: add support of PHP scripts | Sébastien Helleu | |
2017-08-12 | core: fix cast of time_t (to "long long" instead of "long") (closes #1051) | Sébastien Helleu | |
2017-08-10 | core: remove value for first #define in headers, add "PLUGIN" in plugin headers | Sébastien Helleu | |
2017-07-22 | script: replace scripts iset.pl and buffers.pl by go.py and urlserver.py in ↵ | Sébastien Helleu | |
examples | |||
2017-07-11 | script: add local variable "filter" in the script buffer (closes #1037) | Sébastien Helleu | |
2017-07-08 | fset: fix priority of plugin (load it after all other plugins) | Sébastien Helleu | |
This fixes a refresh problem of options after /upgrade in fset buffer. | |||
2017-07-04 | api: add argument "recurse_subdirs" in function exec_on_files() | 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-03 | core, script: remove unused config section variables | Simmo Saan | |
2017-05-15 | script: fix typo in a comment | Sébastien Helleu | |
2017-05-10 | script: remove dead assignment in function script_action_install_process_cb | Sébastien Helleu | |
2017-04-23 | script: remove option script.scripts.url_force_https, use HTTPS by default ↵ | Sébastien Helleu | |
in option script.scripts.url (issue #253) | |||
2017-03-31 | script: move default mouse keys for script plugin from core to script-mouse.c | Sébastien Helleu | |
2017-03-25 | script: check that script pointer is not NULL in function "script_repo_free" | Sébastien Helleu | |
2017-01-13 | tests: fix compilation of tests on FreeBSD 11 | Sébastien Helleu | |
Some includes were missing in .h files, and the tests must be linked with intl and execinfo on FreeBSD. | |||
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-12-01 | script: reload a script after upgrade only if it was loaded, set autoload ↵ | Sébastien Helleu | |
only if the script was auto-loaded (closes #855) | |||
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-19 | script: force refresh of scripts buffer after download of scripts list ↵ | Sébastien Helleu | |
(closes #693) | |||
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-12-10 | script: update help on /script search | Sébastien Helleu | |
2015-12-09 | script: add completion with languages and extensions, support search by ↵ | Sébastien Helleu | |
language/extension in /script search | |||
2015-12-02 | script: fix comment | Sébastien Helleu | |
2015-08-24 | script: add option script.scripts.download_timeout | Sébastien Helleu | |
2015-06-26 | script: call function string_eval_path_home() to evaluate scripts path | Sébastien Helleu | |
2015-06-21 | script: rename option script.scripts.dir to script.scripts.path (issue #388) | Sébastien Helleu | |
2015-06-19 | script: evaluate content of option script.scripts.dir (issue #388) | Sébastien Helleu | |
2015-03-18 | script: fix state of script plugins when list of scripts has not been downloaded | Sébastien Helleu | |
The problem happened when doing "/script load script.py" if the scripts list has not been downloaded (with "/script update"): WeeChat displays that python plugin is not loaded (which is wrong). | |||
2015-03-10 | script: add note about HTTPS in /help script.scripts.url | Sébastien Helleu | |
2015-03-07 | javascript: add new plugin to run javascript scripts in WeeChat | Sébastien Helleu | |
This plugin was originally written by Koka El Kiwi (repository: https://github.com/KokaKiwi/weechat-js-plugin). This plugin uses Google V8 engine to execute JS scripts. | |||
2015-01-15 | core: add priority in plugins to initialize them in order | Sébastien Helleu | |
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer, irc, relay, guile/lua/perl/python/ruby/tcl, script. | |||
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-12-01 | script: rename callback for infolist "script_script" | Sébastien Helleu | |
2014-11-22 | api: return value in function command(), remove WeeChat error after command ↵ | Sébastien Helleu | |
callback if return code is WEECHAT_RC_ERROR | |||
2014-11-15 | script: add option script.scripts.url_force_https (closes #253) | Sébastien Helleu | |
2014-08-22 | script: fix crash on "/script update" if a script detail is displayed in ↵ | Sébastien Helleu | |
buffer (closes #177) | |||
2014-08-10 | script: fix potential crash in case of malloc error | Sébastien Helleu | |
2014-07-14 | script: fix display of curl errors | Sébastien Helleu | |
2014-07-01 | core: remove "www" in weechat.org URLs | Sébastien Helleu | |
2014-05-24 | api: add argument "flags" in function hdata_new_list | Sébastien Helleu | |
2014-04-12 | api: allow wildcard "*" inside the mask in function string_match | Sébastien Helleu | |
2014-04-12 | core: use lower case for CMake keywords | Sébastien Helleu | |