Revision: 551
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=551&view=rev
Author: frlan
Date: 2009-03-17 00:23:17 +0000 (Tue, 17 Mar 2009)
Log Message:
-----------
Adjust minimum version of Geany for plugins/trunk to 0.16
Modified Paths:
--------------
trunk/wscript
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2009-03-16 23:50:10 UTC (rev 550)
+++ trunk/wscript 2009-03-17 00:23:17 UTC (rev 551)
@@ -208,7 +208,7 @@
conf.check_cfg(package='gtk+-2.0', atleast_version='2.6.0', uselib_store='GTK',
mandatory=True, args='--cflags --libs')
- conf.check_cfg(package='geany', atleast_version='0.15', mandatory=True, args='--cflags --libs')
+ conf.check_cfg(package='geany', atleast_version='0.16', mandatory=True, args='--cflags --libs')
gtk_version = conf.check_cfg(modversion='gtk+-2.0') or 'Unknown'
geany_version = conf.check_cfg(modversion='geany') or 'Unknown'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 550
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=550&view=rev
Author: andrew_janke
Date: 2009-03-16 23:50:10 +0000 (Mon, 16 Mar 2009)
Log Message:
-----------
* use VERSION instead of static string (patch from Frank)
Modified Paths:
--------------
trunk/shiftcolumn/ChangeLog
trunk/shiftcolumn/src/shiftcolumn.c
Modified: trunk/shiftcolumn/ChangeLog
===================================================================
--- trunk/shiftcolumn/ChangeLog 2009-03-16 23:22:28 UTC (rev 549)
+++ trunk/shiftcolumn/ChangeLog 2009-03-16 23:50:10 UTC (rev 550)
@@ -1,3 +1,7 @@
+2009-03-17 Andrew L Janke <a.janke(a)gmail.com>
+
+ * src/shiftcolumn.c: Added VERSION instead of static string
+
2009-03-12 Andrew L Janke <a.janke(a)gmail.com>
* Added dk translation - Thanks Anders
Modified: trunk/shiftcolumn/src/shiftcolumn.c
===================================================================
--- trunk/shiftcolumn/src/shiftcolumn.c 2009-03-16 23:22:28 UTC (rev 549)
+++ trunk/shiftcolumn/src/shiftcolumn.c 2009-03-16 23:50:10 UTC (rev 550)
@@ -45,7 +45,7 @@
PLUGIN_VERSION_CHECK(130);
PLUGIN_SET_INFO(_("Shift Column"),
_("Shift a selection left and right"),
- "0.1", "Andrew L Janke <a.janke(a)gmail.com>");
+ VERSION, "Andrew L Janke <a.janke(a)gmail.com>");
static GtkWidget *menu_item_shift_left = NULL;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 547
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=547&view=rev
Author: frlan
Date: 2009-03-16 20:43:37 +0000 (Mon, 16 Mar 2009)
Log Message:
-----------
GeanyLaTeX: Fix of a typo at header guards. Thanks to Enrico for reporting
Modified Paths:
--------------
trunk/geanylatex/src/letters.h
Modified: trunk/geanylatex/src/letters.h
===================================================================
--- trunk/geanylatex/src/letters.h 2009-03-13 17:24:17 UTC (rev 546)
+++ trunk/geanylatex/src/letters.h 2009-03-16 20:43:37 UTC (rev 547)
@@ -21,7 +21,7 @@
#ifndef LETTERS_H
-#define LETTER_H
+#define LETTERS_H
#include "geanylatex.h"
#include "datatypes.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 546
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=546&view=rev
Author: eht16
Date: 2009-03-13 17:24:17 +0000 (Fri, 13 Mar 2009)
Log Message:
-----------
Make the check for a valid URI a bit stricter to reduce the amount of false-positives.
Modified Paths:
--------------
trunk/addons/src/ao_openuri.c
Modified: trunk/addons/src/ao_openuri.c
===================================================================
--- trunk/addons/src/ao_openuri.c 2009-03-13 00:17:07 UTC (rev 545)
+++ trunk/addons/src/ao_openuri.c 2009-03-13 17:24:17 UTC (rev 546)
@@ -193,10 +193,16 @@
static gboolean ao_uri_is_link(const gchar *uri)
{
+ gchar *dot;
+
g_return_val_if_fail (uri != NULL, FALSE);
- /* this might cause too many matches, maybe we should require two dots */
- return (strchr(uri, '.') && ! strchr(uri, ' '));
+ if ((dot = strchr(uri, '.')) && *dot != '\0')
+ { /* we require two dots and don't allow any spaces (www.domain.tld)
+ * unless we get too many matches */
+ return (strchr(dot + 1, '.') && ! strchr(uri, ' '));
+ }
+ return FALSE;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.