Revision: 1626
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1626&view=rev
Author: dimitrov-adrian
Date: 2010-10-05 19:19:20 +0000 (Tue, 05 Oct 2010)
Log Message:
-----------
Fixed wrong english message for not existing directory.
Modified Paths:
--------------
trunk/geany-plugins/treebrowser/ChangeLog
trunk/geany-plugins/treebrowser/src/treebrowser.c
Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog 2010-10-05 17:12:13 UTC (rev 1625)
+++ trunk/geany-plugins/treebrowser/ChangeLog 2010-10-05 19:19:20 UTC (rev 1626)
@@ -41,6 +41,8 @@
05-10-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
* src/treebrowser.c
+ Fixed wrong english message for not existing directory
+ (thanks to Dimitar Zhekov (dimitar.zhekov(a)gmail.com))
Added option to autorename point the newest created objects by the Treebrowser
Improved autorename focus while renamed is successful then close old and
open new file;
Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c
===================================================================
--- trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-05 17:12:13 UTC (rev 1625)
+++ trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-05 19:19:20 UTC (rev 1626)
@@ -261,7 +261,7 @@
if (! g_file_test(directory, G_FILE_TEST_IS_DIR))
{
if (CONFIG_SHOW_BARS == 0)
- dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("Directory '%s' not exists."), directory);
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("%s: no such directory."), directory);
return;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1624
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1624&view=rev
Author: dimitrov-adrian
Date: 2010-10-05 16:46:28 +0000 (Tue, 05 Oct 2010)
Log Message:
-----------
ChangeLog update
Modified Paths:
--------------
trunk/geany-plugins/treebrowser/ChangeLog
Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog 2010-10-05 16:45:11 UTC (rev 1623)
+++ trunk/geany-plugins/treebrowser/ChangeLog 2010-10-05 16:46:28 UTC (rev 1624)
@@ -38,7 +38,7 @@
| Development release ChangeLog |
+-------------------------------+
-03-10-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
+05-10-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
* src/treebrowser.c
Added option to autorename point the newest created objects by the Treebrowser
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1621
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1621&view=rev
Author: dimitrov-adrian
Date: 2010-10-03 18:29:28 +0000 (Sun, 03 Oct 2010)
Log Message:
-----------
Some bugfixes and improvements, mostly in bookmarks support.
Modified Paths:
--------------
trunk/geany-plugins/treebrowser/ChangeLog
trunk/geany-plugins/treebrowser/src/treebrowser.c
Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog 2010-10-03 18:16:54 UTC (rev 1620)
+++ trunk/geany-plugins/treebrowser/ChangeLog 2010-10-03 18:29:28 UTC (rev 1621)
@@ -47,8 +47,7 @@
Fixed showing wrong tooltips in settings dialog
Merged show_bars and show_bars_at_top in one combobox
(I think that this is more suitable)
- Changed Right click -> Show bars to Hide/Show toolbar
- (Now this is temporary hidding/showing and it now saving in the settings)
+ Fixed bug in show/hide toolbar
Removed option for change how deep directories will be scanned
(I think that this is unusable and in some cases make geany to freezy)
Removed option "ON_EXPAND_REFRESH" - This is unnessecary already
Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c
===================================================================
--- trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-03 18:16:54 UTC (rev 1620)
+++ trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-10-03 18:29:28 UTC (rev 1621)
@@ -538,11 +538,17 @@
showbars(gboolean state)
{
if (state)
+ {
gtk_widget_show(sidebar_vbox_bars);
+ if (!CONFIG_SHOW_BARS)
+ CONFIG_SHOW_BARS = 1;
+ }
else
+ {
gtk_widget_hide(sidebar_vbox_bars);
+ CONFIG_SHOW_BARS = 0;
+ }
- CONFIG_SHOW_BARS = state ? (CONFIG_SHOW_BARS ? CONFIG_SHOW_BARS : 1) : 0;
save_settings();
}
@@ -1310,15 +1316,15 @@
ui_widget_set_tooltip_text(addressbar,
_("Addressbar for example '/projects/my-project'"));
- if (CONFIG_SHOW_BARS == 1)
+ if (CONFIG_SHOW_BARS == 2)
{
+ gtk_box_pack_start(GTK_BOX(sidebar_vbox), scrollwin, TRUE, TRUE, 1);
gtk_box_pack_start(GTK_BOX(sidebar_vbox), sidebar_vbox_bars, FALSE, TRUE, 1);
- gtk_box_pack_start(GTK_BOX(sidebar_vbox), scrollwin, TRUE, TRUE, 1);
}
else
{
+ gtk_box_pack_start(GTK_BOX(sidebar_vbox), sidebar_vbox_bars, FALSE, TRUE, 1);
gtk_box_pack_start(GTK_BOX(sidebar_vbox), scrollwin, TRUE, TRUE, 1);
- gtk_box_pack_start(GTK_BOX(sidebar_vbox), sidebar_vbox_bars, FALSE, TRUE, 1);
}
g_signal_connect(selection, "changed", G_CALLBACK(on_treeview_changed), NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1619
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1619&view=rev
Author: frlan
Date: 2010-10-02 17:12:34 +0000 (Sat, 02 Oct 2010)
Log Message:
-----------
GeanyLaTeX: Fix translation for stand alone version
Modified Paths:
--------------
trunk/geanylatex/wscript
Modified: trunk/geanylatex/wscript
===================================================================
--- trunk/geanylatex/wscript 2010-10-02 10:11:19 UTC (rev 1618)
+++ trunk/geanylatex/wscript 2010-10-02 17:12:34 UTC (rev 1619)
@@ -315,7 +315,7 @@
features = 'intltool_po',
podir = 'po',
install_path = '${LOCALEDIR}',
- appname = 'geanylatex'
+ appname = 'geanylatex-sa'
)
def shutdown():
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1618
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1618&view=rev
Author: frlan
Date: 2010-10-02 10:11:19 +0000 (Sat, 02 Oct 2010)
Log Message:
-----------
GeanyLaTeX: Set suffix for stand alone plugin to make it possible to run both, combined and standalone plugin
Modified Paths:
--------------
trunk/geanylatex/wscript
Modified: trunk/geanylatex/wscript
===================================================================
--- trunk/geanylatex/wscript 2010-10-02 10:11:03 UTC (rev 1617)
+++ trunk/geanylatex/wscript 2010-10-02 10:11:19 UTC (rev 1618)
@@ -45,7 +45,7 @@
from TaskGen import taskgen, feature
-APPNAME = 'geanylatex'
+APPNAME = 'geanylatex-sa'
VERSION = '0.6dev'
srcdir = '.'
@@ -299,8 +299,8 @@
bld.new_task_gen(
features = 'cc cshlib',
- name = 'geanylatex',
- target = 'geanylatex',
+ name = 'geanylatex-sa',
+ target = 'geanylatex-sa',
source = geanylatex_sources,
includes = '. src/',
uselib = 'GTK GEANY',
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.