Mercurial > gftp.yaz
annotate ChangeLog @ 60:8a9324fb63a4
2002-11-21 Brian Masney <masneyb@gftp.org>
* lib/protocols.c (gftp_get_next_line) - fixed several bugs
* lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In
gftp_find_cache_entry(), don't log an error to the user if we can't
open up the cache file
* lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes
* lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size
instead of buffer size - 1 to gftp_get_line
author | masneyb |
---|---|
date | Fri, 22 Nov 2002 00:54:38 +0000 |
parents | 618423504fe0 |
children | 42df9e4be8e0 |
rev | line source |
---|---|
60 | 1 2002-11-21 Brian Masney <masneyb@gftp.org> |
2 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
3 | |
4 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
5 gftp_find_cache_entry(), don't log an error to the user if we can't | |
6 open up the cache file | |
7 | |
8 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
9 | |
10 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
11 instead of buffer size - 1 to gftp_get_line | |
12 | |
59 | 13 2002-11-20 Brian Masney <masneyb@gftp.org> |
14 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
15 gftp_read_config_file() and gftp_read_bookmarks_file() | |
16 | |
17 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
18 than 2 characters | |
19 | |
20 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
21 compliance) | |
22 | |
23 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
24 | |
58 | 25 2002-11-20 Brian Masney <masneyb@gftp.org> |
26 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
27 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
28 Added struct_gftp_getline_buffer for gftp_get_line function() | |
29 | |
30 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
31 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
32 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
33 instead of size_t. Added *_set_config_options function to gftp_request | |
34 structure and protocol files. Use the new network functions | |
35 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
36 sockets so that I can use timeouts properly with select | |
37 | |
38 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
39 gftp_read() and gftp_write() functions | |
40 | |
41 * lib/protocols.c - move some protocol specific code to the protocol | |
42 specific files | |
43 | |
44 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
45 of gftp_logging_error | |
46 | |
47 * lib/cache.c - log some more error conditions to the user | |
48 | |
49 * lib/rfc959.c - added rfc959_getcwd(). In, | |
50 rfc959_accept_active_connection(), set set socket to blocking mode | |
51 before calling accept() | |
52 | |
53 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
54 return instead of segfaulting | |
55 | |
56 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
57 pixels wide | |
58 | |
59 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
60 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
61 from ANSI C IO (FILE *) to standard BSD sockets | |
62 | |
57 | 63 2002-11-11 Brian Masney <masneyb@gftp.org> |
64 * configure.in - compile GTK+ 2.0 port by default | |
65 | |
56 | 66 2002-11-11 Brian Masney <masneyb@gftp.org> |
67 * src/gtk/dnd.c - fixes to DnD code | |
68 | |
69 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
70 | |
71 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
72 we're in a child thread, instead compare the value of pthread_self() | |
73 with main_thread_id | |
74 | |
75 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
76 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
77 don't set user_data to 0x1 if we're in a child thread | |
78 | |
79 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
80 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
81 | |
82 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
83 port for the ssh service | |
84 | |
85 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
86 the default port for that protocol there | |
87 | |
88 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
89 Be able to update the directory download progress in window1 now | |
90 | |
91 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
92 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
93 needed | |
94 | |
54 | 95 2002-11-11 Andras Timar <timar@gnome.hu> |
96 * configure.in: added 'hu' to ALL_LINGUAS | |
97 | |
51 | 98 2002-11-6 Brian Masney <masneyb@gftp.org> |
99 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
100 listbox to grab the double click event | |
101 | |
50 | 102 2002-11-5 Brian Masney <masneyb@gftp.org> |
103 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
104 the function add_file_transfer() | |
105 | |
106 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
107 | |
108 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
109 click stuff not working properly | |
110 | |
49 | 111 2002-11-5 Brian Masney <masneyb@gftp.org> |
112 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
113 | |
114 2002-11-5 Brian Masney <masneyb@gftp.org> | |
115 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
116 functions from the top of the file. I had to rearrange the order of a | |
117 bunch of functions to avoid compiler warnings | |
118 | |
119 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
120 defined, give a compiler warning and define our own | |
121 | |
122 * lib/local.c (local_get_next_file) - if this file is a device, store | |
123 the major/minor number in the file size | |
124 | |
125 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
126 use the major() and minor() macros to display the major and minor number | |
127 | |
47 | 128 2002-11-5 Brian Masney <masneyb@gftp.org> |
129 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
130 gftp_delete_cache_entry | |
131 | |
132 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
133 remote site, clear all cache entries for that site | |
134 | |
135 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
136 pass a 0 as second argument to gftp_delete_cache_entry | |
137 | |
46 | 138 2002-10-31 Brian Masney <masneyb@gftp.org> |
139 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
140 If g_locale_to_utf8 fails, print out a warning to the user on the | |
141 console | |
142 | |
45 | 143 2002-10-31 Brian Masney <masneyb@gftp.org> |
144 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
145 version. May cause problems later on. | |
146 | |
147 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
148 functions for user data when using glib 2.0 | |
149 | |
44 | 150 2002-10-30 Brian Masney <masneyb@gftp.org> |
151 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
152 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
153 gtk_window_add_accel_group for both GTK+ ports | |
154 (from Nam SungHyun <namsh@kldp.org>) | |
155 | |
43 | 156 2002-10-30 Brian Masney <masneyb@gftp.org> |
157 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
158 | |
159 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
160 and SIGINT is received, terminate the program | |
161 | |
42 | 162 2002-10-29 Brian Masney <masneyb@gftp.org> |
163 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
164 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
165 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
166 improved and simplified signal handling code | |
167 | |
41 | 168 2002-10-29 Brian Masney <masneyb@gftp.org> |
169 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
170 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
171 g_get_tmp_dir () | |
172 | |
173 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
174 | |
175 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
176 lib/sshv2.c - check for interrupted signal calls | |
177 | |
178 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
179 | |
180 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
181 g_main_context_iteration in GTK+ 2.0 port | |
182 | |
183 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
184 in GTK+ 2.0 port | |
185 | |
40 | 186 2002-10-17 Brian Masney <masneyb@gftp.org> |
187 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
188 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
189 try to abort the transfer. | |
190 | |
191 * lib/rfc959.c - add rfc959_abort_transfer function | |
192 | |
193 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
194 rfc2068_end_transfer and local_end_transfer respectively | |
195 | |
196 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
197 | |
198 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
199 first. If that fails, disconnect from the site completely | |
200 | |
39 | 201 2002-10-15 Brian Masney <masneyb@gftp.org> |
202 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
203 | |
204 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
205 entry is NULL | |
206 | |
207 * lib/protocols.c (copy_token) - when setting the end position of | |
208 the token to \0, after we're done set it back to the origional position | |
209 | |
210 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
211 to just list | |
212 | |
37 | 213 2002-10-13 Brian Masney <masneyb@gftp.org> |
214 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
215 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
216 and GFTP_PORTS_ALL flags | |
217 | |
218 * lib/config_file.c - update to use new fields. | |
219 | |
220 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
221 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
222 | |
223 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
224 was given on the command line, don't connect to it until the local side | |
225 has been setup | |
226 | |
227 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
228 set | |
229 | |
230 * src/text/gftp-text.c - add help screen for set command. Added command | |
231 clear cache. Sort the filelist based on the configuration options. | |
232 | |
233 * configure.in - update to version 2.0.14 | |
234 | |
235 * cvsclean - clean up the Makefile.am file better | |
236 | |
36 | 237 2002-10-07 Brian Masney <masneyb@gftp.org> |
238 * lib/local.c - fixed file uploads | |
239 | |
240 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
241 you didn't have permission to | |
242 | |
243 * src/gtk/transfer.c - display fixes for hostname | |
244 | |
245 * autogen.sh - pass -c to automake | |
246 | |
34 | 247 2002-10-07 Brian Masney <masneyb@gftp.org> |
248 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
249 from Debian. This can be used as a menu icon. | |
250 | |
33 | 251 2002-10-06 Brian Masney <masneyb@gftp.org> |
252 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
253 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
254 | |
255 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
256 | |
257 2002-10-03 Brian Masney <masneyb@gftp.org> | |
258 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
259 will automagically add these for me. | |
260 | |
261 * autogen.sh - remove check for libtool | |
262 | |
263 * configure.in - link in gthread | |
264 | |
265 * cvsclean - added this script | |
266 | |
60 | 267 * *.[ch] - added $Id: ChangeLog,v 1.35 2002/11/22 00:54:37 masneyb Exp $ tags |
33 | 268 |
269 * debian/* - updated files from Debian maintainer | |
270 | |
32 | 271 2002-10-03 Brian Masney <masneyb@gftp.org> |
272 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
273 | |
274 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
275 call gdk_threads_enter() and gdk_threads_leave() | |
276 | |
28 | 277 2002-09-24 Brian Masney <masneyb@gftp.org> |
278 * configure.in - take [external] off of AM_GNU_GETTEXT | |
279 | |
27 | 280 2002-09-24 Brian Masney <masneyb@gftp.org> |
281 * intl/ - remove this directory | |
282 | |
26 | 283 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
284 * Makefile.am (SUBDIRS): Add intl, | |
285 (ACLOCAL_AMFLAGS): New variable. | |
286 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
287 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
288 | |
25 | 289 2002-09-24 Brian Masney <masneyb@gftp.org> |
26 | 290 * lib/config_file.c - separated saving of bookmarks from |
291 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
292 no longer be rewritten to disk every time gFTP exits | |
293 | |
294 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
295 gftp_write_config_file() when altering a bookmark | |
296 | |
297 * configure.in - Fixed problem with the text port being compiled | |
298 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
299 instead | |
300 | |
301 * autogen.sh - add this build script | |
302 | |
303 2002-09-24 Brian Masney <masneyb@gftp.org> | |
25 | 304 * Remove intl/ directory from CVS |
305 | |
23 | 306 2002-09-18 Brian Masney <masneyb@gftp.org> |
307 * Updated French translation (from Damien Mascr? | |
308 <damienmascre@free.fr>) | |
309 | |
310 * Updated Japanese translation (from Ryoichi INAGAKI | |
311 <inagaki@ryo1.net>) | |
312 | |
313 2002-09-17 Brian Masney <masneyb@gftp.org> | |
314 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
26 | 315 changes two times in the bookmark editor. Also, fixed several memory |
316 leaks | |
23 | 317 |
22 | 318 2002-09-16 Brian Masney <masneyb@gftp.org> |
319 * po/de.po - Updated German translation (from Matthias Haase | |
320 <matthias_haase@bennewitz.com>) | |
321 | |
322 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
323 <LAV@VL3143.spb.edu>) | |
324 | |
21 | 325 2002-09-16 Brian Masney <masneyb@gftp.org> |
326 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
327 Fixed compile errors when compiling against GTK+ 1.2 | |
328 | |
329 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
330 with GTK+ 1.2 | |
331 | |
19 | 332 2002-09-15 Brian Masney <masneyb@gftp.org> |
333 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
334 numdirs from unsigned long to long. This must be a signed field. This | |
335 is a bug I introduced a few days ago. | |
336 | |
337 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
338 fdopen. This is also a bug I introduced a few days ago. | |
339 | |
340 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
341 difftime isn't a negative number when computing the KB/s | |
342 | |
343 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
344 GTK_OBJECT for the str variable | |
345 | |
346 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
347 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
348 | |
349 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
350 | |
351 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
352 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
353 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
354 port to create the dialog. Also, associate gFTP icon with this dialog | |
355 | |
356 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
357 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
358 dialog buttons. | |
359 | |
360 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
361 |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
362 * configure.in: added 'ro' to ALL_LINGUAS |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
363 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
364 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
|
365 * lib/misc.c - added gftp_sort_filelist function |
1 | 366 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
367 * 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
|
368 to do the sorting |
1 | 369 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
370 * 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
|
371 automake 1.4 |
1 | 372 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
373 * src/text/gftp-text.c, lib/protocols.c - more large file support |
1 | 374 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
375 2002-09-04 Brian Masney <masneyb@gftp.org> |
19 | 376 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
377 <tobias@portfolio16.de>) | |
1 | 378 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
379 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
|
380 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
19 | 381 request->sockfd and write to request->sockfd_write (Solaris doesn't |
382 like it when you read/write to the same FILE structure) | |
1 | 383 |
19 | 384 * lib/local.c - encode major/minor numbers for a device in the file |
385 size. This is probably still busted for other platforms | |
1 | 386 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
387 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
19 | 388 checking on the fdopen() calls. Also make sure that all of them have a |
389 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
1 | 390 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
391 * 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
|
392 function save_directory_listing. It's in the Local and Remote menus |
1 | 393 |
19 | 394 * src/gtk/view_dialog.c - changed log message slightly. The new string |
395 should already be in the po files translated | |
1 | 396 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
397 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
|
398 * lib/misc.c - don't allow passing a 0 to log10 |
1 | 399 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
400 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
|
401 * 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
|
402 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
|
403 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
|
404 (all from Sung-Hyun Nam <namsh@kldp.org>) |
1 | 405 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
406 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
|
407 * po/ko.po - language team change |
1 | 408 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
409 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
|
410 * po/ko.po - Updated Korean translation |
1 | 411 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
412 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
|
413 * 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
|
414 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
415 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
|
416 * configure.in - small build fixes |
1 | 417 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
418 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
|
419 * 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
|
420 elsewhere |
1 | 421 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
422 * 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
|
423 Removed anonymous FTP stuff |
1 | 424 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
425 * 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
|
426 is defined |
1 | 427 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
428 * lib/protocols.c - removed anonymous FTP stuff |
1 | 429 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
430 * lib/rfc2068.c - don't check for anonymous username |
1 | 431 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
432 * 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
|
433 (from Owen Taylor <otaylor@redhat.com>) |
1 | 434 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
435 2002-08-23 <baddog@cvs.gnome.org> |
19 | 436 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
437 zh_TW | |
1 | 438 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
439 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
|
440 * zh_TW.Big5.po renamed to zh_TW.po |
1 | 441 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
442 * zh_CN.GB2312.po renamed to zh_CN.po |
1 | 443 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
444 * zh_TW.Big5.gmo - Removed. |
1 | 445 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
446 * Makefile.in.in, gftp.pot - Remove generated file. |
1 | 447 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
448 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
|
449 * po/.cvsignore - Shhhhhh |
1 | 450 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
451 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
|
452 * po/de.po - Fixed German translation (charset, header) |
1 | 453 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
454 2002-08-05 Brian Masney <masneyb@gftp.org> |
19 | 455 * lib/protocols.c - When we connect to a remote server, don't change |
456 the hostname to the PTR record of the hostname | |
1 | 457 |
19 | 458 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
459 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
|
460 Overwrite/Resume/Skip dialog |
1 | 461 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
462 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
1 | 463 |
19 | 464 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
465 <gvranjes@softhome.net>) | |
1 | 466 |
19 | 467 * po/nl.po - Dutch updates (from Myckel Habets |
468 <myckelhabets@netscape.net>) | |
1 | 469 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
470 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
|
471 * gFTP 2.0.13 released |
1 | 472 |