From a4eee36359228d8639ad459a716f4e9bad3f5461 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 2 May 2011 16:46:34 +0000 Subject: [PATCH] Bump plugin API version Nothing in the API actually changed, but the project->file_patterns fields used not to be set or used at all; so bump the API to let a plugin depend on this field to be actually useful. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5756 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 7 +++++++ src/plugindata.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9f60445bd..8a97690a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-05-02 Colomban Wendling + + * src/plugindata.h: + Bump plugin API version so a plugin can know the project file + patterns are visible by the user. + + 2011-05-01 Colomban Wendling * src/search.c: diff --git a/src/plugindata.h b/src/plugindata.h index 444f5ed7a..64c3680b0 100644 --- a/src/plugindata.h +++ b/src/plugindata.h @@ -54,7 +54,7 @@ * @warning You should not test for values below 200 as previously * @c GEANY_API_VERSION was defined as an enum value, not a macro. */ -#define GEANY_API_VERSION 210 +#define GEANY_API_VERSION 211 /** The Application Binary Interface (ABI) version, incremented whenever * existing fields in the plugin data types have to be changed or reordered. -- 2.11.4.GIT