SF.net SVN: geany: [2611] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Fri May 23 14:14:09 UTC 2008


Revision: 2611
          http://geany.svn.sourceforge.net/geany/?rev=2611&view=rev
Author:   ntrel
Date:     2008-05-23 07:14:04 -0700 (Fri, 23 May 2008)

Log Message:
-----------
Increment plugin ABI, API versions for plugin_callbacks change.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/plugindata.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-05-23 12:29:32 UTC (rev 2610)
+++ trunk/ChangeLog	2008-05-23 14:14:04 UTC (rev 2611)
@@ -5,6 +5,8 @@
    Make GeanyCallback, geany_callbacks deprecated, and replace with
    PluginCallback, plugin_callbacks. This is because the array is owned
    by the plugin, not Geany.
+ * src/plugindata.h:
+   Increment plugin ABI, API versions for plugin_callbacks change.
 
 
 2008-05-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h	2008-05-23 12:29:32 UTC (rev 2610)
+++ trunk/src/plugindata.h	2008-05-23 14:14:04 UTC (rev 2611)
@@ -35,12 +35,12 @@
 
 /* The API version should be incremented whenever any plugin data types below are
  * modified or appended to. */
-static const gint api_version = 61;
+static const gint api_version = 62;
 
 /* The ABI version should be incremented whenever existing fields in the plugin
  * data types below have to be changed or reordered. It should stay the same if fields
  * are only appended, as this doesn't affect existing fields. */
-static const gint abi_version = 31;
+static const gint abi_version = 32;
 
 /** Check the plugin can be loaded by Geany.
  * This performs runtime checks that try to ensure:


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list