gthumb r2421 - in branches/gthumb-2-10: . doc/C src



Author: mjc
Date: Wed Oct  8 18:38:12 2008
New Revision: 2421
URL: http://svn.gnome.org/viewvc/gthumb?rev=2421&view=rev

Log:
2008-10-08  Michael J. Chudobiak  <mjc svn gnome org>

        * NEWS:
        * doc/C/gthumb.xml:
        * src/dlg-preferences.c: (dlg_preferences):
        * src/gth-browser.c: (key_press_cb):
        The "g" key now launches the "gimp" command, instead of the
        deprecated "gimp-remote" command. Bug #555549.



Modified:
   branches/gthumb-2-10/ChangeLog
   branches/gthumb-2-10/NEWS
   branches/gthumb-2-10/doc/C/gthumb.xml
   branches/gthumb-2-10/src/dlg-preferences.c
   branches/gthumb-2-10/src/gth-browser.c

Modified: branches/gthumb-2-10/NEWS
==============================================================================
--- branches/gthumb-2-10/NEWS	(original)
+++ branches/gthumb-2-10/NEWS	Wed Oct  8 18:38:12 2008
@@ -1,3 +1,9 @@
+version 2.10.11
+---------------
+
+	* The "g" key now launches the "gimp" command, instead of the
+	  deprecated "gimp-remote" command.
+
 version 2.10.10
 ---------------
 

Modified: branches/gthumb-2-10/doc/C/gthumb.xml
==============================================================================
--- branches/gthumb-2-10/doc/C/gthumb.xml	(original)
+++ branches/gthumb-2-10/doc/C/gthumb.xml	Wed Oct  8 18:38:12 2008
@@ -2,8 +2,8 @@
 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd";[
   <!ENTITY legal SYSTEM "legal.xml">
-  <!ENTITY appversion "2.10.8">
-  <!ENTITY manualversion "2.10.8">
+  <!ENTITY appversion "2.10.10">
+  <!ENTITY manualversion "2.10.10">
   <!ENTITY date "October 2006">
   <!ENTITY appname "gThumb">
   <!ENTITY app "<application>gThumb</application>">
@@ -2775,12 +2775,12 @@
       <itemizedlist>
 	  <listitem>
 	    <para>
-		<command>gimp-remote %F</command>
+		<command>gimp %F</command>
             </para>
 	    <para>
 		This script tells the GNU Image Manipulation Program (gimp) to open
 	        all of the select files. This is most efficient if we include all of
-	 	the filenames on one line, rather than calling <command>gimp-remote</command>
+	 	the filenames on one line, rather than calling <command>gimp</command>
 		once for each file, so we have used the %F code.
 	    </para>
           </listitem>

Modified: branches/gthumb-2-10/src/dlg-preferences.c
==============================================================================
--- branches/gthumb-2-10/src/dlg-preferences.c	(original)
+++ branches/gthumb-2-10/src/dlg-preferences.c	Wed Oct  8 18:38:12 2008
@@ -548,7 +548,7 @@
 
 	gtk_entry_set_text (GTK_ENTRY (data->hotkey0), 
 			    eel_gconf_get_string (PREF_HOTKEY0, 
-			    "gimp-remote %F"));
+			    "gimp %F"));
 
 	gtk_entry_set_text (GTK_ENTRY (data->hotkey1), 
 			    eel_gconf_get_string (PREF_HOTKEY1, 

Modified: branches/gthumb-2-10/src/gth-browser.c
==============================================================================
--- branches/gthumb-2-10/src/gth-browser.c	(original)
+++ branches/gthumb-2-10/src/gth-browser.c	Wed Oct  8 18:38:12 2008
@@ -3235,7 +3235,7 @@
 	case GDK_g:
 		list = gth_window_get_file_list_selection (window);
 		if (list != NULL) {
-			exec_command ("gimp-remote", list);
+			exec_command ("gimp", list);
 			path_list_free (list);
 		}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]