SF.net SVN: geany-plugins:[1603] trunk/geany-plugins/geanyvc
frlan at users.sourceforge.net
frlan at xxxxx
Mon Sep 27 07:09:55 UTC 2010
Revision: 1603
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1603&view=rev
Author: frlan
Date: 2010-09-27 07:09:55 +0000 (Mon, 27 Sep 2010)
Log Message:
-----------
GeanyVC: Make usage of PLUGIN_SET_TRANSLATABLE_INFO macro
Modified Paths:
--------------
trunk/geany-plugins/geanyvc/README
trunk/geany-plugins/geanyvc/src/geanyvc.c
Modified: trunk/geany-plugins/geanyvc/README
===================================================================
--- trunk/geany-plugins/geanyvc/README 2010-09-27 07:09:31 UTC (rev 1602)
+++ trunk/geany-plugins/geanyvc/README 2010-09-27 07:09:55 UTC (rev 1603)
@@ -14,7 +14,7 @@
implemented, but, hey, you don't need anything besides diff, log, status,
revert and commit most time.
-In order to use it you need Geany 0.16.
+In order to use it you need Geany 0.19.
Features
========
@@ -68,7 +68,7 @@
from the sources, you should be ready to go.
If you used a prepared package e.g. from your distribution you probably need
to install an additional package, this might be called geany-dev or geany-devel.
-Please note that in order to compile and use this plugin, you need Geany 0.15
+Please note that in order to compile and use this plugin, you need Geany 0.19
or later.
Furthermore you need, of course, a C compiler and the Make tool.
@@ -156,6 +156,6 @@
svn checkout http://geany-plugins.svn.sourceforge.net/svnroot/geany-plugins/trunk/geany-plugins
--
-2007-2008 by Yura Siamashka and Frank Lanitz
+2007-2010 by Yura Siamashka and Frank Lanitz
yurand2(at)gmail(dot)com
frank(at)frank(dot)uvena(dot)de
Modified: trunk/geany-plugins/geanyvc/src/geanyvc.c
===================================================================
--- trunk/geany-plugins/geanyvc/src/geanyvc.c 2010-09-27 07:09:31 UTC (rev 1602)
+++ trunk/geany-plugins/geanyvc/src/geanyvc.c 2010-09-27 07:09:55 UTC (rev 1603)
@@ -1,7 +1,7 @@
/*
* geanyvc.c - Plugin to geany light IDE to work with vc
*
- * Copyright 2007-2009 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+ * Copyright 2007-2010 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Copyright 2007-2009 Enrico Tröger <enrico.troeger at uvena.de>
* Copyright 2007 Nick Treleaven <nick.treleaven at btinternet.com>
* Copyright 2007-2009 Yura Siamashka <yurand2 at gmail.com>
@@ -45,9 +45,14 @@
GeanyData *geany_data;
GeanyFunctions *geany_functions;
-PLUGIN_VERSION_CHECK(115);
-PLUGIN_SET_INFO(_("GeanyVC"), _("Interface to different Version Control systems."), VERSION,
- _("Yura Siamashka <yurand2 at gmail.com>,\nFrank Lanitz <frank at frank.uvena.de>"));
+PLUGIN_VERSION_CHECK(188);
+PLUGIN_SET_TRANSLATABLE_INFO(
+ LOCALEDIR,
+ GETTEXT_PACKAGE,
+ _("GeanyVC"),
+ _("Interface to different Version Control systems."),
+ VERSION,
+ _("Yura Siamashka <yurand2 at gmail.com>,\nFrank Lanitz <frank at frank.uvena.de>"));
/* Some global variables */
static gboolean set_changed_flag;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Plugins-Commits
mailing list