[nautilus-actions] Update authors and translators
- From: Pierre Wieser <pwieser src gnome org>
- To: svn-commits-list gnome org
- Subject: [nautilus-actions] Update authors and translators
- Date: Tue, 12 May 2009 16:52:04 -0400 (EDT)
commit 1247e56addd258ade96937883756cc6690ea7fa1
Author: Pierre Wieser <pwieser trychlos org>
Date: Tue May 12 22:52:57 2009 +0200
Update authors and translators
---
AUTHORS | 4 +++
ChangeLog | 9 +++++++
configure.in | 2 +-
plugin/nautilus-actions.c | 57 +++++++++++++++++++++++++++-----------------
po/ChangeLog | 23 ++++++++++++++++-
5 files changed, 70 insertions(+), 25 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index 21ac256..6d73933 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,10 +1,14 @@
Frederic Ruaudel <grumz grumz net>
Rodrigo Moya <rodrigo novell com>
+Pierre Wieser <pwieser trychlos org>
based on nautilus-sendto module from Roberto Majadas <roberto majadas hispalinux es>
== Contributors ==
+Bruce van der Kooij <brucevdkooij gmail com> :
+- Patch to initialize GnomeVFS stuff waiting for migration to GVFS
+
Tom Parker <nautilus-actions tevp net> :
- Patch to add actions in the background popup menu of Nautilus's windows.
- Patch to add missing library test in configure.
diff --git a/ChangeLog b/ChangeLog
index 988abc5..b4365c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-05-12 Pierre Wieser <pwieser trychlos org>
+
+ * nautilus-actions.doap: Update short description.
+ * MAINTAINERS: Update to point to nautilus-actions.doap.
+
2009-04-13 Christian Persch <chpe gnome org>
* autogen.sh:
@@ -14,6 +19,10 @@
* nact/nautilus-actions-config.glade: Marked 'Duplicate' string
for translation. Fixes #568366.
+2007-09-21 Olav Vitters <ovitters src gnome org>
+
+ * MAINTAINERS: correct userid.
+
2007-09-05 Frederic Ruaudel <grumz grumz net>
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
Fix a crash when trying to import a config without "Main" profile
diff --git a/configure.in b/configure.in
index d8d6f14..3784a95 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
AC_PREREQ(2.52)
-AC_INIT(nautilus-actions, 1.9b, http://www.grumz.net)
+AC_INIT(nautilus-actions, 1.10, http://www.nautilus-actions.org)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
diff --git a/plugin/nautilus-actions.c b/plugin/nautilus-actions.c
index 70f59af..2a81d61 100644
--- a/plugin/nautilus-actions.c
+++ b/plugin/nautilus-actions.c
@@ -38,7 +38,7 @@
static GObjectClass *parent_class = NULL;
static GType actions_type = 0;
-GType nautilus_actions_get_type (void)
+GType nautilus_actions_get_type (void)
{
return actions_type;
}
@@ -62,7 +62,7 @@ static void nautilus_actions_execute (NautilusMenuItem *item, NautilusActionsCon
cmd = g_string_new (action_profile->path);
param = nautilus_actions_utils_parse_parameter (action_profile->parameters, files);
-
+
if (param != NULL)
{
g_string_append_printf (cmd, " %s", param);
@@ -70,7 +70,7 @@ static void nautilus_actions_execute (NautilusMenuItem *item, NautilusActionsCon
}
g_spawn_command_line_async (cmd->str, NULL);
-
+
g_string_free (cmd, TRUE);
}
@@ -100,27 +100,27 @@ static NautilusMenuItem *nautilus_actions_create_menu_item (NautilusActionsConfi
NautilusActionsConfigActionProfile* action_profile4menu = nautilus_actions_config_action_profile_dup (action_profile);
name = g_strdup_printf ("NautilusActions::%s", action->uuid);
-
- item = nautilus_menu_item_new (name,
- action->label,
- action->tooltip,
+
+ item = nautilus_menu_item_new (name,
+ action->label,
+ action->tooltip,
icon_name);
- g_signal_connect_data (item,
- "activate",
+ g_signal_connect_data (item,
+ "activate",
G_CALLBACK (nautilus_actions_execute),
- action_profile4menu,
- (GClosureNotify)nautilus_actions_config_action_profile_free,
+ action_profile4menu,
+ (GClosureNotify)nautilus_actions_config_action_profile_free,
0);
g_object_set_data_full (G_OBJECT (item),
"files",
nautilus_file_info_list_copy (files),
(GDestroyNotify) nautilus_file_info_list_free);
-
-
+
+
g_free (name);
-
+
return item;
}
@@ -151,7 +151,7 @@ static GList *nautilus_actions_get_file_items (NautilusMenuProvider *provider, G
/* Retrieve all profile name */
g_hash_table_foreach (action->profiles, (GHFunc)get_hash_keys, &profile_list);
-
+
iter2 = profile_list;
found = FALSE;
while (iter2 && !found)
@@ -170,7 +170,7 @@ static GList *nautilus_actions_get_file_items (NautilusMenuProvider *provider, G
}
}
}
-
+
return items;
}
@@ -182,14 +182,14 @@ static GList *nautilus_actions_get_background_items (NautilusMenuProvider *provi
files = g_list_append (files, current_folder);
items = nautilus_actions_get_file_items (provider, window, files);
g_list_free (files);
-
+
return items;
}
static void nautilus_actions_instance_dispose (GObject *obj)
{
NautilusActions* self = NAUTILUS_ACTIONS (obj);
-
+
if (!self->dispose_has_run)
{
self->dispose_has_run = TRUE;
@@ -201,12 +201,12 @@ static void nautilus_actions_instance_dispose (GObject *obj)
}
}
-static void nautilus_actions_action_changed_handler (NautilusActionsConfig* config,
+static void nautilus_actions_action_changed_handler (NautilusActionsConfig* config,
NautilusActionsConfigAction* action,
gpointer user_data)
{
NautilusActions* self = NAUTILUS_ACTIONS (user_data);
-
+
g_return_if_fail (NAUTILUS_IS_ACTIONS (self));
if (!self->dispose_has_run)
@@ -236,8 +236,21 @@ static void nautilus_actions_class_init (NautilusActionsClass *actions_class)
static void nautilus_actions_instance_init (GTypeInstance *instance, gpointer klass)
{
+ // Patch from Bruce van der Kooij <brucevdkooij gmail com>
+ //
+ // TODO: GnomeVFS needs to be initialized before gnome_vfs methods
+ // can be used. Since GnomeVFS has been deprecated it would be
+ // a good idea to rewrite this extension to use equivelant methods
+ // from GIO/GVFS.
+ //
+ // plugins/nautilus-actions-utils.c:nautilus_actions_utils_parse_parameter
+ // is the only function that makes use of gnome_vfs methods.
+ //
+ // See: Bug #574919
+ gnome_vfs_init ();
+
NautilusActions* self = NAUTILUS_ACTIONS (instance);
-
+
self->configs = NULL;
self->configs = nautilus_actions_config_gconf_reader_get ();
self->config_list = NULL;
@@ -294,4 +307,4 @@ void nautilus_actions_register_type (GTypeModule *module)
&menu_provider_iface_info);
}
-// vim:ts=3:sw=3:tw=1024:cin
+// vim:ts=4:sw=4:tw=1024:cin
diff --git a/po/ChangeLog b/po/ChangeLog
index 12bbfc0..1e2915a 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -2,6 +2,10 @@
* de.po: Updated German translation
+2009-03-19 Amanpreet Singh Alam <aman src gnome org>
+
+ * pa.po: Updating Punjabi Translation
+
2009-03-16 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
* eu.po: Updated Basque translation.
@@ -55,7 +59,6 @@
* el.po: Added Greek Translation by Giannis Katsampipis
* LINGUAS: Added Greek (el) to list.
-
2008-03-15 Andre Klapper <a9016009 gmx de>
* de.po: Updated German translation.
@@ -69,12 +72,20 @@
* en_GB.po: Updated British English translation.
+2008-03-08 Yannig MARCHEGAY <ymarcheg src gnome org>
+
+ * oc.po: Updated Occitan translation.
+
2008-02-23 Duarte Loreto <happyguy_pt hotmail com>
* pt.po: Added Portuguese translation by António Lima
<amrlima gmail com>.
* LINGUAS: Added Portuguese (pt) to list.
+2008-02-19 Yannig MARCHEGAY <ymarcheg src gnome org>
+
+ * oc.po: Updated Occitan translation.
+
2008-02-16 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
* LINGUAS: Added 'eu' (Basque) entry.
@@ -97,6 +108,10 @@
* fr.po: Updated French translation.
+2007-11-20 Yannig Marchegay <yannig marchegay org>
+
+ * oc.po: Updated Occitan translation.
+
2007-11-11 Ilkka Tuohela <hile iki fi>
* fi.po: Updated Finnish translation.
@@ -109,9 +124,13 @@
* fi.po: Updated Finnish translation.
+2007-10-13 Yannig MARCHEGAY <ymarcheg src gnome org>
+
+ * oc.po: Updated Occitan translation.
+
2007-09-26 Jorge Gonzalez <jorgegonz svn gnome org>
- * es.po: Updated Spanish translation
+ * es.po: Updated Spanish translation
2007-09-17 Jonh Wendell <jwendell gnome org>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]