Kaydet (Commit) 081adcc5 authored tarafından Nick Treleaven's avatar Nick Treleaven

Add note about allowing appending of keybindings to groups without

breaking the API.
Undo unnecessary ABI change.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2395 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst a40ab7be
......@@ -2,6 +2,10 @@
* src/editor.c:
Fix Python auto-indentation when line endings are set to CR/LF.
* src/keybindings.h, src/plugindata.h:
Add note about allowing appending of keybindings to groups without
breaking the API.
Undo unnecessary ABI change.
2008-03-23 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
......@@ -71,6 +71,9 @@ extern GPtrArray *keybinding_groups; /* array of KeyBindingGroup pointers */
extern const gchar keybindings_keyfile_group_name[];
/* Note: keybinding_groups is not in the API, so we don't need to increment the ABI when
* appending keybindings or keygroups, as the _COUNT item shouldn't be used by plugins. */
/** Keybinding group IDs */
enum
{
......
......@@ -40,7 +40,7 @@ static const gint api_version = 50;
/* 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 = 23;
static const gint abi_version = 22;
/** This performs runtime checks that try to ensure:
* 1. Geany ABI data types are compatible with this plugin.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment