X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2FChangeLog;h=8388a998d48a4644ef59dc9950aa5885787cbfaf;hb=319f52d756238aca0ba7c671f529d336757806c5;hp=f6a844f612b4611c2f018a3cf6076eb5157e6c2c;hpb=40c07f3e04410064def98325815aaaf4908f0844;p=wget diff --git a/src/ChangeLog b/src/ChangeLog index f6a844f6..8388a998 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,119 @@ +2005-06-26 Hrvoje Niksic + + * ftp.c (getftp): Always invoke SIZE, not only when continuing a + download. + + * main.c (main): Ditto here. + + * progress.c (create_image): When the download is finished, print + how long it took. + +2005-06-26 Hrvoje Niksic + + * main.c (main): Print the downloaded and quota amounts with the + "human_readable" function. + + * ftp.c (print_length): Ditto. + + * http.c (gethttp): Don't display thousand separators. + + * utils.c (with_thousand_seps): Rewritten to respect locale + settings and to be type size agnostic. + +2005-06-25 Hrvoje Niksic + + * utils.c (human_readable): Divide with 1024 instead of shifting + so the operation can work with non-integer N. + +2005-06-25 Hrvoje Niksic + + * progress.c (eta_to_human): New logic for more human-readable + ETA. + +2005-06-25 Hrvoje Niksic + + * utils.c (with_thousand_seps_sum): Decrease buffer size so it + cannot overrun add_thousand_seps's buffer. + +2005-06-25 Hrvoje Niksic + + * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just + %I64. + +2005-06-25 Hrvoje Niksic + + * http.c (http_loop): Don't warn about wildcards in HTTP URLs if + globbing isn't requested in the first place. + + * retr.c (retrieve_url): Temporarily turn off globbing when + processing HTTP->FTP redirects. + +2005-06-25 Hrvoje Niksic + + * utils.c (with_thousand_seps_sum): Now defined only if + SUM_SIZE_INT is double. + + * wget.h (SUM_SIZE_INT): Instead of bothering with long, long + long, __int64, and friends, simply either use wgint or double, end + of story. Since we know how to print either, we no longer need + LARGE_INT_FMT. + + * sysdeps.h (LARGE_INT): Renamed to SUM_SIZE_INT to better reflect + its intent, and moved to wget.h. + +2005-06-25 Hrvoje Niksic + + * Makefile.in: No need to clean .libs. + +2005-06-25 Hrvoje Niksic + + * cookies.c (parse_set_cookies): Cast pointer subtraction to int + before using it with %d; AIX compiler warns on this. + Reported by Jens Schleusener. + +2005-06-24 Hrvoje Niksic + + * http.c (gethttp): Don't prepend / here. + + * cookies.c (cookie_handle_set_cookie): Prepend / to PATH. + (cookie_header): Ditto. + +2005-06-24 Hrvoje Niksic + + * init.c: opt.verbose must be declared as int. + +2005-06-23 Hrvoje Niksic + + * cmpt.c (strpbrk): Removed. + (mktime): Removed. + Include . + +2005-06-23 Hrvoje Niksic + + * utils.c (read_file): Ditto. + + * main.c (main): Use struct_fstat. + + * mswindows.h (struct_fstat): Define a struct_fstat to deal with + the fact that Borland 5.5 has 64-bit stat, but not 64-bit fstat! + +2005-06-23 Hrvoje Niksic + + * sysdep.h: Remove code that deals with Watcom. + +2005-06-22 Hrvoje Niksic + + * all: Use bool instead of int and false/true instead of 0/non-0 + for boolean variables and values. + +2005-06-22 Hrvoje Niksic + + * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf. + +2005-06-22 Hrvoje Niksic + + * init.c (cmd_lockable_boolean): Removed. + 2005-06-22 Hrvoje Niksic * cookies.c (struct cookie): Use 1-bit bitfields for booleans