Revision: 1653 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1653&view=re... 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@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@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.