summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/python/weechat-python.c
AgeCommit message (Collapse)Author
2009-03-18Remove some messages during startup about scripts and plugins loadedSebastien Helleu
It is still possible to see messages by changing debug level for "core" or plugins (perl, python, ruby, lua, tcl).
2009-03-06Add new hook type "process": launch command with fork and catch result ↵Sebastien Helleu
(rc/stdout/stderr) via callback
2009-02-20Fix crash in python plugin when callbacks are called during script ↵Sebastien Helleu
initialization
2009-02-19Fix bug with current script pointer when current script is unloadedSebastien Helleu
2009-02-08Add hook type "command_run", add new function "string_remove_color" in ↵Sebastien Helleu
plugin API (task #9089)
2009-01-03Update copyright datesSebastien Helleu
2008-11-29Add "displayed" and "highlight" arguments to callback for hook_printSebastien Helleu
2008-11-15Use of const for some functions returning "char *"Sebastien Helleu
2008-10-05Add Tcl script plugin (thanks to Dmitry Kobylin)Sebastien Helleu
2008-09-26Add some missing functions in API: hook_connect and infolist creationSebastien Helleu
2008-09-18Remove "category" for buffers (keep only name).Sebastien Helleu
2008-09-05Many changes in docSebastien Helleu
2008-08-30Add new hooks (info and infolist), IRC plugin now return infos and infolistsSebastien Helleu
2008-06-18Add new options for completion, optional stop instead of cycling with words ↵Sebastien Helleu
found
2008-06-03Add "const" keyword for some "char *" function arguments (core and plugins API)Sebastien Helleu
2008-06-02Add constants for config file read/write/set/unset callbacksSebastien Helleu
2008-05-15Add arguments for plugin init functions and "irc://.." command line option ↵Sebastien Helleu
for irc plugin
2008-04-30Fixed crash with scripts when WeeChat calls functions of many scripts at ↵Sebastien Helleu
same time with callbacks (bug #23109)
2008-04-11Improved /set command, added /unset command, new name for config files (*.conf)Sebastien Helleu
2008-03-23Removed sizeof(char) and useless type casts from void* to another pointer ↵Sebastien Helleu
type (patch from Leonid Evdokimov)
2008-03-23Check plugin version when loading it, to prevent crash when loading old pluginsSebastien Helleu
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks
2008-02-25Fix bug with weechat_plugin_end() function, now returns "int" everywhereSebastien Helleu
2008-02-21Added new plugin "debug"Sebastien Helleu
2008-02-02Use of sizeof(char) in all malloc/realloc for stringsSebastien Helleu
2008-01-27Added config file functions in plugins API, improved /reload and /save ↵Sebastien Helleu
commands (now possible to reload/save some files only), fixed completion bug
2008-01-21Removed use of config.h file in script plugins, not neededSebastien Helleu
2008-01-16Added new functions and script name completion in script plugins, fixed some ↵Sebastien Helleu
bugs in weelist management and script plugins New functions in script plugins API: gettext, ngettext, list_new, list_add, list_search, list_casesearch, list_get, list_set, list_next, list_prev, list_string, list_size, list_remove, list_remove_all, list_free.
2008-01-14Update of translations for scripts, fix bugs and code factorized in script ↵Sebastien Helleu
plugins
2008-01-13Migration of Lua plugin to new APISebastien Helleu
2008-01-13Migration of Ruby plugin to new API, new functions to dump script plugin ↵Sebastien Helleu
data to WeeChat log file
2008-01-12Migration of Python plugin to new API, bugs fixed in Perl/Python pluginsSebastien Helleu
2007-10-31Renamed sources files in script pluginsSebastien Helleu
2007-08-08Added "copy" and "rename" options to /server commandSebastien Helleu
2007-07-18Added "buffer_move" event handler to plugins API (task #6708)Sebastien Helleu
2007-07-02Replaced GPL 2 license by GPL 3Sebastien Helleu
2007-05-11Removed "prefix" data for server info in plugin API (oups, why did I add that ?)Sebastien Helleu
2007-05-11Code cleanup: renamed IRC functions to have uniform name (with prefix based ↵Sebastien Helleu
on source name), moved some functions
2007-03-09make arguments for function get_buffer_data() mandatory in plugins/scriptsEmmanuel Bouthenot
2007-03-06Added new return code in plugin API to force highlight (for message handlers ↵Sebastien Helleu
only)
2007-02-28fix some memory leaks in perl plugin/scriptEmmanuel Bouthenot
2007-02-28fix some memory leaks in python plugin/scriptEmmanuel Bouthenot
2007-02-27bug fix and code cleanup in plugins/scriptsEmmanuel Bouthenot
2007-02-17fix the possibility to load a perl script even if it doesn't call register() ↵Emmanuel Bouthenot
function
2007-02-12Added "call" option to /key command, added new key function "insert" to ↵Sebastien Helleu
insert text on command line (task #6468)
2007-02-05Added event handlers in plugin list commands outputs (/plugin and script ↵Sebastien Helleu
commands)
2007-02-05Added event handler to plugin APISebastien Helleu
2007-01-05Changed copyright date (2006 -> 2007)Sebastien Helleu
2006-11-08Added charset plugin (WeeChat is now full UTF-8 for internal data storage), ↵Sebastien Helleu
fixed compilation problems with FreeBSD, fixed status bar display bug
2006-10-29adding $weechat_dir/python in the top of sys.pathEmmanuel Bouthenot