summaryrefslogtreecommitdiff
path: root/src/plugins/plugins.c
AgeCommit message (Collapse)Author
2006-04-01Fixed plugin command handler call when no argument is givenSebastien Helleu
2006-03-30Added keyboard handler to plugin APISebastien Helleu
2006-03-21Aliases are executed before WeeChat/IRC commands, /builtin command addedSebastien Helleu
2006-02-20Added new plugin API function: remove_infobarSebastien Helleu
2006-02-19Added timer handler for pluginsSebastien Helleu
2006-02-18Fixed message displayed when a command handler failed (now "failed" instead ofSebastien Helleu
"command not found")
2006-02-16Updated doc, renamed functions in plugins APISebastien Helleu
2006-02-16make possible to log with plugins / scriptsEmmanuel Bouthenot
2006-01-31extending plugins/scripts API by adding get_server_info, get_channel_info ↵Emmanuel Bouthenot
and get_nick_info
2006-01-25Added new command line argument for setting WeeChat homedir (-d or --dir) ↵Sebastien Helleu
(patch from Gwenn)
2006-01-22Fixed bugs: buffer detection in plugins/scripts commands, and /history commandSebastien Helleu
2006-01-14Reverse order for unloading plugins (fixes crash on FreeBSD)Sebastien Helleu
2006-01-04New year in copyright, FSF address changedSebastien Helleu
2005-12-16Added completion system for plugins/scripts commands, fixed plugins autoloadSebastien Helleu
2005-11-29Added server/channel arg to /buffer command for jumping to bufferSebastien Helleu
2005-11-06Fixed bugs in "get_info" and "command" interface functions of pluginsSebastien Helleu
2005-11-05Fixed server detection when using "command" interface function from scriptsSebastien Helleu
2005-10-30Added command line arguments to disable auto-connect to servers and plugins ↵Sebastien Helleu
auto-load
2005-10-30- added new setting (look_one_server_buffer): use same buffer for all serversSebastien Helleu
- fixed DCC bug when looking for ports in range
2005-10-28Added new return codes for plugin handlers, to discard messages for WeeChat, ↵Sebastien Helleu
plugins, or both.
2005-10-26Fixed Perl bugs with returned valuesSebastien Helleu
2005-10-25- Added options for /plugin command: autoload, reload, unloadSebastien Helleu
- Added new plugin functions, for C plugins and scripts: set_config, get_plugin_config, set_plugin_config - Added new script function: remove_handler
2005-10-23Added new plugins functions: set_config, get_plugin_config, set_plugin_config.Sebastien Helleu
New file is used to store plugin variables (~/.weechat/plugins.rc)
2005-10-23Converted old Ruby interface to new plugin system (Ruby plugin still NOT ok!)Sebastien Helleu
2005-10-17Moved some functions in source codeSebastien Helleu
2005-10-17Changes in plugins and scripts plugins:Sebastien Helleu
- get_info("version") now returns only version - added get_config() function to read config options
2005-10-17Auto-load plugins in user's plugins path (before WeeChat system lib dir)Sebastien Helleu
2005-10-16Added "weechatdir" info for compatibility with old scripts (now DEPRECATED, useSebastien Helleu
"weechat_dir" instead)
2005-10-15New plugin interface (loads dynamic C libraries)Sebastien Helleu
2005-09-03Fixed bug with strings comparison (str[n]casecmp) and some locales (like ↵Sebastien Helleu
turkish), now using ASCII comparison
2005-08-21Added Ruby plugins skeletonSebastien Helleu
2005-06-16Fixed plugins "print" and "prnt" functions: now ok for writing on server buffersSebastien Helleu
2005-05-08Plugin message handler is now called for own messages (as "privmsg" IRC ↵Sebastien Helleu
command, with "localhost" as host to differenciate from other messages)
2005-05-07Fixed buffer detection for Perl/Python "print" and "command" functionsSebastien Helleu
2005-05-05Allow only server (with blank channel) for buffer search (for print & ↵Sebastien Helleu
command functions)
2005-05-05Improved Perl interface and some changes in Python:Sebastien Helleu
- function "print_with_channel" was removed - function "command" now runs weechat command or send text to channel - Perl functions are now called with weechat::name (instead of IRC::name) - IRC::xxx functions are still active for compatibility with old scripts
2005-05-01Added Python plugin supportSebastien Helleu
2005-01-31Fixed many memory leaksSebastien Helleu
2005-01-26Away nicks are now displayed with another colorSebastien Helleu
2005-01-16Improved completion (now completes commands args), fixed color bug (gray ↵Sebastien Helleu
removed, replaced by default), fixed crash when unknown section with option(s) in config file, fixed IRC commands: /op, /deop, /voice, /devoice
2005-01-01Version 0.0.9Sebastien Helleu
2004-10-03Added IRC::command function for Perl scriptsSebastien Helleu
2004-01-24Secured code to prevent buffer overflows and memory leaksSebastien Helleu
2003-12-31New copyrightSebastien Helleu
2003-12-26Perl scripts auto-load, if no path given, look in ~/.weechat/perl when ↵uid67137
loading Perl script, auto create plugin directories at startup (~/.weechat/perl, /perl/autoload, /python, /python/autoload, /ruby, /ruby/autoload)
2003-11-30- added IRC::get_info function for Perl scriptsSebastien Helleu
- cleanup code in main() function of weechat.c - fixed bug when unloading all Perl scripts (now end and restart Perl interpreter)
2003-11-29Added plugin prefix ("=P=") in front of scripts messagesSebastien Helleu
2003-11-23- Perl unloading is now ok (unload all scripts),Sebastien Helleu
- /perl prints all Perl scripts, - error if registering 2 Perl scripts with same (internal) name.
2003-11-22Renamed PLUGIN_* macros and fixed bug in "IRC::add_message_handler" functionSebastien Helleu
2003-11-22Added Perl command handlersSebastien Helleu