Kaydet (Commit) 1825a8dd authored tarafından Nick Treleaven's avatar Nick Treleaven

Make all plugins distributed with Geany have the same version number

as Geany.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1978 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 634bc6c3
2007-10-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* plugins/svndiff.c, plugins/export.c, plugins/demoplugin.c,
plugins/filebrowser.c, plugins/htmlchars.c, plugins/classbuilder.c:
Make all plugins distributed with Geany have the same version number
as Geany.
2007-10-25 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* plugins/svndiff.c:
......
......@@ -46,7 +46,7 @@ GeanyData *geany_data;
VERSION_CHECK(7)
PLUGIN_INFO(_("Class Builder"), _("Creates source files for new class types."), "0.1")
PLUGIN_INFO(_("Class Builder"), _("Creates source files for new class types."), VERSION)
enum
......
......@@ -52,7 +52,7 @@ GeanyData *geany_data;
VERSION_CHECK(7)
/* All plugins must set name, description and version. */
PLUGIN_INFO(_("Demo"), _("Example plugin."), "0.1")
PLUGIN_INFO(_("Demo"), _("Example plugin."), VERSION)
/* Callback when the menu item is clicked. */
......
......@@ -38,7 +38,7 @@ PluginFields *plugin_fields;
GeanyData *geany_data;
VERSION_CHECK(20)
PLUGIN_INFO(_("Export"), _("Exports the current file into different formats."), "0.2")
PLUGIN_INFO(_("Export"), _("Exports the current file into different formats."), VERSION)
#define doc_array geany_data->doc_array
#define scintilla geany_data->sci
......
......@@ -44,7 +44,7 @@ GeanyData *geany_data;
VERSION_CHECK(26)
PLUGIN_INFO(_("File Browser"), _("Adds a file browser tab to the sidebar."), "0.1")
PLUGIN_INFO(_("File Browser"), _("Adds a file browser tab to the sidebar."), VERSION)
enum
......
......@@ -42,7 +42,7 @@ GeanyData *geany_data;
VERSION_CHECK(7)
PLUGIN_INFO(_("HTML Characters"), _("Inserts HTML character entities like '&amp;'."), "0.1")
PLUGIN_INFO(_("HTML Characters"), _("Inserts HTML character entities like '&amp;'."), VERSION)
enum
......
......@@ -42,7 +42,7 @@ GeanyData *geany_data;
VERSION_CHECK(25)
PLUGIN_INFO(_("SVNdiff"), _("Plugin to create a patch of a file against svn"), "0.0.4")
PLUGIN_INFO(_("SVNdiff"), _("Plugin to create a patch of a file against svn"), VERSION)
/* Callback if menu item for the current procet or directory was acitvated */
static void svndirectory_activated(GtkMenuItem *menuitem, gpointer gdata)
......
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