]> sjero.net Git - wget/blobdiff - src/ChangeLog
[svn] When the download is finished, print the time the download took.
[wget] / src / ChangeLog
index 995a9a467c6de7cffde72aec85e9b73c813807d7..8388a998d48a4644ef59dc9950aa5885787cbfaf 100644 (file)
@@ -1,3 +1,125 @@
+2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * utils.c (human_readable): Divide with 1024 instead of shifting
+       so the operation can work with non-integer N.
+
+2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * progress.c (eta_to_human): New logic for more human-readable
+       ETA.
+
+2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * utils.c (with_thousand_seps_sum): Decrease buffer size so it
+       cannot overrun add_thousand_seps's buffer.
+
+2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
+       %I64.
+
+2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * Makefile.in: No need to clean .libs.
+
+2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * http.c (gethttp): Don't prepend / here.
+
+       * cookies.c (cookie_handle_set_cookie): Prepend / to PATH.
+       (cookie_header): Ditto.
+
+2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * init.c: opt.verbose must be declared as int.
+
+2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * cmpt.c (strpbrk): Removed.
+       (mktime): Removed.
+       Include <time.h>.
+
+2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * 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  <hniksic@xemacs.org>
+
+       * sysdep.h: Remove code that deals with Watcom.
+
+2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * all: Use bool instead of int and false/true instead of 0/non-0
+       for boolean variables and values.
+
+2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf.
+
+2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * init.c (cmd_lockable_boolean): Removed.
+
+2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * cookies.c (struct cookie): Use 1-bit bitfields for booleans
+       which makes the structure takes less space at no cost in
+       complexity.
+
 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * Makefile.in ($(OBJ)): Add the config.h dependency.