comparison ChangeLog @ 19:3b2dcdefc7e9

2002-09-15 Brian Masney <masneyb@gftp.org> * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and numdirs from unsigned long to long. This must be a signed field. This is a bug I introduced a few days ago. * lib/local.c (local_put_file) - remove the + off of the ab mode to fdopen. This is also a bug I introduced a few days ago. * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable difftime isn't a negative number when computing the KB/s * src/gtk/menu-items.c (save_directory_listing) - remove casts to GTK_OBJECT for the str variable * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c, src/gtk/options_dialog.c and src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 port to create the dialog. Also, associate gFTP icon with this dialog * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the dialog buttons.
author masneyb
date Mon, 16 Sep 2002 12:27:50 +0000
parents 6b2e606554aa
children 4b244bf9d84d
comparison
equal deleted inserted replaced
18:6b2e606554aa 19:3b2dcdefc7e9
1 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> 1 2002-09-15 Brian Masney <masneyb@gftp.org>
2 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and
3 numdirs from unsigned long to long. This must be a signed field. This
4 is a bug I introduced a few days ago.
5
6 * lib/local.c (local_put_file) - remove the + off of the ab mode to
7 fdopen. This is also a bug I introduced a few days ago.
8
9 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable
10 difftime isn't a negative number when computing the KB/s
11
12 * src/gtk/menu-items.c (save_directory_listing) - remove casts to
13 GTK_OBJECT for the str variable
14
15 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm,
16 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port
17
18 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu
19
20 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c,
21 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and
22 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0
23 port to create the dialog. Also, associate gFTP icon with this dialog
24
25 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and
26 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the
27 dialog buttons.
28
29 2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
2 30
3 * configure.in: added 'ro' to ALL_LINGUAS 31 * configure.in: added 'ro' to ALL_LINGUAS
4 32
5 2002-09-08 Brian Masney <masneyb@gftp.org> 33 2002-09-08 Brian Masney <masneyb@gftp.org>
6 * lib/misc.c - added gftp_sort_filelist function 34 * lib/misc.c - added gftp_sort_filelist function
12 automake 1.4 40 automake 1.4
13 41
14 * src/text/gftp-text.c, lib/protocols.c - more large file support 42 * src/text/gftp-text.c, lib/protocols.c - more large file support
15 43
16 2002-09-04 Brian Masney <masneyb@gftp.org> 44 2002-09-04 Brian Masney <masneyb@gftp.org>
17 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher <tobias@portfolio16.de>) 45 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher
46 <tobias@portfolio16.de>)
18 47
19 2002-09-03 Brian Masney <masneyb@gftp.org> 48 2002-09-03 Brian Masney <masneyb@gftp.org>
20 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from 49 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from
21 request->sockfd and write to request->sockfd_write (Solaris doesn't like it 50 request->sockfd and write to request->sockfd_write (Solaris doesn't
22 when you read/write to the same FILE structure) 51 like it when you read/write to the same FILE structure)
23 52
24 * lib/local.c - encode major/minor numbers for a device in the file size. This 53 * lib/local.c - encode major/minor numbers for a device in the file
25 is probably still busted for other platforms 54 size. This is probably still busted for other platforms
26 55
27 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity 56 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity
28 checking on the fdopen() calls. Also make sure that all of them have a + in 57 checking on the fdopen() calls. Also make sure that all of them have a
29 their open mode. Doesn't affect UNIX, but it does affect Windows 58 + in their open mode. Doesn't affect UNIX, but it does affect Windows
30 59
31 * src/gtk/menu-items.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c - added 60 * src/gtk/menu-items.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c - added
32 function save_directory_listing. It's in the Local and Remote menus 61 function save_directory_listing. It's in the Local and Remote menus
33 62
34 * src/gtk/view_dialog.c - changed log message slightly. The new string should 63 * src/gtk/view_dialog.c - changed log message slightly. The new string
35 already be in the po files translated 64 should already be in the po files translated
36 65
37 2002-08-30 Brian Masney <masneyb@gftp.org> 66 2002-08-30 Brian Masney <masneyb@gftp.org>
38 * lib/misc.c - don't allow passing a 0 to log10 67 * lib/misc.c - don't allow passing a 0 to log10
39 68
40 2002-08-30 Brian Masney <masneyb@gftp.org> 69 2002-08-30 Brian Masney <masneyb@gftp.org>
71 100
72 * src/gtk/misc-gtk.c - translation fixes for menus 101 * src/gtk/misc-gtk.c - translation fixes for menus
73 (from Owen Taylor <otaylor@redhat.com>) 102 (from Owen Taylor <otaylor@redhat.com>)
74 103
75 2002-08-23 <baddog@cvs.gnome.org> 104 2002-08-23 <baddog@cvs.gnome.org>
76 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> zh_TW 105 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 ->
106 zh_TW
77 107
78 2002-08-23 Abel Cheung <maddog@linux.org.hk> 108 2002-08-23 Abel Cheung <maddog@linux.org.hk>
79 * zh_TW.Big5.po renamed to zh_TW.po 109 * zh_TW.Big5.po renamed to zh_TW.po
80 110
81 * zh_CN.GB2312.po renamed to zh_CN.po 111 * zh_CN.GB2312.po renamed to zh_CN.po
89 119
90 2002-08-14 <cneumair@cvs.gnome.org> 120 2002-08-14 <cneumair@cvs.gnome.org>
91 * po/de.po - Fixed German translation (charset, header) 121 * po/de.po - Fixed German translation (charset, header)
92 122
93 2002-08-05 Brian Masney <masneyb@gftp.org> 123 2002-08-05 Brian Masney <masneyb@gftp.org>
94 * lib/protocols.c - When we connect to a remote server, don't change the 124 * lib/protocols.c - When we connect to a remote server, don't change
95 hostname to the PTR record of the hostname 125 the hostname to the PTR record of the hostname
96 126
97 * src/gtk/transfer.c - Fixed crash if you was already transfering a file, 127 * src/gtk/transfer.c - Fixed crash if you was already transfering a
98 and you started another transfer, and if you hit cancel at the 128 file, and you started another transfer, and if you hit cancel at the
99 Overwrite/Resume/Skip dialog 129 Overwrite/Resume/Skip dialog
100 130
101 * docs/sample.gftp/gftprc - put the ext= lines back in the config file 131 * docs/sample.gftp/gftprc - put the ext= lines back in the config file
102 132
103 * po/es.po - Spanish updates (from Gustavo D. Vranjes <gvranjes@softhome.net>) 133 * po/es.po - Spanish updates (from Gustavo D. Vranjes
134 <gvranjes@softhome.net>)
104 135
105 * po/nl.po - Dutch updates (from Myckel Habets <myckelhabets@netscape.net>) 136 * po/nl.po - Dutch updates (from Myckel Habets
137 <myckelhabets@netscape.net>)
106 138
107 2002-07-19 Brian Masney <masneyb@gftp.org> 139 2002-07-19 Brian Masney <masneyb@gftp.org>
108 * gFTP 2.0.13 released 140 * gFTP 2.0.13 released
109 141