Revision: 5888 http://geany.svn.sourceforge.net/geany/?rev=5888&view=rev Author: frlan Date: 2011-08-15 19:26:36 +0000 (Mon, 15 Aug 2011)
Log Message: ----------- Update API version used inside plugin howto to a more recent version (API v211).
Modified Paths: -------------- trunk/ChangeLog trunk/doc/plugins.dox
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2011-08-13 20:44:39 UTC (rev 5887) +++ trunk/ChangeLog 2011-08-15 19:26:36 UTC (rev 5888) @@ -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>
* src/msgwindow.c, src/msgwindow.h, src/ui_utils.c, src/ui_utils.h:
Modified: trunk/doc/plugins.dox =================================================================== --- trunk/doc/plugins.dox 2011-08-13 20:44:39 UTC (rev 5887) +++ trunk/doc/plugins.dox 2011-08-15 19:26:36 UTC (rev 5888) @@ -233,7 +233,7 @@ * 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: * @code -PLUGIN_VERSION_CHECK(147) +PLUGIN_VERSION_CHECK(211)
PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world", "1.0", "Joe Doe joe.doe@example.org"); @@ -348,7 +348,7 @@ GeanyData *geany_data; GeanyFunctions *geany_functions;
-PLUGIN_VERSION_CHECK(147) +PLUGIN_VERSION_CHECK(211)
PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world", "1.0", "John Doe john.doe@example.org");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.