From 134d94a043e9d676f120c563f67e9092d7032376 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 19 Mar 2000 11:49:29 +0000 Subject: [PATCH] r220: Updated the TODO file. Added Credits section to README. Changed 'Save' and 'To save, ' messages in the savebox code to be more appropriate. --- ROX-Filer/Help/README | 24 ++++++++++++++++++++++++ ROX-Filer/Help/TODO | 5 +---- ROX-Filer/src/gtksavebox.c | 6 +++--- 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/ROX-Filer/Help/README b/ROX-Filer/Help/README index e19b2495..1a3a7f46 100644 --- a/ROX-Filer/Help/README +++ b/ROX-Filer/Help/README @@ -36,3 +36,27 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Please report any bugs to me, . + + +Credits +~~~~~~~ +ROX-Filer was created by Thomas Leonard, but many people have contributed to +it one way or another... + +If you think you should be included here then write and tell me ;-) + +First, a few people/projects whose work I've used: + + Andrew Clover most of the file icons + David MacKenzie the code for parsing Permissions commands + John Lindal co-author of the XDS protocol + Midnight Commander the Virtual File System library + +And now, people who've actually sent in code ;-) + + Bernard Jungen lots of patches all over the place! + Simon Truss support for mount points on NetBSD + Jens Askengren GNOME-style toolbar + +Also - to everyone who sent in bug reports, suggestions and encouragement - +I can't list all of you, but thanks! diff --git a/ROX-Filer/Help/TODO b/ROX-Filer/Help/TODO index ff539713..da24a606 100644 --- a/ROX-Filer/Help/TODO +++ b/ROX-Filer/Help/TODO @@ -8,8 +8,7 @@ someone sends patches!). BUGS -Rename/Link - use exec() instead of system() like the action windows do. - (prevents problems with shell special characters). +Rename box - use action window (currently doesn't work across file systems) GNOME toolbar doesn't work properly when detached. Is this a GTK+ problem? @@ -21,8 +20,6 @@ MISSING FEATURES Touch/Find -Drag and drop in the Copy/Rename/Link dialogs. - Back/Forwards browser style navigation? Textured window backgrounds (themes?) diff --git a/ROX-Filer/src/gtksavebox.c b/ROX-Filer/src/gtksavebox.c index 92bff5cb..98ac88ab 100644 --- a/ROX-Filer/src/gtksavebox.c +++ b/ROX-Filer/src/gtksavebox.c @@ -227,7 +227,7 @@ gtk_savebox_init (GtkSavebox *savebox) hbox = gtk_hbox_new (TRUE, 0); gtk_box_pack_start (GTK_BOX (savebox->vbox), hbox, FALSE, TRUE, 0); - button = gtk_button_new_with_label (_("Save")); + button = gtk_button_new_with_label (_("OK")); gtk_signal_connect (GTK_OBJECT (button), "clicked", GTK_SIGNAL_FUNC (do_save), savebox); gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, TRUE, 0); @@ -559,8 +559,8 @@ static void do_save (GtkWidget *widget, GtkSavebox *savebox) dialog = gtk_dialog_new (); GTK_WINDOW (dialog)->type = GTK_WINDOW_DIALOG; - label = gtk_label_new ("To save, drag icon to a directory viewer\n" - "(or enter a full pathname)"); + label = gtk_label_new ("Drag the icon to a directory viewer\n" + "(or enter a full pathname)"); gtk_misc_set_padding (GTK_MISC (label), 8, 32); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), -- 2.11.4.GIT