[nautilus-actions] Update NEWS, preparing for new release
- From: Pierre Wieser <pwieser src gnome org>
- To: svn-commits-list gnome org
- Subject: [nautilus-actions] Update NEWS, preparing for new release
- Date: Sat, 16 May 2009 21:12:25 -0400 (EDT)
commit dfb6ce5848a0cb14767c6ca58a17c735ac693d39
Author: Pierre Wieser <pwieser trychlos org>
Date: Sun May 17 03:15:30 2009 +0200
Update NEWS, preparing for new release
---
NEWS | 58 ++++++++++++++++++++++++++++++++++++
configure.ac | 2 +-
nact/nact.c | 41 ++++++-------------------
nact/nact.h | 7 ++++
nact/nautilus-actions-config.glade | 10 ++++--
5 files changed, 82 insertions(+), 36 deletions(-)
diff --git a/NEWS b/NEWS
index e69de29..784a7d8 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,58 @@
+Version 1.10.0
+
+ Release date 2009-05-17
+
+ Nota:
+ Last official release was 1.4.1 (05/2007) and is always available
+ at http://www.grumz.net/?q=taxonomy/term/6/9
+
+ In the meantime (10/2008), some distributions have packaged and
+ released the current state of the svn trunk (rev.510) ; they have
+ generally called it 1.9 (sometimes 1.9b) ; this was _not_ an
+ official release (though we can think it has been correctly
+ tested ;-))
+
+ Profiles
+
+ The "profile" feature has been developed by Frederic Ruaudel
+ (previous maintainer and original author of Nautilus-actions).
+ It has been included in the intermediate version 1.9x without
+ having thoroughly tested ; I have choosen to left it in this
+ version to not create backward compatibility problems for the
+ users of these distributions, but be warned : use with caution.
+
+ Bugfixes
+
+ Fixes #522605 reported by Andre Klapper (i18n)
+ Fixes #573365 reported by Sergej (i18n)
+ Fixes #574919 by Bruce van der Kooij (gnome_vfs_init)
+ Fixes #568366 by Stéphane Raimbault (i18n)
+
+ Translations
+
+ ar (Djihed Afifi)
+ ca (SÃlvia Miranda)
+ de (Mario Blättermann, Andre Klapper)
+ dz (Pema Geyleg)
+ el (Kostas Papadimas)
+ en (David Lodge, Adam Weinberger, Philip Withnall)
+ es (Jorge Gonzalez)
+ eu (Inaki Larranaga Murgoitio)
+ fi (Ilkka Tuohela)
+ fr (Claude Paroz, Stéphane Raimbault)
+ it (Milo Casagrande)
+ ko (Changwoo Ryu)
+ mr (Milo Casagrande)
+ nb (Kjartan Maraas)
+ oc (Yannig Marchegay)
+ pa (Amanpreet Singh Alam)
+ pl (Wadim Dziedzic)
+ pt (Duarte Loreto, Og Maciel, Jonh Wendell)
+ sv (Daniel Nylander)
+
+ Various code enhancements
+
+ All compilations warnings have been fixed, all code is now
+ fully ansi-compliant (Pierre Wieser)
+
+ Introduce new intltool (Christian Persch)
diff --git a/configure.ac b/configure.ac
index bc48c95..796d277 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,7 @@
AC_PREREQ([2.53])
-AC_INIT([nautilus-actions],[1.10],[maintainer nautilus-actions org])
+AC_INIT([nautilus-actions],[1.10.0],[maintainer nautilus-actions org])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
diff --git a/nact/nact.c b/nact/nact.c
index d6c564a..b08c99a 100644
--- a/nact/nact.c
+++ b/nact/nact.c
@@ -48,14 +48,6 @@
#include "nact-prefs.h"
static gint actions_list_sort_by_label (gconstpointer a1, gconstpointer a2);
-/*
-static void add_button_clicked_cb (GtkButton *button, gpointer user_data);
-static void edit_button_clicked_cb (GtkButton *button, gpointer user_data);
-static void duplicate_button_clicked_cb (GtkButton *button, gpointer user_data);
-static void delete_button_clicked_cb (GtkButton *button, gpointer user_data);
-static void im_export_button_clicked_cb (GtkButton *button, gpointer user_data);
-static void dialog_response_cb (GtkDialog *dialog, gint response_id, gpointer user_data);
-*/
static void list_selection_changed_cb (GtkTreeSelection *selection, gpointer user_data);
static NautilusActionsConfigGconfWriter *config = NULL;
@@ -113,17 +105,14 @@ void nact_fill_actions_list (GtkWidget *list)
nautilus_actions_config_free_actions_list (actions);
}
-/*
-static void
+void
add_button_clicked_cb (GtkButton *button, gpointer user_data)
{
if (nact_editor_new_action ())
nact_fill_actions_list (nact_get_glade_widget ("ActionsList"));
}
-*/
-/*
-static void
+void
edit_button_clicked_cb (GtkButton *button, gpointer user_data)
{
GtkTreeSelection *selection;
@@ -150,10 +139,8 @@ edit_button_clicked_cb (GtkButton *button, gpointer user_data)
g_free (uuid);
}
}
-*/
-/*
-static void
+void
duplicate_button_clicked_cb (GtkButton *button, gpointer user_data)
{
GtkTreeSelection *selection;
@@ -185,21 +172,18 @@ duplicate_button_clicked_cb (GtkButton *button, gpointer user_data)
}
else
{
- // i18n notes: will be displayed in a dialog
+ /* i18n notes: will be displayed in a dialog */
tmp = g_strdup_printf (_("Can't duplicate action '%s'!"), action->label);
nautilus_actions_display_error (tmp, error->message);
g_error_free (error);
g_free (tmp);
}
}
-
g_free (uuid);
}
}
-*/
-/*
-static void
+void
delete_button_clicked_cb (GtkButton *button, gpointer user_data)
{
GtkTreeSelection *selection;
@@ -221,10 +205,8 @@ delete_button_clicked_cb (GtkButton *button, gpointer user_data)
g_free (uuid);
}
}
-*/
-/*
-static void
+void
im_export_button_clicked_cb (GtkButton *button, gpointer user_data)
{
GtkWidget *nact_actions_list;
@@ -235,10 +217,8 @@ im_export_button_clicked_cb (GtkButton *button, gpointer user_data)
nact_fill_actions_list (nact_actions_list);
}
}
-*/
-/*
-static void
+void
dialog_response_cb (GtkDialog *dialog, gint response_id, gpointer user_data)
{
GtkWidget* nact_about_dialog;
@@ -248,14 +228,14 @@ dialog_response_cb (GtkDialog *dialog, gint response_id, gpointer user_data)
case GTK_RESPONSE_NONE :
case GTK_RESPONSE_DELETE_EVENT :
case GTK_RESPONSE_CLOSE :
- // Free any profile in the clipboard
+ /* Free any profile in the clipboard */
nautilus_actions_config_action_profile_free (g_object_steal_data (G_OBJECT (nact_prof_paste_button), "profile"));
- / * FIXME : update pref settings
+ /* FIXME : update pref settings
nact_prefs_set_main_dialog_size (GTK_WINDOW (dialog));
nact_prefs_set_main_dialog_position (GTK_WINDOW (dialog));
nact_prefs_save_preferences ();
- * /
+ */
gtk_widget_destroy (GTK_WIDGET (dialog));
nact_destroy_glade_objects ();
@@ -272,7 +252,6 @@ dialog_response_cb (GtkDialog *dialog, gint response_id, gpointer user_data)
break;
}
}
-*/
static void
list_selection_changed_cb (GtkTreeSelection *selection, gpointer user_data)
diff --git a/nact/nact.h b/nact/nact.h
index b8f87c1..6210f35 100644
--- a/nact/nact.h
+++ b/nact/nact.h
@@ -43,4 +43,11 @@ enum {
void nact_fill_actions_list (GtkWidget *list);
+void dialog_response_cb (GtkDialog *dialog, gint response_id, gpointer user_data);
+void add_button_clicked_cb (GtkButton *button, gpointer user_data);
+void delete_button_clicked_cb (GtkButton *button, gpointer user_data);
+void duplicate_button_clicked_cb (GtkButton *button, gpointer user_data);
+void edit_button_clicked_cb (GtkButton *button, gpointer user_data);
+void im_export_button_clicked_cb (GtkButton *button, gpointer user_data);
+
#endif /* __NACT_H__ */
diff --git a/nact/nautilus-actions-config.glade b/nact/nautilus-actions-config.glade
index 6e1f9a8..fa40c25 100644
--- a/nact/nautilus-actions-config.glade
+++ b/nact/nautilus-actions-config.glade
@@ -2521,15 +2521,17 @@ place secondary text here</property>
<widget class="GtkAboutDialog" id="AboutDialog">
<property name="destroy_with_parent">False</property>
<property name="name">NACT</property>
- <property name="copyright" translatable="yes">(C) 2005-2007 Frederic Ruaudel <grumz grumz net></property>
+ <property name="copyright" translatable="yes">(C) 2005-2007 Frederic Ruaudel <grumz grumz net>
+(C) 2009 Pierre Wieser <pwieser trychlos org></property>
<property name="comments" translatable="yes">Nautilus Actions Configuration Tool
Application to configure Nautilus Action extension</property>
<property name="license" translatable="yes">This software is licensed under the GNU Genaral Public License (GPL)</property>
<property name="wrap_license">False</property>
- <property name="website">Project Website : http://www.grumz.net/node/8</property>
- <property name="website_label" translatable="yes">Project Website</property>
+ <property name="website">Project website : http://www.nautilus-actions.org</property>
+ <property name="website_label" translatable="yes">Project website</property>
<property name="authors">Frederic Ruaudel <grumz grumz net>
-Rodrigo Moya <rodrigo novell com>
+Rodrigo Moya <rodrigo gnome-db org>
+Pierre Wieser <pwieser trychlos org>
</property>
<property name="artists">Ulisse Perusin <uli peru gmail com> </property>
<property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">The GNOME Translation Project <gnome-i18n gnome org></property>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]