SF.net SVN: geany: [1978] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Fri Oct 26 12:32:24 UTC 2007
Revision: 1978
http://geany.svn.sourceforge.net/geany/?rev=1978&view=rev
Author: ntrel
Date: 2007-10-26 05:32:23 -0700 (Fri, 26 Oct 2007)
Log Message:
-----------
Make all plugins distributed with Geany have the same version number
as Geany.
Modified Paths:
--------------
trunk/ChangeLog
trunk/plugins/classbuilder.c
trunk/plugins/demoplugin.c
trunk/plugins/export.c
trunk/plugins/filebrowser.c
trunk/plugins/htmlchars.c
trunk/plugins/svndiff.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/ChangeLog 2007-10-26 12:32:23 UTC (rev 1978)
@@ -1,3 +1,11 @@
+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:
Modified: trunk/plugins/classbuilder.c
===================================================================
--- trunk/plugins/classbuilder.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/classbuilder.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -46,7 +46,7 @@
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
Modified: trunk/plugins/demoplugin.c
===================================================================
--- trunk/plugins/demoplugin.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/demoplugin.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -52,7 +52,7 @@
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. */
Modified: trunk/plugins/export.c
===================================================================
--- trunk/plugins/export.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/export.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -38,7 +38,7 @@
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
Modified: trunk/plugins/filebrowser.c
===================================================================
--- trunk/plugins/filebrowser.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/filebrowser.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -44,7 +44,7 @@
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
Modified: trunk/plugins/htmlchars.c
===================================================================
--- trunk/plugins/htmlchars.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/htmlchars.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -42,7 +42,7 @@
VERSION_CHECK(7)
-PLUGIN_INFO(_("HTML Characters"), _("Inserts HTML character entities like '&'."), "0.1")
+PLUGIN_INFO(_("HTML Characters"), _("Inserts HTML character entities like '&'."), VERSION)
enum
Modified: trunk/plugins/svndiff.c
===================================================================
--- trunk/plugins/svndiff.c 2007-10-25 17:38:35 UTC (rev 1977)
+++ trunk/plugins/svndiff.c 2007-10-26 12:32:23 UTC (rev 1978)
@@ -42,7 +42,7 @@
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)
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