]> sjero.net Git - wget/blob - NEWS
[svn] Mention progress bar improvement.
[wget] / NEWS
1 GNU Wget NEWS -- history of user-visible changes.
2
3 Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 See the end for copying conditions.
5
6 Please send GNU Wget bug reports to <bug-wget@gnu.org>.
7 \f
8 * Changes in Wget 1.9+.
9
10 ** IPv6 is now supported by Wget.  Unlike the experimental code in
11 1.9, this version has no problems with dual-family systems.  The new
12 flags `--inet4' and `--inet6' (or `-4' and `-6' for short) force the
13 use of IPv4 and IPv6 respectively.
14
15 ** The progress bar is now updated regularly even when the data does
16 not arrive.
17
18 ** Wget no longer preserves permissions of files retrieved by FTP by
19 default.  Anonymous FTP servers frequently use permissions like "664",
20 which might not be what the user wants.  The new option
21 `--preserve-permissions' and the corresponding `.wgetrc' variable can
22 be used to revert to the old behavior.
23
24 ** Many options that previously unconditionally set or unset various
25 flags are now boolean options that can be invoked as either `--OPTION'
26 or `--no-OPTION'.  Options that required an argument "on" or "off"
27 have also been changed this way, but they still accept the old syntax
28 for backward compatibility.  For example, instead of `--glob=off' you
29 can write `--no-glob'.
30
31 Allowing `--no-OPTION' for every `--OPTION' is useful because it
32 allows the user to override non-default behavior specified via
33 `.wgetrc'.
34
35 ** The new option `--keep-session-cookies' causes `--save-cookies' to
36 save session cookies along with the permanent ones.  This is useful on
37 sites that require you to log in before you can access some pages.
38 With this option, multiple Wget runs will be treated as a single
39 browser session.
40 \f
41 * Changes in Wget 1.9.
42
43 ** It is now possible to specify that POST method be used for HTTP
44 requests.  For example, `wget --post-data="id=foo&data=bar" URL' will
45 send a POST request with the specified contents.
46
47 ** IPv6 support is available, although it's still experimental.
48
49 ** The `--timeout' option now also affects DNS lookup and establishing
50 the TCP connection.  Previously it only affected reading and writing
51 data.  Those three timeouts can be set separately using
52 `--dns-timeout', `--connection-timeout', and `--read-timeout',
53 respectively.
54
55 ** Download speed shown by the progress bar is based on the data
56 recently read, rather than the average speed of the entire download.
57 The ETA projection is still based on the overall average.
58
59 ** It is now possible to connect to FTP servers through FWTK
60 firewalls.  Set ftp_proxy to an FTP URL, and Wget will automatically
61 log on to the proxy as "username@host".
62
63 ** The new option `--retry-connrefused' makes Wget retry downloads
64 even in the face of refused connections, which are otherwise
65 considered a fatal error.
66
67 ** The new option `--dns-cache=off' may be used to prevent Wget from
68 caching DNS lookups.
69
70 ** Wget no longer escapes characters in local file names based on
71 whether they're appropriate in URLs.  Escaping can still occur for
72 nonprintable characters or for '/', but no longer for frequent
73 characters such as space.  You can use the new option
74 --restrict-file-names to relax or strengthen these rules, which can be
75 useful if you dislike the default or if you're downloading to
76 non-native partitions.
77
78 ** Handling of HTML comments has been dumbed down to conform to what
79 users expect and other browsers do: instead of being treated as SGML
80 declaration, a comment is terminated at the first occurrence of "-->".
81 Use `--strict-comments' to revert to the old behavior.
82
83 ** Wget now correctly handles relative URIs that begin with "//", such
84 as "//img.foo.com/foo.jpg".
85
86 ** Boolean options in `.wgetrc' and on the command line now accept
87 values "yes" and "no" along with the traditional "on" and "off".
88
89 ** It is now possible to specify decimal values for timeouts, waiting
90 periods, and download rate.  For instance, `--wait=0.5' now works as
91 expected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.
92 \f
93 * Wget 1.8.2 is a bugfix release with no user-visible changes.
94 \f
95 * Wget 1.8.1 is a bugfix release with no user-visible changes.
96 \f
97 * Changes in Wget 1.8.
98
99 ** A new progress indicator is now available and used by default.
100 You can choose the progress bar type with `--progress=TYPE'.  Two
101 types are available, "bar" (the new default), and "dot" (the old
102 dotted indicator).  You can permanently revert to the old progress
103 indicator by putting `progress = dot' in your `.wgetrc'.
104
105 ** You can limit the download rate of the retrieval using the
106 `--limit-rate' option.  For example, `wget --limit-rate=15k URL' will
107 tell Wget not to download the body of the URL faster than 15 kilobytes
108 per second.
109
110 ** Recursive retrieval and link conversion have been revamped:
111
112 *** Wget now traverses links breadth-first.  This makes the
113 calculation of depth much more reliable than before.  Also, recursive
114 downloads are faster and consume *significantly* less memory than
115 before.
116
117 *** Links are converted only when the entire retrieval is complete.
118 This is the only safe thing to do, as only then is it known what URLs
119 have been downloaded.
120
121 *** BASE tags are handled correctly when converting links.  Since Wget
122 already resolves <base href="..."> when resolving handling URLs, link
123 conversion now makes the BASE tags point to an empty string.
124
125 *** HTML anchors are now handled correctly.  Links to an anchor in the
126 same document (<a href="#anchorname">), which used to confuse Wget,
127 are now converted correctly.
128
129 *** When in page-requisites (-p) mode, no-parent (-np) is ignored when
130 retrieving for inline images, stylesheets, and other documents needed
131 to display the page.
132
133 *** Page-requisites (-p) mode now works with frames.  In other words,
134 `wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,
135 and all the files that they need to be displayed properly.
136
137 ** `--base' now works conjunction with `--input-file', providing a
138 base for each URL and thereby allowing the URLs in the file to be
139 relative.
140
141 ** If a host has more than one IP address, Wget uses the other
142 addresses when accessing the first one fails.
143
144 ** Host directories now contain port information if the URL is at a
145 non-standard port.
146
147 ** Wget now supports the robots.txt directives specified in
148 <http://www.robotstxt.org/wc/norobots-rfc.txt>.
149
150 ** URL parser has been fixed, especially the infamous overzealous
151 quoting.  Wget no longer dequotes reserved characters, e.g. `%3F' is
152 no longer translated to `?', nor `%2B' to `+'.  Unsafe characters
153 which are not reserved are still escaped, of course.
154
155 ** No more than 20 successive redirections are allowed.
156 \f
157 * Wget 1.7.1 is a bugfix release with no user-visible changes.
158 \f
159 * Changes in Wget 1.7.
160
161 ** SSL (`https') pages now work if you compile Wget with SSL support;
162 use the `--with-ssl' configure flag.  You need to have OpenSSL
163 installed.
164
165 ** Cookies are now supported.  Wget will accept cookies sent by the
166 server and return them in later requests.  Additionally, it can load
167 and save cookies to disk, in the same format that Netscape uses.
168
169 ** "Keep-alive" (persistent) HTTP connections are now supported.
170 Using keep-alive allows Wget to share one TCP/IP connection for
171 many retrievals, making multiple-file downloads faster and less
172 stressing for the server and the network.
173
174 ** Wget now recognizes FTP directory listings generated by NT and VMS
175 servers.
176
177 ** It is now possible to recurse through FTP sites where logging in
178 puts you in some directory other than '/'.
179
180 ** You may now use `~' to mean home directory in `.wgetrc'.  For
181 example, `load_cookies = ~/.netscape/cookies.txt' works as you would
182 expect.
183
184 ** The HTML parser has been rewritten.  The new one works more
185 reliably, allows finer-grained control over which tags and attributes
186 are detected, and has better support for some features like correctly
187 skipping comments and declarations, decoding entities, etc.  It is
188 also more general.
189
190 ** <meta name="robots"> tags are now respected.
191
192 ** Wget's internal tables now use hash tables instead of linked lists
193 where appropriate.  This results in huge speedups when retrieving
194 large sites (thousands of documents).
195
196 ** Wget now has a man page, automatically generated from the Texinfo
197 documentation.  (The last version that shipped with a man page was
198 1.4.5).  To get this, you need to have pod2man from the Perl
199 distribution installed on your system.
200 \f
201 * Changes in Wget 1.6
202
203 ** Administrative changes.
204
205 *** Maintainership.  Due to Hrvoje being plagued with a "real job",
206 Dan Harkless is the most active maintainer (not that he doesn't have a
207 real job as well).  Hrvoje still participates occasionally, and both
208 are being helped by many other people.
209
210 *** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.
211 Take a look at:
212
213     http://sunsite.dk/wget/
214
215 *** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wget
216 sources are now available at an anonymous CVS server.  Take a look at
217 the web page for downloading instructions.
218
219 ** New -K / --backup-converted / backup_converted = on option causes files
220 modified due to -k to be saved with a .orig prefix before being changed.  When
221 using -N as well, it is these .orig files that are compared against the server.
222
223 ** New --follow-tags / follow_tags = ... option allows you to restrict
224 Wget to following only certain HTML tags when doing a recursive
225 retrieval.  -G / --ignore-tags / ignore_tags = ... is just the
226 opposite -- all tags but the ones you specify will be followed.
227
228 ** New --waitretry / waitretry = SECONDS option allows waiting between retries
229 of failed downloads.  Wget will use "linear" backoff, waiting 1 second after the
230 first failure, 2 after the second, up to SECONDS.  waitretry is set to 10 by
231 default in the system wgetrc.
232
233 ** New -p / --page-requisites / page_requisites = on option causes
234 Wget to download all ancillary files necessary to display a given HTML
235 page properly (e.g. inlined images).
236
237 ** New -E / --html-extension / html_extension = on option causes Wget
238 to append ".html" to text/html filenames not ending in regexp
239 "\.[Hh][Tt][Mm][Ll]?".
240
241 ** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,
242 always, or never.  This allows the .wgetrc to override the commandline.  So far,
243 passive_ftp is the only .wgetrc command which takes a lockable Boolean.
244
245 ** A number of new translation files have been added.
246
247 ** New --bind-address / bind_address = <address> option for people on hosts 
248 bound to multiple IP addresses.
249
250 ** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.
251 \f
252 * Wget 1.5.3 is a bugfix release with no user-visible changes.
253 \f
254 * Wget 1.5.2 is a bugfix release with no user-visible changes.
255 \f
256 * Wget 1.5.1 is a bugfix release with no user-visible changes.
257 \f
258 * Changes in Wget 1.5.0
259
260 ** Wget speaks many languages!
261
262 On systems with gettext(), Wget will output messages in the language
263 set by the current locale, if available.  At this time we support
264 Czech, German, Croatian, Italian, Norwegian and Portuguese.
265
266 ** Opie (Skey) is now supported with FTP.
267
268 ** HTTP Digest Access Authentication (RFC2069) is now supported.
269
270 ** The new `-b' option makes Wget go to background automatically.
271
272 ** The `-I' and `-X' options now accept wildcard arguments.
273
274 ** The `-w' option now accepts suffixes `s' for seconds, `m' for
275 minutes, `h' for hours, `d' for days and `w' for weeks.
276
277 ** Upon getting SIGHUP, the whole previous log is now copied to
278 `wget-log'.
279
280 ** Wget now understands proxy settings with explicit usernames and
281 passwords, e.g. `http://user:password@proxy.foo.com/'.
282
283 ** You can use the new `--cut-dirs' option to make Wget create less
284 directories.
285
286 ** The `;type=a' appendix to FTP URLs is now recognized.  For
287 instance, the following command will retrieve the welcoming message in
288 ASCII type transfer:
289
290     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
291
292 ** `--help' and `--version' options have been redone to to conform to
293 standards set by other GNU utilities.
294
295 ** Wget should now be compilable under MS Windows environment.  MS
296 Visual C++ and Watcom C have been used successfully.
297
298 ** If the file length is known, percentages are displayed during
299 download.
300
301 ** The manual page, now hopelessly out of date, is no longer
302 distributed with Wget.
303 \f
304 * Wget 1.4.5 is a bugfix release with no user-visible changes.
305 \f
306 * Wget 1.4.4 is a bugfix release with no user-visible changes.
307 \f
308 * Changes in Wget 1.4.3
309
310 ** Wget is now a GNU utility.
311
312 ** Can do passive FTP.
313
314 ** Reads .netrc.
315
316 ** Info documentation expanded.
317
318 ** Compiles on pre-ANSI compilers.
319
320 ** Global wgetrc now goes to /usr/local/etc (i.e. $sysconfdir).
321
322 ** Lots of bugfixes.
323 \f
324 * Changes in Wget 1.4.2
325
326 ** New mirror site at ftp://sunsite.auc.dk/pub/infosystems/wget/,
327 thanks to Karsten Thygesen.
328
329 ** Mailing list!  Mail to wget-request@sunsite.auc.dk to subscribe.
330
331 ** New option --delete-after for proxy prefetching.
332
333 ** New option --retr-symlinks to retrieve symbolic links like plain
334 files.
335
336 ** rmold.pl -- script to remove files deleted on the remote server
337
338 ** --convert-links should work now.
339
340 ** Minor bugfixes.
341 \f
342 * Changes in Wget 1.4.1
343
344 ** Minor bugfixes.
345
346 ** Added -I (the opposite of -X).
347
348 ** Dot tracing is now customizable; try wget --dot-style=binary
349 \f
350 * Changes in Wget 1.4.0
351
352 ** Wget 1.4.0 [formerly known as Geturl] is an extensive rewrite of
353 Geturl.  Although many things look suspiciously similar, most of the
354 stuff was rewritten, like recursive retrieval, HTTP, FTP and mostly
355 everything else.  Wget should be now easier to debug, maintain and,
356 most importantly, use.
357
358 ** Recursive HTTP should now work without glitches, even with Location
359 changes, server-generated directory listings and other naughty stuff.
360
361 ** HTTP regetting is supported on servers that support Range
362 specification. WWW authorization is supported -- try
363 wget http://user:password@hostname/
364
365 ** FTP support was rewritten and widely enhanced. Globbing should now
366 work flawlessly. Symbolic links are created locally. All the
367 information the Unix-style ls listing can give is now recognized.
368
369 ** Recursive FTP is supported, e.g.
370     wget -r ftp://gnjilux.cc.fer.hr/pub/unix/util/
371
372 ** You can specify "rejected" directories, to which you do not want to
373 enter, e.g. with wget -X /pub
374
375 ** Time-stamping is supported, with both HTTP and FTP. Try wget -N URL.
376
377 ** A new texinfo reference manual is provided.  It can be read with
378 Emacs, standalone info, or converted to HTML, dvi or postscript.
379
380 ** Fixed a long-standing bug, so that Wget now works over SLIP
381 connections.
382
383 ** You can have a system-wide wgetrc (/usr/local/lib/wgetrc by
384 default). Settings in $HOME/.wgetrc override the global ones, of
385 course :-)
386
387 ** You can set up quota in .wgetrc to prevent sucking too much
388 data. Try `quota = 5M' in .wgetrc (or quota = 100K if you want your
389 sysadmin to like you).
390
391 ** Download rate is printed after retrieval.
392
393 ** Wget now sends the `Referer' header when retrieving
394 recursively.
395
396 ** With the new --no-parent option Wget can retrieve FTP recursively
397 through a proxy server.
398
399 ** HTML parser, as well as the whole of Wget was rewritten to be much
400 faster and less memory-consuming (yes, both).
401
402 ** Absolute links can be converted to relative links locally. Check
403 wget -k.
404
405 ** Wget catches hangup, filtering the output to a log file and
406 resuming work. Try kill -HUP %?wget.
407
408 ** User-defined headers can be sent.  Try
409
410     wget http://fly.cc.her.hr/ --header='Accept-Charset: iso-8859-2'
411
412 ** Acceptance/Rejection lists may contain wildcards.
413
414 ** Wget can display HTTP headers and/or FTP server response with the
415 new `-S' option.  It can save the original HTTP headers with `-s'.
416
417 ** socks library is now supported (thanks to Antonio Rosella
418 <Antonio.Rosella@agip.it>). Configure with --with-socks.
419
420 ** There is a nicer display of REST-ed output.
421
422 ** Many new options (like -x to force directory hierarchy, or -m to
423 turn on mirroring options).
424
425 ** Wget is now distributed under GNU General Public License (GPL).
426
427 ** Lots of small features I can't remember. :-)
428
429 ** A host of bugfixes.
430 \f
431 * Changes in Geturl 1.3
432
433 ** Added FTP globbing support (ftp://fly.cc.fer.hr/*)
434
435 ** Added support for no_proxy
436
437 ** Added support for ftp://user:password@host/
438
439 ** Added support for %xx in URL syntax
440
441 ** More natural command-line options
442
443 ** Added -e switch to execute .geturlrc commands from the command-line
444
445 ** Added support for robots.txt
446
447 ** Fixed some minor bugs
448 \f
449 * Geturl 1.2 is a bugfix release with no user-visible changes.
450 \f
451 * Changes in Geturl 1.1
452
453 ** REST supported in FTP
454
455 ** Proxy servers supported
456
457 ** GNU getopt used, which enables command-line arguments to be ordered
458 as you wish, e.g.  geturl http://fly.cc.fer.hr/ -vo log is the same as
459 geturl -vo log http://fly.cc.fer.hr/
460
461 ** Netscape-compatible URL syntax for HTTP supported: host[:port]/dir/file
462
463 ** NcFTP-compatible colon URL syntax for FTP supported: host:/dir/file
464
465 ** <base href="xxx"> supported
466
467 ** autoconf supported
468 \f
469 ----------------------------------------------------------------------
470 Copyright information:
471
472 Copyright (C) 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc.
473
474    Permission is granted to anyone to make or distribute verbatim
475    copies of this document as received, in any medium, provided that
476    the copyright notice and this permission notice are preserved, thus
477    giving the recipient permission to redistribute in turn.
478
479    Permission is granted to distribute modified versions of this
480    document, or of portions of it, under the above conditions,
481    provided also that they carry prominent notices stating who last
482    changed them.