Mercurial > gftp.yaz
annotate ChangeLog @ 153:53c8dc0991a1
Mark the last remaining fuzzy no-c-format manually
author | mitr |
---|---|
date | Mon, 28 Apr 2003 19:03:35 +0000 |
parents | 2f15b3000dbc |
children | 165a3baa46d7 |
rev | line source |
---|---|
151 | 1 2003-4-27 Brian Masney <masneyb@gftp.org> |
2 * lib/config_file.c (gftp_config_file_read_float) - use strtod instead | |
3 of strtof(). ANSI C describes strtod, and C99 describes strtof(). Some | |
4 older systems don't have strtof() | |
5 | |
6 * lib/gftp.h - if HAVE_OPENPTY is defined, include pty.h. Fix for | |
7 GFTP_GET_AI_FAMILY when request or request->hostp is NULL. Added | |
8 free_hostp boolean to struct gftp_request | |
9 | |
10 * lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c - added | |
11 copy_local_options parameter. Add a pointer to newreq->hostp from the | |
12 source request structure | |
13 | |
14 * lib/protocols.c - honor free_hostp | |
15 | |
16 * lib/rfc959.c - fix for IPV4/IPV6 detection | |
17 | |
18 * src/gtk/misc-gtk.c src/gtk/options_dialog.c - fixed compiler errors | |
19 when compiling against GTK+ 1.2 | |
20 | |
21 * src/gtk/transfer.c - lookup option one_transfer instead of | |
22 do_one_transfer_at_a_time | |
23 | |
149 | 24 2003-04-27 Christian Rose <menthos@menthos.com> |
25 | |
26 * lib/rfc959.c: Fix bug #111090 by adding | |
27 /* xgettext:no-c-format */ comment. This trivial bug prevented any | |
28 full localization of gftp. | |
29 | |
146 | 30 2003-4-25 Brian Masney <masneyb@gftp.org> |
31 * lib/rfc959.c - added IPV6 support (RFC2428). The only part of the | |
32 project that isn't IPV6 ready is the proxy comparsion functions. | |
33 | |
34 * lib/protocols.c - change the hints.ai_family paramater from AF_INET | |
35 to PF_UNSPEC | |
36 | |
37 * lib/gftp.h lib/misc.c lib/pty.c - moved the functionality of | |
38 pty[ms]_open() to pty.c. Combined these 2 functions into open_ptys(), | |
39 and there is one defined for each system type (lots of #define's in | |
40 this file!) | |
41 | |
42 * lib/Makefile.am po/POTFILES.in - added pty.c | |
43 | |
44 * lib/sshv2.c - when searching for the password prompt, omit the first | |
45 character in case it is capitalized. Also, use the new function | |
46 open_ptys() | |
47 | |
48 * configure.in - search for openpty in -lutil. Also, define | |
49 HAVE_OPENPTY if this function is present on the system | |
50 | |
51 | |
143 | 52 2003-4-23 Brian Masney <masneyb@gftp.org> |
53 * Makefile.am - removed config.rpath from EXTRA_DIST | |
54 | |
55 * configure.in - added 'sr' to ALL_LINGUAS. Incremented | |
56 version to 2.0.15 (will be a little while before this is released. | |
57 Still have lots to do) | |
58 | |
59 * docs/sample.gftp/gftprc - removed old unused SSH options. These were | |
60 used by the SSH protocol I ripped out | |
61 | |
62 * lib/config_file.c - fix for gftp_set_request_option(). Implemented | |
63 gftp_lookup_request_options(). Overriding of configuration options now | |
64 works across the board :) | |
65 | |
66 * lib/protocols.c - extra checks for freeing memory | |
67 | |
68 * src/text/gftp-text.c - renamed ssh_use_sftp_subsys to the proper | |
69 name of sshv2_use_sftp_subsys | |
70 | |
71 * src/gtk/transfer.c - renamed append_file_transfers option | |
72 to the proper name of append_transfers. Also, added quick fix for | |
73 start_file_transfers option that is still missing | |
74 | |
75 * debian/gftp-text.postinst - this will add add an alternative for the | |
76 ftp command and point it to gftp-text | |
77 | |
139 | 78 2003-4-21 Brian Masney <masneyb@gftp.org> |
79 * lib/gftp.h - added ui_cancel_function to struct gftp_option_type_var | |
80 | |
81 * src/gtk/gftp-gtk.c - added custom_edit_value to struct | |
82 gftp_textcomboedt_widget_data | |
83 | |
84 * src/gtk/options_dialog.c - fixups for gftp_option_type_textcomboedt. | |
85 The value will always convert %n to \n when reading in and then do the | |
86 opposite conversion when saving the variable. Also, added tooltips to | |
87 the options | |
88 | |
89 * lib/rfc959.c - remove FIXME comment | |
90 | |
136 | 91 2003-4-18 Brian Masney <masneyb@gftp.org> |
92 * lib/config_file.c lib/gftp.h - removed gftp_option_type_subtree, | |
93 gftp_option_type_table and gftp_option_type_newtable | |
94 | |
95 * lib/config_file.c - implemented gftp_set_request_option() | |
96 | |
97 * lib/gftp.h lib/config_file.c - changed declaration of | |
98 ui_print_function in struct gftp_option_type. Also added | |
99 ui_save_function field to this structure | |
100 | |
101 * lib/gftp.h added local_options_vars num_local_options_vars variables | |
102 to gftp_request | |
103 | |
104 * lib/local.c (local_set_directory) - small improvements to this | |
105 function | |
106 | |
107 * lib/misc.c - added gftp_copy_local_options() | |
108 | |
109 * lib/options.h - fix declaration of General tab | |
110 | |
111 * lib/protocols.c - free local options | |
112 | |
113 * lib/rfc2068.c - check to see if we're connecting to a FTP site via | |
114 proxy | |
115 | |
116 * lib/rfc959.c lib/protocols.c - changes for CRAY directory listings | |
117 | |
118 * src/gtk/gftp-gtk.h - added struct gftp_options_dialog_data and | |
119 struct gftp_textcomboedt_widget_data | |
120 | |
121 * src/gtk/options_dialog.c - start to use new configuration interface | |
122 | |
123 * src/gtk/transfer.c - remove FIXME note. This is already in | |
124 lib/gftp.h | |
125 | |
131 | 126 2003-4-13 Brian Masney <masneyb@gftp.org> |
127 * lib/config_file.c - fixed float config type | |
128 | |
129 * lib/gftp.h lib/misc.c - added gftp_gen_ls_string() | |
130 | |
131 * src/gtk/menu-items.c (dosave_directory_listing) | |
132 src/text/gftp-text.c (gftp_text_ls) - use | |
133 gftp_gen_ls_string() | |
134 | |
129 | 135 2003-4-13 Brian Masney <masneyb@gftp.org> |
136 * lib/config_file.c - implemented gftp_set_global_option() | |
137 | |
138 * lib/gftp.h lib/misc.c - added gftp_tdata_new() | |
139 | |
140 * src/text/gftp-text.c src/gtk/transfer.c - use gftp_tdata_new() | |
141 | |
142 * src/gtk/bookmarks.c - In run_bookmark(), use gftp_parse_bookmark() | |
143 function. Renamed all instances of gftp_bookmarks to | |
144 gftp_bookmarks_var | |
145 | |
146 * src/gtk/gftp-gtk.[ch] - added global variables viewedit_processes | |
147 and viewedit_processes_done. These used to be declared in | |
148 lib/options.h | |
149 | |
150 * src/gtk/gftp-gtk.h (struct gftp_window_data) - removed sortcol and | |
151 sortasds variables. Added prefix_col_str variable. This will either be | |
152 local or remote | |
153 | |
154 * src/gtk/misc-gtk.c - removed r_gethostbyname() and r_getservbyname() | |
155 | |
156 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(), get_status() and | |
157 parse_attribs(). These are in the lib/ directory now. Also, use | |
158 g_static_mutex_*() functions from glib instead of pthread_mutex_*() | |
159 | |
160 * src/gtk/bookmark.c src/gtk/dnd.c src/gtk/menu-items.c | |
161 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
162 | |
163 * src/gtk/options_dialog.c - commented out large parts of this file. | |
164 This file is busted at the moment | |
165 | |
166 * src/gtk/*.[ch] - Use new configuration interface in all source | |
167 files. Updated copyright dates on all source files | |
168 | |
126 | 169 2003-4-9 Brian Masney <masneyb@gftp.org> |
170 * lib/gftp.h lib/config_file.c - reordered config option types. Added | |
171 gftp_option_type_textcomboedt type | |
172 | |
173 * lib/options.h lib/rfc959.c - moved gftp_proxy_type to rfc959.c | |
174 | |
175 * lib/rfc959.c - added proxy_type that is | |
176 gftp_option_type_textcomboedt. Consolidated help text into comment. | |
177 In parse_ftp_proxy_string(), improve parsing of proxy config | |
178 | |
125 | 179 2003-4-8 Brian Masney <masneyb@gftp.org> |
180 * src/text/gftp-text.c lib/misc.c - moved r_gethostbyname() and | |
181 r_getservbyname() to lib/misc.c. Now uses GMutex functions | |
182 | |
183 * lib/config_file.c lib/gftp.h lib/options.h - added config | |
184 variable type textcombo. default_protocol uses this | |
185 | |
186 * lib/config_file.c (gftp_read_config_file) - when reading in the | |
187 list of supported protocols, add the protocol names to the list | |
188 associated with default_protocol. Also, don't try to have | |
189 default_protocol fall back to FTP. The code that uses this will fall | |
190 back properly | |
191 | |
192 * lib/gftp.h (struct gftp_transfer) - renamed node to user_data | |
193 | |
194 * lib/misc.c lib/gftp.h - moved parse_attribs() from | |
195 src/gtk/transfer.c to misc.c. Renamed to gftp_parse_attribs() | |
196 | |
197 * lib/protocols.c lib/gftp.h - moved get_status() from | |
198 src/gtk/transfer.c to protocols.c. Renamed to | |
199 gftp_get_transfer_status(). Uses GMutex functions | |
200 | |
201 | |
202 2003-4-7 Brian Masney <masneyb@gftp.org> | |
203 * src/gtk/bookmarks.c - renamed struct gftp_bookmarks to | |
204 gftp_bookmarks_var. In run_bookmark(), use gftp_parse_bookmark() | |
205 | |
206 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/menu-items.c | |
207 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
208 | |
209 * src/gtk/dnd.c src/gtk/menu-items.c - don't use depreciated macros | |
210 to access the request structure | |
211 | |
212 * src/gtk/*.c - use new gftp_lookup_global_option() and | |
213 gftp_lookup_request_option() functions | |
214 | |
215 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - moved viewedit_processes and | |
216 viewedit_process_done variables from lib/gftp.h and lib/options.h | |
217 | |
218 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(). This is now in | |
219 lib/protocols.c. Removed Binary/Ascii conversion. This is all done in | |
220 lib/rfc959.c | |
221 | |
124 | 222 2003-4-6 Brian Masney <masneyb@gftp.org> |
223 * lib/config_file.c src/text/gftp-text.c - changed arguments of | |
224 gftp_read_config_file() and gftp_read_bookmarks() to take an argument | |
225 to the path of the global config directory. The text/gtk+ port will | |
226 just pass SHARE_DIR. The native MacOS X port that is in the works | |
227 needs this (Nathan Robertson is currently working on this port) | |
228 | |
229 * lib/gftp.h lib/config_file.c - removed config variable type | |
230 gftp_option_type_textarray | |
231 | |
232 * lib/gftp.h lib/config_file.c - removed copy_function from | |
233 gftp_option_type_var. This is implemented with memcpy() instead | |
234 | |
235 * lib/rfc959.c - remember to rename all instances of firewall_* to | |
236 ftp_proxy_* | |
237 | |
238 * lib/sshv2.c - improved generating the argument list for the ssh | |
239 client | |
240 | |
241 * lib/sshv2.c lib/misc.c lib/gftp.h - added len argument to | |
242 ptym_open() | |
243 | |
244 * lib/protocols.c lib/misc.c lib/config_file.c - use g_strdup() | |
245 instead of g_malloc()/strcpy() | |
246 | |
247 2003-4-5 Brian Masney <masneyb@gftp.org> | |
248 * lib/config_file.c lib/options.h lib/gftp.h lib/rfc959.c | |
249 lib/rfc2068.c lib/ssh.c - added new internal configuration interface. | |
250 Rather than having a global variable for each option, I have a global | |
251 hash table (gftp_global_options_htable) that I can look up option names | |
252 by name using gftp_lookup_global_option(). I also an options hash | |
253 associated with a request structure, so I will be able to call | |
254 gftp_lookup_request_option(). I will be able to override options with | |
255 bookmarks or while transfers are in progress very easily now. Also, all | |
256 options no longer have to appear in config_file.c, the per protocol | |
257 options can appear inside their own file | |
258 | |
259 * lib/gftp.h lib/bookmarks.c lib/local.c lib/rfc959.c lib/rfc2068.c - | |
260 remove set_data_type and protocol name from struct gftp_request | |
261 | |
262 * lib/rfc959.c - renamed all firewall_* variables to ftp_proxy_* in | |
263 the config file | |
264 | |
265 * lib/gftp.h lib/protocols.c lib/rfc959.c - renamed all GFTP_TYPE_* | |
266 vars to GFTP_DIRTYPE_* | |
267 | |
268 * lib/gftp.h - removed ascii field and renamed the node pointer to | |
269 user_data in struct gftp_file. In gftp_request, removed any setting | |
270 that is now stored in the global/local hash tables. Added | |
271 register_module() pointer that will be called whenever the protocol is | |
272 first loaded into gftp | |
273 | |
274 * lib/rfc959.c src/text/gftp-text.c - moved the ascii/binary | |
275 translation to rfc959.c. Also, moved any instance of automatically | |
276 setting the data type to rfc959.c as well. | |
277 | |
278 * lib/misc.c lib/sshv2.c - moved all ssh functions from misc.c to | |
279 sshv2.c. I had these origionally in misc.c because I used to have 2 | |
280 different SSH protocols | |
281 | |
282 * lib/protocols.c src/text/gftp-text.c - added gftp_calc_kbs() to | |
283 = protocols.c. This no longer needs to be in the different ports | |
284 | |
285 * src/text/gftp-text.c - read/write options based on new configuration | |
286 interface | |
287 | |
288 * Use new configuration interface in all source files | |
289 | |
290 * Updated copyright dates on all source files | |
291 | |
292 * Note: GTK+ port is completely broken at the moment. I'll upload | |
293 those changes whenever I get them done | |
294 | |
121
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
295 2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com> |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
296 |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
297 * configure.in: Added "pt" to ALL_LINGUAS. |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
298 |
116 | 299 2003-03-04 Yuriy Syrota <rasta renome.rovno.ua> |
300 | |
301 * configure.in: Added Ukrainian (uk) to ALL_LINGUAS | |
302 | |
115 | 303 2003-2-25 Brian Masney <masneyb@gftp.org> |
304 * src/gtk/gftp-gtk.c - use gtk_container_add() instead of | |
305 gtk_scrolled_window_add_with_viewport() | |
306 (from Kang Jeong-Hee <Keizi@mail.co.kr>) | |
307 | |
113 | 308 2003-2-23 Brian Masney <masneyb@gftp.org> |
114 | 309 * lib/cache.c - added function gftp_parse_cache_entry(). Save |
310 request->server_type (output of SYST in FTP command) to the directory | |
311 entry | |
312 | |
313 * lib/rfc959.c (rfc959_syst) - fix to parse the output correctly | |
314 | |
315 * src/{text,gtk}/Makefile.am - remove @LIBINTL@. The gettext.m4 | |
316 macro should automatically add this to the LIBS variable | |
317 | |
113 | 318 * acinclude.m4 - put largefile.m4 in here |
319 | |
110 | 320 2003-02-21 Pablo Saratxaga <pablo@mandrakesoft.com> |
321 * configure.in: Added Catalan (ca) to ALL_LINGUAS | |
322 | |
107 | 323 2003-2-17 Brian Masney <masneyb@gftp.org> |
324 * lib/protocols.c lib/rfc959.c - added VMS directory listing support | |
325 | |
326 * lib/config_file.c lib/protocols.c - extra checks when stripping off | |
327 carriage returns and linefeeds | |
328 | |
105 | 329 2003-2-9 Brian Masney <masneyb@gftp.org> |
330 * lib/protocols.c (parse_time) - parse more time formats. Better | |
331 error checking. If there was an error parsing this time, | |
332 skip ahead to the next token | |
333 | |
334 * lib/rfc2068.c - this was completely broken. This was broken whenever | |
335 I did the conversion over to use the gftp_get_line() function. | |
336 | |
337 * lib/rfc959.c - use g_strdup instead of g_malloc/strcpy | |
338 | |
101 | 339 2003-2-6 Brian Masney <masneyb@gftp.org> |
102 | 340 * lib/gftp.h lib/protocols.c lib/rfc2068.c - put in new |
341 parse_time() function that should work across all locales. | |
342 It uses strptime() internally. | |
343 | |
344 * lib/misc.c - remove note from close statement | |
345 | |
101 | 346 * lib/config_file.c lib/gftp.h lib/options.h - remove ssh1_sftp_path |
347 option | |
348 | |
96 | 349 2003-02-03 Daniel Yacob <locales@geez.org> |
350 * configure.ac: Added "am" (Amharic) to ALL_LINGUAS. | |
351 | |
93 | 352 2003-1-21 Brian Masney <masneyb@gftp.org> |
353 * configure.in - fix for Solaris. Move the initial declaration up | |
354 in the source file | |
355 | |
91 | 356 2003-1-21 Brian Masney <masneyb@gftp.org> |
357 * lib/gftp.h - added server type defines. Added server_type field to | |
358 gftp_request | |
359 | |
360 * lib/local.c - use S_ISDIR and S_ISLINK macros | |
361 | |
362 * lib/protocols.c - (gftp_parse_ls*) - use hints from server_type for | |
363 parsing directory listing | |
364 | |
365 * lib/rfc959.c - added function rfc959_syst. Call this on startup | |
366 | |
367 * lib/protocols.c lib/rfc959.c lib/sshv2.c - pass request structure | |
368 to gftp_parse_ls | |
369 | |
370 * lib/sshv2.c - set server_type to be GFTP_TYPE_UNIX | |
371 | |
88 | 372 2003-1-11 Brian Masney <masneyb@gftp.org> |
373 * autogen.sh - removed --intl and --no-changelog flags to gettextize | |
374 | |
375 * aclocal.m4 - updated | |
376 | |
377 * configure.in - and intl and po directories to AC_OUTPUT | |
378 | |
379 * cvsclean - remove more stuff | |
380 | |
381 * lib/bookmark.c (bookmark_parse_url) - use gftp_parse_bookmark | |
382 function | |
383 | |
384 * lib/cache.c - remove gftp_cache_get_url_prefix(). Use | |
385 request->url_prefix instead | |
386 | |
387 * lib/config_file.c - use proper exit codes. Also complain if the | |
388 default protocol specified in the config file is invalid | |
389 | |
390 * lib/gftp.h lib/local.c lib/protocols.c - removed isblock, ischar, | |
391 issocket and isfifo in struct gftp_file (not used anymore) | |
392 | |
393 * lib/gftp.h lib/misc.c - removed file_countlf (not used anymore) | |
394 | |
395 * lib/local.c lib/misc.c lib/protocols.c - various small cleanups | |
396 | |
397 * lib/misc.c (string_hash_function) - check key[i] instead of key[0] | |
398 | |
399 * lib/protocols.c lib/gftp.h - added gftp_parse_bookmark() | |
400 | |
401 * lib/rfc2068.c - if we are connected to a FTP url via a proxy, set | |
402 request->url_prefix to be ftp. Added rfc2068_destroy() to free | |
403 url_prefix whenever the structure is to be freed | |
404 | |
86 | 405 2002-12-29 Brian Masney <masneyb@gftp.org> |
406 * lib/gftp.h - don't include sys/sysmacros.h | |
407 | |
408 * src/gtk/transfer.c - more GFTP_EFATAL checks | |
409 | |
84 | 410 2002-12-29 Brian Masney <masneyb@gftp.org> |
411 * lib/ssh.c lib/config_file.c lib/Makefile.am lib/gftp.h lib/options.h - | |
412 removed old legacy SSH protocol and option to enable this protocol | |
413 | |
414 * lib/gftp.h - added GFTP_ERETRYABLE and GFTP_EFATAL error codes | |
415 | |
416 * lib/bookmark.c lib/local.c lib/protocols.c lib/rfc959.c lib/rfc2068.c | |
417 lib/sshv2.c - return new error codes instead of -1 or -2 | |
418 | |
419 * lib/misc.c (gftp_*_sort_function_ds) - changed return values | |
420 | |
421 * src/gtk/transfer.c (connect_thread) - if return value of | |
422 gftp_connect() is GFTP_EFATAL, don't attempt to retry the connection | |
423 | |
81 | 424 2002-12-11 Brian Masney <masneyb@gftp.org> |
425 * configure.in - fix for enable/disable gtkport, textport and gtk20 | |
426 | |
80 | 427 2002-12-10 Brian Masney <masneyb@gftp.org> |
428 * configure.in - check for grantpt function | |
429 | |
430 * lib/misc.c (pty[ms]_open) - use Unix98 PTY allocation if grantpt() | |
431 is on the current system | |
432 | |
433 * lib/gftp.h - include stropts.h if grantpt is here | |
434 | |
435 2002-12-5 Brian Masney <masneyb@gftp.org> | |
436 * Release final 2.0.14 | |
437 | |
438 * lib/Chagelog-old - brief updates since 2.0.13 | |
439 | |
77 | 440 2002-12-4 Brian Masney <masneyb@gftp.org> |
441 * lib/misc.c (ssh_start_login_sequence) - if the word WARNING appears | |
442 in the banner, don't log into the server | |
443 | |
444 * docs/sample.gftp/gftprc - removed use_default_dl_types line | |
445 | |
76 | 446 2002-12-4 Brian Masney <masneyb@gftp.org> |
447 * lib/protocols.c (gftp_set_data_type) - return 0 if there is no | |
448 protocol specific set_data_type function | |
449 | |
450 * src/gtk/transfer.c (gftp_gtk_transfer_files) - ascii/binary automatic | |
451 switching fixes | |
452 | |
453 2002-12-3 Brian Masney <masneyb@gftp.org> | |
75 | 454 * lib/config_file.c lib/gftp.h lib/protocols.c - removed |
455 use_default_dl_types option. This is always enabled by default now. | |
456 | |
457 * src/gtk/dnd.c src/gtk/transfer.c - fix for files that should be | |
458 transferred as ascii | |
459 | |
73 | 460 2002-12-2 Brian Masney <masneyb@gftp.org> |
461 * src/gtk/bookmarks.c (run_bookmark) - don't override the value of | |
462 need_userpass for SSH transfers | |
463 | |
464 * ChangeLog-old - clean up list of changes from 2.0.13 to 2.0.14rc1 | |
465 | |
466 * README - minor fixes | |
467 | |
468 * configure.in - increment version to 2.0.14 | |
469 | |
470 * debian/copyright - change my email address and webpage | |
471 | |
472 * debian/rules - 2 small changes | |
473 | |
474 * TODO - added 1 item | |
475 | |
72 | 476 2002-12-2 Brian Masney <masneyb@gftp.org> |
477 * src/gtk/misc-gtk.c (MakeEditDialog) - bind to enter and esc keys | |
478 | |
67 | 479 2002-11-27 Brian Masney <masneyb@gftp.org> |
480 * Officially release 2.0.14rc1 | |
481 | |
482 * lib/cache.c - take out a warning message | |
483 | |
484 * lib/misc.c lib/protocols.c lib/gftp.h lib/gtk/dnd.c lib/transfer.c - | |
485 add second argument (free_request) to gftp_request_destroy | |
486 | |
487 * lib/protocols.c (gftp_parse_url) - make sure the request structure | |
488 is cleared before we start to modify it | |
489 | |
490 * src/gtk/gftp-text.c - fixed crash if you didn't enter a username | |
491 | |
66 | 492 2002-11-26 Brian Masney <masneyb@gftp.org> |
493 * configure.in - change version to 2.0.14rc1 | |
494 | |
495 * lib/local.c - fix for uploading files. Move setting of hostname | |
496 from local_connect() to local_init() | |
497 | |
498 * lib/misc.c (gftp_request) - copy only select fields over instead of | |
499 whole structure | |
500 | |
501 * lib/protocols.c (gftp_request_new) - set datafd and cachefd to -1 | |
502 | |
503 * lib/protocols.c (gftp_set_proxy_config) - allow a NULL proxy_config | |
504 to be passed | |
505 | |
506 * src/gtk/misc-gtk.c (update_window) - don't show the hostname if we | |
507 are connected via the local protocol | |
508 | |
509 * src/gtk/transfer.c (create_transfer) - check to see if this protocol | |
510 is always connected | |
511 | |
65 | 512 2002-11-25 Brian Masney <masneyb@gftp.org> |
513 * lib/misc.c (ssh_start_login_sequence) - fixes for when the initial | |
514 SSH banner is bigger than 200 characters | |
515 | |
516 * lib/local.c (local_connect) - set request->hostname to local | |
517 filesystem | |
518 | |
519 * lib/protocols.c (gftp_parse_url) - don't include 2 slashes for | |
520 the directory when parsing a local URL | |
521 | |
522 * src/gtk/chmod_dialog.c (chmod_dialog) - allow multiple files to be | |
523 selected | |
524 | |
525 * src/gtk/dnd.c - small fixes | |
526 | |
64 | 527 2002-11-23 Brian Masney <masneyb@gftp.org> |
528 * lib/sshv2.c - added more error checking so that the user won't get | |
529 disconnected if they enter files or directories that don't exist | |
530 | |
531 2002-11-23 Brian Masney <masneyb@gftp.org> | |
63 | 532 * lib/local.c lib/rfc959.c lib/rfc2068.c lib/ssh.c lib/sshv2.c |
533 lib/gftp.h - added swap_socks function to gftp_request structure | |
534 | |
535 * lib/misc.c lib/protocols.c - move swap_socks() from misc.c to | |
536 protocols.c (renamed to gftp_swap_socks) | |
537 | |
538 * src/gtk/misc-gtk.c src/gtk/transfer.c - removed fix_display() | |
539 | |
540 * src/gtk/delete_dialog.c src/gtk/transfer.c - changed all occurances of | |
541 swap_socks() to gftp_swap_socks() | |
542 | |
543 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed gftp_is_started | |
544 variable | |
545 | |
62 | 546 2002-11-21 Brian Masney <masneyb@gftp.org> |
547 * lib/local.c (local_put_file) - small fix | |
548 | |
61 | 549 2002-11-21 Brian Masney <masneyb@gftp.org> |
550 * lib/misc.c lib/ssh.c lib/sshv2.c - improvements to the login | |
551 sequence for SSH connections | |
552 | |
553 lib/sshv2.c - SSH transfers now works again | |
554 | |
60 | 555 2002-11-21 Brian Masney <masneyb@gftp.org> |
556 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
557 | |
558 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
559 gftp_find_cache_entry(), don't log an error to the user if we can't | |
560 open up the cache file | |
561 | |
562 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
563 | |
564 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
565 instead of buffer size - 1 to gftp_get_line | |
566 | |
59 | 567 2002-11-20 Brian Masney <masneyb@gftp.org> |
568 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
569 gftp_read_config_file() and gftp_read_bookmarks_file() | |
570 | |
571 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
572 than 2 characters | |
573 | |
574 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
575 compliance) | |
576 | |
577 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
578 | |
58 | 579 2002-11-20 Brian Masney <masneyb@gftp.org> |
580 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
581 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
582 Added struct_gftp_getline_buffer for gftp_get_line function() | |
583 | |
584 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
585 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
586 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
587 instead of size_t. Added *_set_config_options function to gftp_request | |
588 structure and protocol files. Use the new network functions | |
589 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
590 sockets so that I can use timeouts properly with select | |
591 | |
592 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
593 gftp_read() and gftp_write() functions | |
594 | |
595 * lib/protocols.c - move some protocol specific code to the protocol | |
596 specific files | |
597 | |
598 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
599 of gftp_logging_error | |
600 | |
601 * lib/cache.c - log some more error conditions to the user | |
602 | |
603 * lib/rfc959.c - added rfc959_getcwd(). In, | |
604 rfc959_accept_active_connection(), set set socket to blocking mode | |
605 before calling accept() | |
606 | |
607 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
608 return instead of segfaulting | |
609 | |
610 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
611 pixels wide | |
612 | |
613 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
614 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
615 from ANSI C IO (FILE *) to standard BSD sockets | |
616 | |
57 | 617 2002-11-11 Brian Masney <masneyb@gftp.org> |
618 * configure.in - compile GTK+ 2.0 port by default | |
619 | |
56 | 620 2002-11-11 Brian Masney <masneyb@gftp.org> |
621 * src/gtk/dnd.c - fixes to DnD code | |
622 | |
623 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
624 | |
625 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
626 we're in a child thread, instead compare the value of pthread_self() | |
627 with main_thread_id | |
628 | |
629 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
630 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
631 don't set user_data to 0x1 if we're in a child thread | |
632 | |
633 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
634 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
635 | |
636 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
637 port for the ssh service | |
638 | |
639 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
640 the default port for that protocol there | |
641 | |
642 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
643 Be able to update the directory download progress in window1 now | |
644 | |
645 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
646 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
647 needed | |
648 | |
54 | 649 2002-11-11 Andras Timar <timar@gnome.hu> |
650 * configure.in: added 'hu' to ALL_LINGUAS | |
651 | |
51 | 652 2002-11-6 Brian Masney <masneyb@gftp.org> |
653 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
654 listbox to grab the double click event | |
655 | |
50 | 656 2002-11-5 Brian Masney <masneyb@gftp.org> |
657 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
658 the function add_file_transfer() | |
659 | |
660 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
661 | |
662 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
663 click stuff not working properly | |
664 | |
49 | 665 2002-11-5 Brian Masney <masneyb@gftp.org> |
666 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
667 | |
668 2002-11-5 Brian Masney <masneyb@gftp.org> | |
669 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
670 functions from the top of the file. I had to rearrange the order of a | |
671 bunch of functions to avoid compiler warnings | |
672 | |
673 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
674 defined, give a compiler warning and define our own | |
675 | |
676 * lib/local.c (local_get_next_file) - if this file is a device, store | |
677 the major/minor number in the file size | |
678 | |
679 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
680 use the major() and minor() macros to display the major and minor number | |
681 | |
47 | 682 2002-11-5 Brian Masney <masneyb@gftp.org> |
683 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
684 gftp_delete_cache_entry | |
685 | |
686 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
687 remote site, clear all cache entries for that site | |
688 | |
689 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
690 pass a 0 as second argument to gftp_delete_cache_entry | |
691 | |
46 | 692 2002-10-31 Brian Masney <masneyb@gftp.org> |
693 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
694 If g_locale_to_utf8 fails, print out a warning to the user on the | |
695 console | |
696 | |
45 | 697 2002-10-31 Brian Masney <masneyb@gftp.org> |
698 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
699 version. May cause problems later on. | |
700 | |
701 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
702 functions for user data when using glib 2.0 | |
703 | |
44 | 704 2002-10-30 Brian Masney <masneyb@gftp.org> |
705 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
706 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
707 gtk_window_add_accel_group for both GTK+ ports | |
708 (from Nam SungHyun <namsh@kldp.org>) | |
709 | |
43 | 710 2002-10-30 Brian Masney <masneyb@gftp.org> |
711 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
712 | |
713 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
714 and SIGINT is received, terminate the program | |
715 | |
42 | 716 2002-10-29 Brian Masney <masneyb@gftp.org> |
717 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
718 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
719 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
720 improved and simplified signal handling code | |
721 | |
41 | 722 2002-10-29 Brian Masney <masneyb@gftp.org> |
723 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
724 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
725 g_get_tmp_dir () | |
726 | |
727 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
728 | |
729 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
730 lib/sshv2.c - check for interrupted signal calls | |
731 | |
732 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
733 | |
734 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
735 g_main_context_iteration in GTK+ 2.0 port | |
736 | |
737 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
738 in GTK+ 2.0 port | |
739 | |
40 | 740 2002-10-17 Brian Masney <masneyb@gftp.org> |
741 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
742 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
743 try to abort the transfer. | |
744 | |
745 * lib/rfc959.c - add rfc959_abort_transfer function | |
746 | |
747 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
748 rfc2068_end_transfer and local_end_transfer respectively | |
749 | |
750 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
751 | |
752 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
753 first. If that fails, disconnect from the site completely | |
754 | |
39 | 755 2002-10-15 Brian Masney <masneyb@gftp.org> |
756 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
757 | |
758 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
759 entry is NULL | |
760 | |
761 * lib/protocols.c (copy_token) - when setting the end position of | |
762 the token to \0, after we're done set it back to the origional position | |
763 | |
764 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
765 to just list | |
766 | |
37 | 767 2002-10-13 Brian Masney <masneyb@gftp.org> |
768 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
769 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
770 and GFTP_PORTS_ALL flags | |
771 | |
772 * lib/config_file.c - update to use new fields. | |
773 | |
774 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
775 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
776 | |
777 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
778 was given on the command line, don't connect to it until the local side | |
779 has been setup | |
780 | |
781 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
782 set | |
783 | |
784 * src/text/gftp-text.c - add help screen for set command. Added command | |
785 clear cache. Sort the filelist based on the configuration options. | |
786 | |
787 * configure.in - update to version 2.0.14 | |
788 | |
789 * cvsclean - clean up the Makefile.am file better | |
790 | |
36 | 791 2002-10-07 Brian Masney <masneyb@gftp.org> |
792 * lib/local.c - fixed file uploads | |
793 | |
794 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
795 you didn't have permission to | |
796 | |
797 * src/gtk/transfer.c - display fixes for hostname | |
798 | |
799 * autogen.sh - pass -c to automake | |
800 | |
34 | 801 2002-10-07 Brian Masney <masneyb@gftp.org> |
802 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
803 from Debian. This can be used as a menu icon. | |
804 | |
33 | 805 2002-10-06 Brian Masney <masneyb@gftp.org> |
806 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
807 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
808 | |
809 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
810 | |
811 2002-10-03 Brian Masney <masneyb@gftp.org> | |
812 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
813 will automagically add these for me. | |
814 | |
815 * autogen.sh - remove check for libtool | |
816 | |
817 * configure.in - link in gthread | |
818 | |
819 * cvsclean - added this script | |
820 | |
151 | 821 * *.[ch] - added $Id: ChangeLog,v 1.76 2003/04/28 02:07:17 masneyb Exp $ tags |
33 | 822 |
823 * debian/* - updated files from Debian maintainer | |
824 | |
32 | 825 2002-10-03 Brian Masney <masneyb@gftp.org> |
826 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
827 | |
828 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
829 call gdk_threads_enter() and gdk_threads_leave() | |
830 | |
28 | 831 2002-09-24 Brian Masney <masneyb@gftp.org> |
832 * configure.in - take [external] off of AM_GNU_GETTEXT | |
833 | |
27 | 834 2002-09-24 Brian Masney <masneyb@gftp.org> |
835 * intl/ - remove this directory | |
836 | |
26 | 837 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
838 * Makefile.am (SUBDIRS): Add intl, | |
839 (ACLOCAL_AMFLAGS): New variable. | |
840 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
841 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
842 | |
25 | 843 2002-09-24 Brian Masney <masneyb@gftp.org> |
26 | 844 * lib/config_file.c - separated saving of bookmarks from |
845 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
846 no longer be rewritten to disk every time gFTP exits | |
847 | |
848 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
849 gftp_write_config_file() when altering a bookmark | |
850 | |
851 * configure.in - Fixed problem with the text port being compiled | |
852 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
853 instead | |
854 | |
855 * autogen.sh - add this build script | |
856 | |
857 2002-09-24 Brian Masney <masneyb@gftp.org> | |
25 | 858 * Remove intl/ directory from CVS |
859 | |
23 | 860 2002-09-18 Brian Masney <masneyb@gftp.org> |
861 * Updated French translation (from Damien Mascr? | |
862 <damienmascre@free.fr>) | |
863 | |
864 * Updated Japanese translation (from Ryoichi INAGAKI | |
865 <inagaki@ryo1.net>) | |
866 | |
867 2002-09-17 Brian Masney <masneyb@gftp.org> | |
868 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
26 | 869 changes two times in the bookmark editor. Also, fixed several memory |
870 leaks | |
23 | 871 |
22 | 872 2002-09-16 Brian Masney <masneyb@gftp.org> |
873 * po/de.po - Updated German translation (from Matthias Haase | |
874 <matthias_haase@bennewitz.com>) | |
875 | |
876 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
877 <LAV@VL3143.spb.edu>) | |
878 | |
21 | 879 2002-09-16 Brian Masney <masneyb@gftp.org> |
880 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
881 Fixed compile errors when compiling against GTK+ 1.2 | |
882 | |
883 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
884 with GTK+ 1.2 | |
885 | |
19 | 886 2002-09-15 Brian Masney <masneyb@gftp.org> |
887 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
888 numdirs from unsigned long to long. This must be a signed field. This | |
889 is a bug I introduced a few days ago. | |
890 | |
891 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
892 fdopen. This is also a bug I introduced a few days ago. | |
893 | |
894 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
895 difftime isn't a negative number when computing the KB/s | |
896 | |
897 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
898 GTK_OBJECT for the str variable | |
899 | |
900 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
901 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
902 | |
903 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
904 | |
905 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
906 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
907 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
908 port to create the dialog. Also, associate gFTP icon with this dialog | |
909 | |
910 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
911 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
912 dialog buttons. | |
913 | |
914 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
915 |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
916 * configure.in: added 'ro' to ALL_LINGUAS |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
917 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
918 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
|
919 * lib/misc.c - added gftp_sort_filelist function |
1 | 920 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
921 * 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
|
922 to do the sorting |
1 | 923 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
924 * 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
|
925 automake 1.4 |
1 | 926 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
927 * src/text/gftp-text.c, lib/protocols.c - more large file support |
1 | 928 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
929 2002-09-04 Brian Masney <masneyb@gftp.org> |
19 | 930 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
931 <tobias@portfolio16.de>) | |
1 | 932 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
933 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
|
934 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
19 | 935 request->sockfd and write to request->sockfd_write (Solaris doesn't |
936 like it when you read/write to the same FILE structure) | |
1 | 937 |
19 | 938 * lib/local.c - encode major/minor numbers for a device in the file |
939 size. This is probably still busted for other platforms | |
1 | 940 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
941 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
19 | 942 checking on the fdopen() calls. Also make sure that all of them have a |
943 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
1 | 944 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
945 * 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
|
946 function save_directory_listing. It's in the Local and Remote menus |
1 | 947 |
19 | 948 * src/gtk/view_dialog.c - changed log message slightly. The new string |
949 should already be in the po files translated | |
1 | 950 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
951 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
|
952 * lib/misc.c - don't allow passing a 0 to log10 |
1 | 953 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
954 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
|
955 * 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
|
956 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
|
957 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
|
958 (all from Sung-Hyun Nam <namsh@kldp.org>) |
1 | 959 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
960 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
|
961 * po/ko.po - language team change |
1 | 962 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
963 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
|
964 * po/ko.po - Updated Korean translation |
1 | 965 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
966 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
|
967 * 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
|
968 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
969 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
|
970 * configure.in - small build fixes |
1 | 971 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
972 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
|
973 * 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
|
974 elsewhere |
1 | 975 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
976 * 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
|
977 Removed anonymous FTP stuff |
1 | 978 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
979 * 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
|
980 is defined |
1 | 981 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
982 * lib/protocols.c - removed anonymous FTP stuff |
1 | 983 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
984 * lib/rfc2068.c - don't check for anonymous username |
1 | 985 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
986 * 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
|
987 (from Owen Taylor <otaylor@redhat.com>) |
1 | 988 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
989 2002-08-23 <baddog@cvs.gnome.org> |
19 | 990 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
991 zh_TW | |
1 | 992 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
993 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
|
994 * zh_TW.Big5.po renamed to zh_TW.po |
1 | 995 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
996 * zh_CN.GB2312.po renamed to zh_CN.po |
1 | 997 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
998 * zh_TW.Big5.gmo - Removed. |
1 | 999 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1000 * Makefile.in.in, gftp.pot - Remove generated file. |
1 | 1001 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1002 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
|
1003 * po/.cvsignore - Shhhhhh |
1 | 1004 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1005 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
|
1006 * po/de.po - Fixed German translation (charset, header) |
1 | 1007 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1008 2002-08-05 Brian Masney <masneyb@gftp.org> |
19 | 1009 * lib/protocols.c - When we connect to a remote server, don't change |
1010 the hostname to the PTR record of the hostname | |
1 | 1011 |
19 | 1012 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
1013 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
|
1014 Overwrite/Resume/Skip dialog |
1 | 1015 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1016 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
1 | 1017 |
19 | 1018 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
1019 <gvranjes@softhome.net>) | |
1 | 1020 |
19 | 1021 * po/nl.po - Dutch updates (from Myckel Habets |
1022 <myckelhabets@netscape.net>) | |
1 | 1023 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
1024 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
|
1025 * gFTP 2.0.13 released |
1 | 1026 |