Revision: 1656
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1656&view=rev
Author: eht16
Date: 2010-10-16 15:08:43 +0000 (Sat, 16 Oct 2010)
Log Message:
-----------
Update download link (patch by Michael Spahn, thanks).
Modified Paths:
--------------
trunk/geany-plugins/addons/README
Modified: trunk/geany-plugins/addons/README
===================================================================
--- trunk/geany-plugins/addons/README 2010-10-16 14:53:15 UTC (rev 1655)
+++ trunk/geany-plugins/addons/README 2010-10-16 15:08:43 UTC (rev 1656)
@@ -62,9 +62,8 @@
The Addons plugin is part of the combined Geany Plugins release.
For more information and downloads, please visit
-http://plugins.geany.org/geany-plugins/
+http://plugins.geany.org/index.php?site=downloads&hash=md5
-
Development Code
^^^^^^^^^^^^^^^^
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1653
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1653&view=rev
Author: dimitrov-adrian
Date: 2010-10-11 16:25:41 +0000 (Mon, 11 Oct 2010)
Log Message:
-----------
Fixes possible segfaults with bookmarks in ubuntu 10.10, README and ChangeLog updates.
Modified Paths:
--------------
trunk/geany-plugins/treebrowser/ChangeLog
trunk/geany-plugins/treebrowser/README
trunk/geany-plugins/treebrowser/src/treebrowser.c
Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog 2010-10-10 17:00:38 UTC (rev 1652)
+++ trunk/geany-plugins/treebrowser/ChangeLog 2010-10-11 16:25:41 UTC (rev 1653)
@@ -37,9 +37,17 @@
| Development release ChangeLog |
+-------------------------------+
+
09-10-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
* src/treebrowser.c
+ Fixes possible segfaults with bookmarks in ubuntu 10.10
+ * README
+ Update and fixes website compitables
+
+09-10-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
+
+ * src/treebrowser.c
Fixed translatable info
(thanks to Frank Lanitz <frank(at)frank(dot)uvena(dot)de> for patch)
Fixed fixed bad code and compilation warning in unused vars
Modified: trunk/geany-plugins/treebrowser/README
===================================================================
--- trunk/geany-plugins/treebrowser/README 2010-10-10 17:00:38 UTC (rev 1652)
+++ trunk/geany-plugins/treebrowser/README 2010-10-11 16:25:41 UTC (rev 1653)
@@ -1,27 +1,27 @@
.. |(version)| replace:: 0.2
Treebrowser plugin
-=======
+==================
.. contents::
+
About
=====
Treebrowser is plugin that provide tree like file browser for geany`s sidebar.
It is on beta state, then all reports are welcome.
+
Features
========
* Project following
- * Filesystem functionality (create, rename, delete files or directoreis)
- * (EXPERIMENTAL) gtk bookmark showing
- * Open path externaly (using predefined filebrowser ex.: nautilus, thunar, ...)
- * Open path in terminal
- * Copy file path to clipboard
+ * Basic filesystem functionality
+ * GTK bookmarks support
* Filters in browser
+
Requirements
============
* GTK >= 2.8.0
@@ -38,11 +38,11 @@
License
=======
-Treebrowser plugin is distrubuted under the same license as the geany.
+Treebrowser plugin is distrubuted under the same license as and geany.
Ideas, questions, patches and bug reports
-=======
+=========================================
Report them at http://sourceforge.net/tracker/?group_id=222729.
Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c
===================================================================
--- trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-10 17:00:38 UTC (rev 1652)
+++ trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-11 16:25:41 UTC (rev 1653)
@@ -442,14 +442,14 @@
gtk_tree_store_set(treestore, &bookmarks_iter,
TREEBROWSER_COLUMN_ICON, GTK_STOCK_ABOUT,
TREEBROWSER_COLUMN_NAME, _("Bookmarks"),
- TREEBROWSER_COLUMN_URI, FALSE,
+ TREEBROWSER_COLUMN_URI, NULL,
-1);
gtk_tree_store_insert_after(treestore, &iter, NULL, &bookmarks_iter);
gtk_tree_store_set(treestore, &iter,
TREEBROWSER_COLUMN_ICON, NULL,
TREEBROWSER_COLUMN_NAME, NULL,
- TREEBROWSER_COLUMN_URI, FALSE,
+ TREEBROWSER_COLUMN_URI, NULL,
TREEBROWSER_COLUMN_FLAG, TREEBROWSER_FLAGS_SEPARATOR,
-1);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1649
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1649&view=rev
Author: frlan
Date: 2010-10-10 16:56:41 +0000 (Sun, 10 Oct 2010)
Log Message:
-----------
GeanyVC: Fix some compiler warnings about no previous prototypes
Modified Paths:
--------------
trunk/geany-plugins/geanyvc/src/externdiff.c
trunk/geany-plugins/geanyvc/src/geanyvc.h
trunk/geany-plugins/geanyvc/src/utils.c
Added Paths:
-----------
trunk/geany-plugins/geanyvc/src/utils.h
Modified: trunk/geany-plugins/geanyvc/src/externdiff.c
===================================================================
--- trunk/geany-plugins/geanyvc/src/externdiff.c 2010-10-10 09:30:22 UTC (rev 1648)
+++ trunk/geany-plugins/geanyvc/src/externdiff.c 2010-10-10 16:56:41 UTC (rev 1649)
@@ -25,6 +25,9 @@
extern GeanyFunctions *geany_functions;
+const gchar *get_external_diff_viewer(void);
+
+
enum
{
EXTERNAL_DIFF_MELD,
Modified: trunk/geany-plugins/geanyvc/src/geanyvc.h
===================================================================
--- trunk/geany-plugins/geanyvc/src/geanyvc.h 2010-10-10 09:30:22 UTC (rev 1648)
+++ trunk/geany-plugins/geanyvc/src/geanyvc.h 2010-10-10 16:56:41 UTC (rev 1649)
@@ -1,5 +1,5 @@
/*
- * 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(a)uvena.de>
* Copyright 2007 Nick Treleaven <nick.treleaven(a)btinternet.com>
* Copyright 2007-2009 Yura Siamashka <yurand2(a)gmail.com>
Modified: trunk/geany-plugins/geanyvc/src/utils.c
===================================================================
--- trunk/geany-plugins/geanyvc/src/utils.c 2010-10-10 09:30:22 UTC (rev 1648)
+++ trunk/geany-plugins/geanyvc/src/utils.c 2010-10-10 16:56:41 UTC (rev 1649)
@@ -20,6 +20,7 @@
#include <glib.h>
#include "geanyplugin.h"
+#include "utils.h"
extern GeanyData *geany_data;
extern GeanyFunctions *geany_functions;
Added: trunk/geany-plugins/geanyvc/src/utils.h
===================================================================
--- trunk/geany-plugins/geanyvc/src/utils.h (rev 0)
+++ trunk/geany-plugins/geanyvc/src/utils.h 2010-10-10 16:56:41 UTC (rev 1649)
@@ -0,0 +1,27 @@
+/*
+ *
+ * Copyright 2008 Yura Siamashka <yurand2(a)gmail.com>
+ * Copyright 2010 Frank Lanitz <frank(a)frank.uvena.de>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __GEANYVC_UTILS__
+#define __GEANYVC_UTILS__
+
+gchar *normpath(const gchar * filename);
+gchar *get_full_path(const gchar * location, const gchar * path);
+gchar *get_relative_path(const gchar * location, const gchar * path);
+
+#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1648
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1648&view=rev
Author: dmaphy
Date: 2010-10-10 09:30:22 +0000 (Sun, 10 Oct 2010)
Log Message:
-----------
website: small validation fix
Modified Paths:
--------------
www/staging/content/start.html
Modified: www/staging/content/start.html
===================================================================
--- www/staging/content/start.html 2010-10-09 16:21:00 UTC (rev 1647)
+++ www/staging/content/start.html 2010-10-10 09:30:22 UTC (rev 1648)
@@ -50,11 +50,11 @@
<li>you didn't knew of this site yet</li>
<li>the maintainers of this site didn't know of your plugin yet</li>
<li>your plugin is part of the Geany Plugins project, but</li>
- <ul>
+ <li><ul>
<li>you don't have a README file written in reStructuredText</li>
<li>or your README file is empty</li>
<li>or a README file doesn't even exist</li>
- </ul>
+ </ul></li>
</ul>
<p>
For any of these reasons, you will find more detailed hints on the
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.