mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 06:16:40 +02:00
Added macros for name/description/author/version/license of plugins
This commit is contained in:
@@ -38,9 +38,11 @@
|
||||
#include "../weechat-script.h"
|
||||
|
||||
|
||||
char plugin_name[] = "Lua";
|
||||
char plugin_version[] = "0.1";
|
||||
char plugin_description[] = "Lua scripts support";
|
||||
WEECHAT_PLUGIN_NAME("lua");
|
||||
WEECHAT_PLUGIN_DESCRIPTION("Lua plugin for WeeChat");
|
||||
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
||||
WEECHAT_PLUGIN_VERSION("0.1");
|
||||
WEECHAT_PLUGIN_LICENSE("GPL");
|
||||
|
||||
t_weechat_plugin *lua_plugin;
|
||||
|
||||
|
||||
@@ -39,9 +39,11 @@
|
||||
#include "../../weechat-plugin.h"
|
||||
#include "../weechat-script.h"
|
||||
|
||||
char plugin_name[] = "Perl";
|
||||
char plugin_version[] = "0.1";
|
||||
char plugin_description[] = "Perl scripts support";
|
||||
WEECHAT_PLUGIN_NAME("perl");
|
||||
WEECHAT_PLUGIN_DESCRIPTION("Perl plugin for WeeChat");
|
||||
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
||||
WEECHAT_PLUGIN_VERSION("0.1");
|
||||
WEECHAT_PLUGIN_LICENSE("GPL");
|
||||
|
||||
t_weechat_plugin *perl_plugin;
|
||||
|
||||
|
||||
@@ -36,9 +36,11 @@
|
||||
#include "../weechat-script.h"
|
||||
|
||||
|
||||
char plugin_name[] = "Python";
|
||||
char plugin_version[] = "0.1";
|
||||
char plugin_description[] = "Python scripts support";
|
||||
WEECHAT_PLUGIN_NAME("python");
|
||||
WEECHAT_PLUGIN_DESCRIPTION("Python plugin for WeeChat");
|
||||
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
||||
WEECHAT_PLUGIN_VERSION("0.1");
|
||||
WEECHAT_PLUGIN_LICENSE("GPL");
|
||||
|
||||
t_weechat_plugin *python_plugin;
|
||||
|
||||
|
||||
@@ -38,9 +38,11 @@
|
||||
#include "../weechat-script.h"
|
||||
|
||||
|
||||
char plugin_name[] = "Ruby";
|
||||
char plugin_version[] = "0.1";
|
||||
char plugin_description[] = "Ruby scripts support";
|
||||
WEECHAT_PLUGIN_NAME("ruby");
|
||||
WEECHAT_PLUGIN_DESCRIPTION("Ruby plugin for WeeChat");
|
||||
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
||||
WEECHAT_PLUGIN_VERSION("0.1");
|
||||
WEECHAT_PLUGIN_LICENSE("GPL");
|
||||
|
||||
t_weechat_plugin *ruby_plugin;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user