Revision: 3403
http://geany.svn.sourceforge.net/geany/?rev=3403&view=rev
Author: frlan
Date: 2008-12-18 22:02:15 +0000 (Thu, 18 Dec 2008)
Log Message:
-----------
Removed file from translateable files since it is not available anymore
Modified Paths:
--------------
trunk/po/POTFILES.in
Modified: trunk/po/POTFILES.in
===================================================================
--- trunk/po/POTFILES.in 2008-12-18 21:21:53 UTC (rev 3402)
+++ trunk/po/POTFILES.in 2008-12-18 22:02:15 UTC (rev 3403)
@@ -29,7 +29,6 @@
src/sciwrappers.c
src/search.c
src/socket.c
-src/support.c
src/symbols.c
src/templates.c
src/toolbar.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3398
http://geany.svn.sourceforge.net/geany/?rev=3398&view=rev
Author: ntrel
Date: 2008-12-18 17:28:11 +0000 (Thu, 18 Dec 2008)
Log Message:
-----------
On quitting, sort list of active plugins by plugin name.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/plugins.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-12-18 16:26:26 UTC (rev 3397)
+++ trunk/ChangeLog 2008-12-18 17:28:11 UTC (rev 3398)
@@ -2,6 +2,8 @@
* tagmanager/html.c:
Also parse headings with tags inside header tag.
+ * src/plugins.c:
+ On quitting, sort list of active plugins by plugin name.
2008-12-17 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c 2008-12-18 16:26:26 UTC (rev 3397)
+++ trunk/src/plugins.c 2008-12-18 17:28:11 UTC (rev 3398)
@@ -856,6 +856,15 @@
}
+static gint cmp_plugin_names(gconstpointer a, gconstpointer b)
+{
+ const Plugin *pa = a;
+ const Plugin *pb = b;
+
+ return strcmp(pa->info.name, pb->info.name);
+}
+
+
static void update_active_plugins_pref(void)
{
gint i = 0;
@@ -870,6 +879,10 @@
return;
}
+ /* sort the list so next time tools menu items are sorted by plugin name
+ * (not ideal to do here, but better than nothing) */
+ active_plugin_list = g_list_sort(active_plugin_list, cmp_plugin_names);
+
active_plugins_pref = g_new0(gchar*, count + 1);
for (list = g_list_first(active_plugin_list); list != NULL; list = list->next)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3396
http://geany.svn.sourceforge.net/geany/?rev=3396&view=rev
Author: eht16
Date: 2008-12-17 16:28:36 +0000 (Wed, 17 Dec 2008)
Log Message:
-----------
When allowing non-local locations in the File Open dialog, we should do this in the File Save dialog as well.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/dialogs.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-12-17 16:17:11 UTC (rev 3395)
+++ trunk/ChangeLog 2008-12-17 16:28:36 UTC (rev 3396)
@@ -23,6 +23,9 @@
* geany.glade, src/interface.c:
Re-add can_focus flag to the notebook widgets in the preferences
dialog to make keyboard navigation easier (closes #2417200).
+ * src/dialogs.c:
+ When allowing non-local locations in the File Open dialog, we should
+ do this in the File Save dialog as well.
2008-12-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/dialogs.c
===================================================================
--- trunk/src/dialogs.c 2008-12-17 16:17:11 UTC (rev 3395)
+++ trunk/src/dialogs.c 2008-12-17 16:28:36 UTC (rev 3396)
@@ -498,6 +498,9 @@
gtk_box_pack_start(GTK_BOX(vbox), check_open_new_tab, FALSE, FALSE, 0);
gtk_widget_show_all(vbox);
gtk_file_chooser_set_extra_widget(GTK_FILE_CHOOSER(ui_widgets.save_filesel), vbox);
+#if GTK_CHECK_VERSION(2, 14, 0)
+ gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(ui_widgets.save_filesel), FALSE);
+#endif
g_signal_connect(check_open_new_tab, "toggled",
G_CALLBACK(on_save_as_new_tab_toggled), rename_btn);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.