Update API version used inside plugin howto to a more recent version (API v211).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5888 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2011-08-15 19:26:36 +00:00
parent 24583dc507
commit 4db82ba7fa
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2011-08-15 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* doc/plugins.dox:
Update API version used inside plugin howto to a more recent version
(API v211).
2011-08-13 Colomban Wendling <colomban(at)geany(dot)org> 2011-08-13 Colomban Wendling <colomban(at)geany(dot)org>
* src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h: * src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h:

View File

@ -233,7 +233,7 @@ PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world",
* need to implement the function that is called when your plugin is unloaded. * need to implement the function that is called when your plugin is unloaded.
* These functions are called plugin_init() and plugin_cleanup(). Let's see how it could look like: * These functions are called plugin_init() and plugin_cleanup(). Let's see how it could look like:
* @code * @code
PLUGIN_VERSION_CHECK(147) PLUGIN_VERSION_CHECK(211)
PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world", PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world",
"1.0", "Joe Doe <joe.doe@example.org>"); "1.0", "Joe Doe <joe.doe@example.org>");
@ -348,7 +348,7 @@ GeanyPlugin *geany_plugin;
GeanyData *geany_data; GeanyData *geany_data;
GeanyFunctions *geany_functions; GeanyFunctions *geany_functions;
PLUGIN_VERSION_CHECK(147) PLUGIN_VERSION_CHECK(211)
PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world", PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world",
"1.0", "John Doe <john.doe@example.org>"); "1.0", "John Doe <john.doe@example.org>");