annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
1 2002-09-15 Brian Masney <masneyb@gftp.org>
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
2 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
3 numdirs from unsigned long to long. This must be a signed field. This
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
4 is a bug I introduced a few days ago.
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
5
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
6 * lib/local.c (local_put_file) - remove the + off of the ab mode to
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
7 fdopen. This is also a bug I introduced a few days ago.
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
8
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
9 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
10 difftime isn't a negative number when computing the KB/s
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
11
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
12 * src/gtk/menu-items.c (save_directory_listing) - remove casts to
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
13 GTK_OBJECT for the str variable
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
14
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
15 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
16 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
17
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
18 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
20 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
21 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
22 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
23 port to create the dialog. Also, associate gFTP icon with this dialog
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
24
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
25 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
26 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
27 dialog buttons.
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
28
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
29 2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
18
6b2e606554aa 2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents: 17
diff changeset
30
6b2e606554aa 2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents: 17
diff changeset
31 * configure.in: added 'ro' to ALL_LINGUAS
6b2e606554aa 2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents: 17
diff changeset
32
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
33 2002-09-08 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
34 * lib/misc.c - added gftp_sort_filelist function
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
35
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
36 * src/gtk/gftp-gtk.c (sortrows) - call gftp_sort_filelist now
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
37 to do the sorting
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
38
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
39 * config.sub, install-sh, missing, mkinstalldirs - new versions from
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
40 automake 1.4
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
42 * src/text/gftp-text.c, lib/protocols.c - more large file support
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
43
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
44 2002-09-04 Brian Masney <masneyb@gftp.org>
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
45 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
46 <tobias@portfolio16.de>)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
47
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
48 2002-09-03 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
49 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
50 request->sockfd and write to request->sockfd_write (Solaris doesn't
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
51 like it when you read/write to the same FILE structure)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
52
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
53 * lib/local.c - encode major/minor numbers for a device in the file
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
54 size. This is probably still busted for other platforms
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
55
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
56 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
57 checking on the fdopen() calls. Also make sure that all of them have a
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
58 + in their open mode. Doesn't affect UNIX, but it does affect Windows
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
59
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
60 * src/gtk/menu-items.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c - added
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
61 function save_directory_listing. It's in the Local and Remote menus
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
62
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
63 * src/gtk/view_dialog.c - changed log message slightly. The new string
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
64 should already be in the po files translated
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
65
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
66 2002-08-30 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
67 * lib/misc.c - don't allow passing a 0 to log10
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
68
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
69 2002-08-30 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
70 * src/gtk/gftp-gtk.c - Use stockitem for menu items in gtk+ 2.0.
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
71 Use _gtk_accel_group_attach for gtk 2.0 (removes FIXME). Only call
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
72 bind_textdomain_codeset if we're in gtk 2.0
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
73 (all from Sung-Hyun Nam <namsh@kldp.org>)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
74
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
75 2002-08-29 Sung-Hyun Nam <namsh@kldp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
76 * po/ko.po - language team change
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
77
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
78 2002-08-29 Sung-Hyun Nam <namsh@kldp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
79 * po/ko.po - Updated Korean translation
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
80
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
81 2002-08-29 Yanko Kaneti <yaneti@declera.com>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
82 * po/bg.po - Updated Bulgarian translation
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
83
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
84 2002-08-23 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
85 * configure.in - small build fixes
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
86
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
87 2002-08-23 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
88 * lib/rfc959.c - put anonymous ftp checks in here instead of scattered
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
89 elsewhere
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
90
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
91 * src/gtk/gftp-gtk.c - call bind_textdomain_codeset in gtk+ port.
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
92 Removed anonymous FTP stuff
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
93
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
94 * lib/local.c - open files with O_LARGEFILE if _LARGEFILE_SOURCE
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
95 is defined
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
96
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
97 * lib/protocols.c - removed anonymous FTP stuff
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
98
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
99 * lib/rfc2068.c - don't check for anonymous username
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
100
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
101 * src/gtk/misc-gtk.c - translation fixes for menus
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
102 (from Owen Taylor <otaylor@redhat.com>)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
103
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
104 2002-08-23 <baddog@cvs.gnome.org>
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
105 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 ->
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
106 zh_TW
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
107
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
108 2002-08-23 Abel Cheung <maddog@linux.org.hk>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
109 * zh_TW.Big5.po renamed to zh_TW.po
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
110
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
111 * zh_CN.GB2312.po renamed to zh_CN.po
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
112
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
113 * zh_TW.Big5.gmo - Removed.
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
114
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
115 * Makefile.in.in, gftp.pot - Remove generated file.
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
116
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
117 2002-08-23 <baddog@cvs.gnome.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
118 * po/.cvsignore - Shhhhhh
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
119
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
120 2002-08-14 <cneumair@cvs.gnome.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
121 * po/de.po - Fixed German translation (charset, header)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
122
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
123 2002-08-05 Brian Masney <masneyb@gftp.org>
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
124 * lib/protocols.c - When we connect to a remote server, don't change
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
125 the hostname to the PTR record of the hostname
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
126
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
127 * src/gtk/transfer.c - Fixed crash if you was already transfering a
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
128 file, and you started another transfer, and if you hit cancel at the
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
129 Overwrite/Resume/Skip dialog
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
130
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
131 * docs/sample.gftp/gftprc - put the ext= lines back in the config file
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
132
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
133 * po/es.po - Spanish updates (from Gustavo D. Vranjes
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
134 <gvranjes@softhome.net>)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
135
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
136 * po/nl.po - Dutch updates (from Myckel Habets
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 18
diff changeset
137 <myckelhabets@netscape.net>)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
138
17
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
139 2002-07-19 Brian Masney <masneyb@gftp.org>
8544f6585593 start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents: 2
diff changeset
140 * gFTP 2.0.13 released
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
141