Polish translation was updated.
[elinks.git] / NEWS
blobf0b1931d37c76f933036bd0ddd34a3f16a6f8117
1 Release info
2 ============
4 You can see the complete list of recent changes, bugfixes and new features
5 in the http://repo.or.cz/w/elinks.git[gitweb interface]. See the ChangeLog
6 file for details.
8 ELinks 0.13.GIT now:
9 --------------------
11 To be released as ELinks 0.13.0.
13 ELinks 0.12.GIT now:
14 --------------------
16 To be released as ELinks 0.12.0.
18 //////////////////////////////////////////////////////////////////////
19 This list now contains all the important changes from ELinks 0.11.0 to
20 ELinks 0.12.GIT (21052fafb0be0b87b7f376fb4edfa70304e365cc) and related
21 bug numbers.  Each section is sorted by severity and grouped by topic.
23 The list no doubt includes several changes that are not really
24 important enough.  Please move them to the separate "should be removed
25 from NEWS" list below, or coalesce several changes into one entry (but
26 do list all bug numbers).
27 //////////////////////////////////////////////////////////////////////
29 Notable new features:
31 * enhancement 822: UTF-8 as terminal charset, not merely UTF-8 I/O
32   of a unibyte codepage as in previous versions.  Double-cell (aka
33   fullwidth) and supplementary characters work too, but combining
34   characters and right-to-left text do not.  The only multibyte
35   charset ELinks can decode is still UTF-8, so if the server outputs
36   e.g. Shift-JIS, you'd better recode with a proxy.  See more notes
37   in features.conf.
38 * enhancement 844: SMB protocol using libsmbclient.  This replaces
39   the smbclient-based code that was disabled in ELinks 0.11.2.
41 Incompatibilities:
43 * ECMAScript support is now disabled by default.  It has known
44   bugs 548 and 771 with which malicious web pages can hang ELinks,
45   and its security goals are undocumented.  If you must enable
46   ECMAScript support, it would be prudent to restrict the ELinks
47   process with a sandbox of some kind.
48 * ECMAScript support no longer works with SpiderMonkey versions
49   earlier than JS1.5 RC3a.
50 * Gzip decompression support now requires zlib 1.2.0.2 or later.
51 * bugs 871, 752: The numbering of terminal.*.colors no longer depends
52   on config options.  This change makes elinks.conf portable between
53   different configurations but unfortunately not between this and
54   previous versions.
55 * Changed Python goto_url_hook(current) to goto_url_hook(new).  The
56   hook can call the new function elinks.current_url() if desired.
57   The Python scripting back-end is much more featureful than in
58   previous releases, but it is still considered experimental.
59 * Guile scripting reads hooks.scm rather than internal-hooks.scm.
60   (It still reads user-hooks.scm, too.)
62 Miscellaneous:
64 * critical bug 723: fix dangling pointer crash when following a link
65   in a frame
66 * critical bug 756: ``assertion (cached)->object.refcount >= 0 failed''
67   after HTTP proxy was changed
68 * critical bug 869: long mailcap entry buffer overflow (non-security)
69   when downloading
70 * tabs opened by -remote now go behind existing dialogs
71 * Debian bug 257762: turn terminal transparency off by default
72 * bug 724: better parsing of escape sequences and control
73   sequences from the terminal
74 * bug 948: fix wrong UTF-8 output after the charset menu was used
75 * gzip_read: always call gzclearerr
76 * bug 816: convert entity references in input/@value only once
77 * bug 916: if a mailcap entry has no %s, provide the file as stdin
78 * bug 744: don't change ``//'' to ``/'' in URIs
79 * bug 766: speed up CSS
80 * bug 355: add documents displayed via ``What to do'' dialog to the
81   global history
82 * encode and decode filenames in FSP URLs
83 * don't use a busy cache entry if it has expired or should be
84   reloaded.  See elinks-users mail from 28 Oct 2005.
85 * several accesskey fixes
86 * in Lua: don't write to the string returned by lua_tostring
87 * minor bug 972: preserve the background color and underlining in
88   spaces when justifying
89 * minor bug 284: render closing bracket for HTML element SUB in the
90   same line; don't let it fall to the next
91 * minor: show quote characters for HTML element Q, rather than italics
92 * trivial bug 387: treat &#013; inside <pre>...</pre> as a newline
93 * trivial bug 930: refresh status bar when key prefix is eaten
94 * trivial bug 776: ``elinks -remote http://elinks.cz/'' no longer clears
95   the screen
96 * enhancement 121: if a mailcap entry indicates 'copiousoutput', ELinks
97   itself acts as a pager
98 * enhancement 790: If-Modified-Since and If-None-Match
99 * enhancement: HTTP negotiate-auth using GSSAPI
100 * enhancement 517: fixed and enabled HTTP bzip2 decompression
101 * enhancement: LZMA decompression
102 * enhancement: FSP progress indicator and password prompt
103 * enhancement: autocreate directories needed to download a file
104 * enhancement: ``Add server'' button in the cookie manager
105 * enhancement 887: ``Save'' in the cookie manager now saves cookies
106   even if unmodified
107 * enhancement 145: internal clipboard support
108 * enhancement: new main actions move-cursor-line-start,
109   move-link-down-line, move-link-left-line, move-link-right-line,
110   move-link-up-line
111 * enhancement: new edit actions kill-word-back, move-backward-word,
112   move-forward-word
113 * enhancements 687, 688: options ui.tabs.top, ui.show_menu_bar_always
114 * enhancement: highlight links as one enters link prefixes
115 * enhancement: backspace backs out the last digit of the prefix
116 * enhancement: in text type-ahead searching, don't follow current link
117   on enter
118 * enhancement: add support for parsing space separated CSS class
119   attribute values
120 * enhancement: mouse wheel support over GPM (contrib/gpm-wheel.patch),
121   and on BSD via moused -z 4
122 * enhancement: 24-bit truecolor mode
123 * enhancement 622: -dump-color-mode
124 * enhancement: support Ctrl+Alt+letter key combinations
125 * enhancement 381: reduce memory consumption of codepages and some
126   other arrays
127 * enhancement in user SMJS: new properties/functions elinks.action,
128   elinks.execute, elinks.globhist, elinks.load_uri, elinks.vs
130 Build system and compile-time errors (ignore if you don't build ELinks):
132 * bug 725: fix version checking for Ruby in 'configure'
133 * enhancement: if make -k was used and a sub-Make fails, build the
134   rest before propagating
135 * enhancement: avoid compilation of vernum.c in 'make install'
136 * enhancement: make uninstall
137 * experimental enhancements: --with-python=DIRECTORY, --with-gc=DIRECTORY
138 * experimental enhancement: Win32 port (build with MinGW MSYS)
140 Changes in the experimental ECMAScript support:
142 * disabled by default, as mentioned under ``Incompatibilities'' above
143 * execute event-handler scripts as function bodies, so ``return''
144   statements work as intended
145 * fix error ``forms.namedItem is not a function''
146 * enhancement: SEE ECMAScript backend, an alternative to SpiderMonkey
147 * enhancement: handling onsubmit
148 * workaround: window.open remembers the last few URLs and doesn't
149   reopen them when incremental rendering reruns the onload script
150 * enhancement: better handling of form.action assignments
151 * enhancement: form[x] looks up controls also by 'id', not only 'name'
152 * enhancement: added document.location.href, input.selectedIndex,
153   window.setTimeout, window.status
155 Changes in the experimental SGML/DOM implementation:
157 * enhancement: minimalistic RSS renderer
158 * enhancement: source highlighting also recognizes
159   application/xhtml+xml and application/docbook+xml.  It doesn't yet
160   support arbitrary XML though.
161 * enhancement: make it possible to use more CSS properties with the
162   source highlighting
163 * enhancement: handle <base href=""> for HTML source rendering
164 * enhancement: add support for scanning comment endings such as
165   '--!>' correctly
166 * enhancement: incremental parsing
167 * and more.
169 //////////////////////////////////////////////////////////////////////
170 The following changes should be removed from NEWS before ELinks 0.12.0
171 is released.  They are currently listed here just to show that they
172 have already been considered.
174 * Not clear whether the bugs have been fixed:
175   - (bugfix 674) Reproduceable crashes while trying to unsubscribe
176     from a community on Orkut
177   - (bugfix 770) Download resuming simply restarts the download
178 * Only partially fixed bugs:
179   - (bugfix 764) int/long type punning in options
180   - (bugfix 890) Change colors 0-15 to match xterm defaults.
181     The bug report also requests asking xterm to report its palette,
182     but that part will be delayed to 0.13 or later.
183   - (bugfix 784) attributes corrupt character entity references if
184     terminal charset != document charset
185 * Fixed bugs that were not in previous versions:
186   - (bugfix) Fix a crash when adding a server in the cookie manager.
187   - (bugfix) cookies: "Add Server" ignores "cookies.accept_policy".
188   - (bugfix) Fix data: protocol.
189   - (bugfix 747) Properly deselect the main menu instead of crashing
190   - (bugfix 778) ELinks crashes on binary files when
191     document.plain.display_links is set
192   - (bugfix 782) UTF-8 buffer overwritten while in use
193   - (bugfix) switch_to_tab: Prevent "tab number out of range"
194     assertion failure.
195   - (bugfix) Fixed about:
196   - (bugfix 821) I cannot enter national characters in dialog boxes
197   - (bugfix 834) Gzip decompression doesn't work
198   - (bugfix) Fix out-of-bound access to the quote_char buffer
199   - (bugfix 827) Crash with term charset set to Unicode and UTF-8 I/O
200     disabled
201   - (bugfix 826) too small table for double-cell characters
202   - (bugfix 902) crash: "overflow detected realloc()" in realloc_line
203   - (bugfix 912) wrong color in one cell of an HTML input field
204   - (bugfix 835) Text in textarea is unaffected by horizontal
205     scrolling of document in UTF-8 mode
206   - (bugfix 823) Big textarea is too slow with CONFIG_UTF8
207   - (bugfix 754) Pressing ESC do not pop up main menu anymore.
208   - (bugfix 794) tab-close-all-but-current crashes
209   - (bugfix 781) document->buf can overflow with UTF-8 enabled
210   - (bugfix 882) C1 controls pass through to the terminal if written
211     as entity references
212   - (bugfix 935) Yes and No buttons override the bottom border of the
213     dialog.
214   - (bugfix in SEE) Use frame->name instead of target avoiding
215     possible segfault.
216   - (bugfix 957) crash within js_Interpret: cx->fp points to freed
217     memory
218   - (bugfix 920) assertion priority >= prev_priority failed: queue is
219     not sorted
220 * Already backported to a previous release but not listed there:
221   - (enhancement) Activate link only when onClick returns true.
222     Fixed bug 786 in ELinks 0.11.2.
223   - when the configure script cleans old object files, this no longer
224     causes it to loop.  Commit 564b67883b189a05839bcd2a30d8d4c6eb89c66d
225     in ELinks 0.11.1.
226   - don't include <sys/param.h> for MIN and MAX because it may interfere with
227     CONFIG_IPV6 on Linux.  Commit 63797ae9b331efd91be27512bd9d5b2e2ff74741
228     in ELinks 0.11.1.
229   - Debian bug 400872: include <sys/types.h> for off_t.
230     (Related to bug 936 but not the same.)
231     Commit 135a79a3c309af36cf963f1d3c34b07f296fa2f7 in ELinks 0.11.3.
232   - bug 107: recognize "localhost" in file: URIs.  Cannot reproduce in
233     earlier versions.
234   - fix compilation under gcc 4.x. Backported from gentoo portage.
235     Commit bcabd8b7951f3319199811088e607501296ee573 in ELinks 0.11.3.
236 * Reverted changes:
237   - (new feature) document.write, reverted in
238     2c087e52e74528a720621186b91880463e039d50
239   - (enhancement) restore Linux console mode (UTF-8 or not), reverted
240     in 10d72cae7eafa6b90db1c8f303deb200555734c2
241   - (enhancement) wcwidth, reverted in
242     d050cb67aa37390ab938b0a308c7541f19578506
243   - (new feature) Let plain text change colors with ESC [ 31 m or
244     similar control sequences, reverted in
245     2a6125e3d0407b588eb286d4d0ff5c98c23ebda9
246   - (enhancement) Support for pasting from GNU screen clipboard,
247     reverted in 763f03f146cc1391b303c8074556f0ddea1e3c7a
248 * Unimportant changes: 
249   - (enhancement) If select fails, save its errno.
250   - (bugfix) Use PF_* instead of AF_* as first parameter of socket(2).
251     (commits 8b7657deaf6037736d0abe88bae1865fec55fe93 in 0.12.GIT
252     and d9b56bad7d528a87376768572c2601c57d8afb02 in 0.11.0.GIT)
253   - (bugfix) Better error handling in save_form_data_to_file and
254     save_textarea_file.
255     (commit 6bdc34cfbcade0c25922c1ad96c753cc7d1c9949 and nearby)
256   - (bugfix) Do not call toupper with potentially out-of-range values.
257     (commit 9e30ee631ced843f26a264c351cfa1716e7e1941)
258   - (bugfix) If ELinks logs debug information to a file, it now opens
259     that in binary mode.  (commit 4ced25779dca68c0e15ce1e695ce191b536bb05d)
260   - (bugfix) Kill the ESC timer when blocking the terminal.
261     (commit 539f756438fca4264ab937b2ccfba2351e916a16)
262   - (bugfix) Don't claim that the authentication is for HTTP.
263     (commit ef2f6383c6f0bed576e6f69030eacc4931b42a27)
264   - (enhancement) Reject invalid UTF-8 input from documents and
265     terminals
266   - (bugfix) Decode UTF-8 only from bytes, not from codes of special
267     keys.
268   - (enhancement) "Resize terminal" tries to use the window size
269     increment.
270   - (bugfix) Subprocess forked for SIGTSTP calls _exit, not exit.
271   - (enhancement) Tell the user how to move bookmarks.
272   - (enhancement) Localization updates.  For this to be important, we
273     should at least list the languages.
274   - (enhancement) Ctrl+characters don't trigger hotkeys in menus and
275     dialogs.
276   - (bitrot) Fix two warnings on Mac OS X.
277   * don't use cmp -b, which FreeBSD doesn't support.  This is commit
278     7a5f699a88c5fc89c510854b04702c16c30ece5a in src/dom/test/ which
279     is run only by "make test" rather than "make".
280   * support much longer locale-specific timestamps when formatting a
281     directory listing.  LC_TIME=fi_FI.UTF-8 now works.  Let's treat
282     this as part of the UTF-8 support.
283   * enhancement in user SMJS: elinks.alert no longer displays as an
284     "error"
285 //////////////////////////////////////////////////////////////////////
287 ELinks 0.11.3.GIT now:
288 ----------------------
290 To be released as 0.11.4.
292 * critical bug 755: fix crashes due to dangling pointers to struct
293   form_state
294 * critical bugs 613, 714, 961: ``assertion list_empty(form_controls)
295   failed''
296 * critical bug 945: don't crash if a Lua script calls e.g. error(nil)
297 * major bug 956: don't reuse pointers to SpiderMonkey objects that may
298   have been collected as garbage.  This fix causes bug 954.
299 * CVE-2007-2027: check if the program path contains "src/" before
300   using ../po files
301 * important Debian bug 380347: prevent a buffer overflow in entity_cache
302   and a possible subsequent crash
303 * major bug 788: don't read STRLEN n_a, which isn't initialized by
304   POPpx of Perl v5.8.8 and later
305 * fix query parsing in file: URIs for local CGI (was broken in 0.11.3)
306 * bug 691: don't look up bogus IPv4 addresses based on characters of a
307   hostname
308 * bug 712: GnuTLS works on https://www-s.uiuc.edu/[]
309 * fix passive FTP over IPv6 when connect() fails with EINPROGRESS
310 * minor bug 951 in user SMJS: garbage-collect SMJS objects on 'File ->
311   Flush all caches' to work around their holding cache entries busy
312 * minor bug 396: never show empty filename in the what-to-do dialog
313 * minor bug 461: ensure contrast in blank areas, to keep the cursor visible
314 * minor bug 928: properly display no-break spaces in a UTF-8 document
315   if the terminal uses some other charset
316 * trivial bug 947: document.html.wrap_nbsp also affects text in tables
317 * build bug 950: fix ``config/install-sh: No such file or directory''
318   on SunOS
319 * build bug 936: fix errors about undefined off_t (autoheader
320   incompatibility)
321 * build bug 959: test in configure whether -lX11 works
322 * build: update SpiderMonkey configure check Debian compatibility
323 * build: use $(CPPFLAGS) rather than $(AM_CFLAGS)
324 * build: disable GCC 4.2 warning about builtin_modules
325 * minor build bug 960: fix errors in loadmsgcat.c if mmap() exists but
326   munmap() doesn't
327 * bug 978: Python's webbrowser.open_new_tab(URL) works since now
329 //////////////////////////////////////////////////////////////////////
330 The following changes should be removed from NEWS before ELinks 0.11.4
331 is released.  They are currently listed here just to show that they
332 have already been considered.
334 * Fixed bugs that were not in previous versions:
335   - bug 975: fix int/size_t pointer type mismatch in Perl interface
336 //////////////////////////////////////////////////////////////////////
338 ELinks 0.11.3:
339 --------------
341 Released on 2007-04-15.
343 * critical bugs 846, 870: fix crashes in web ECMAScripts and SMJS user
344   scripting
345 * critical bug 927: fix null pointer crash if META Refresh is in a
346   table cell
347 * critical bug 941: fix assertion failure or memory corruption if FTP
348   server responds to PASV with status 200
349 * critical bug 729 in experimental BitTorrent: fix crashes with
350   various bogus BitTorrent URLs
351 * critical bug 868: fix segfault in check_timers
352 * critical bugs 897, 919: fix crashes on operating systems lacking
353   mremap()
354 * critical: fix null pointer crash if XBEL bookmark has no title
355 * critical bug 760: fix crash when moving bookmarks out of a folder
356 * critical: fix crash in an empty file-extensions menu
357 * critical bug 715: fix null pointer crash caused by malformed proxy
358   setting
359 * critical: fix SMJS null pointer crash on exit
360 * critical bug 880 in experimental Python scripting: fix null pointer
361   crash with -no-home
362 * major Gentoo bug 121247: fix segfaults in Ruby user scripting
363 * major bug 908: don't write to freed memory when the user pushes a
364   radio button
365 * major bug 937, CVE-2007-5034: don't send the entire HTTPS request to
366   a CONNECT proxy
367 * bug 899, Debian bug 403139: recognize >2GB files in FTP directory
368   listing, if off_t is large enough
369 * bug 942: encode/decode file names in FTP URLs, so they can contain
370   spaces
371 * bug 741: don't recognize HTML comments inside STYLE elements
372 * bug 769: fix MD5 computation/formatting in HTTP digest
373   authentication
374 * fix POST to local CGI
375 * remove a garbage character from the end of the authentication prompt
376 * bugs 872, 886: editing or deleting cookies in the cookie manager
377   should cause a save
378 * secure file saving: restore umask after *all* failure conditions
379 * decode the fragment identifier extracted from the URI when looking
380   it up
381 * bug 768 in experimental Python scripting: link with e.g. -lpython2.4
382   rather than -lpython
383 * minor bugs 830, 831: changes in parsing of -remote arguments
384 * minor Debian bug 313696 and other translation updates
385 * enhancement 24: fix searching past unselectable elements in menus
386 * enhancement: recognize function keys and backspace/delete on FreeBSD
387 * enhancement 772: recognize Shift-Tab on XTerm
388 * enhancement: place cursor on listbox rather than button, to help
389   screen readers
390 * enhancements in text wrapping
391 * enhancement 767: recognize URL in META Refresh even without "URL="
392 * enhancement 396: search for "<html>" if the server doesn't specify a
393   Content-Type
395 ELinks 0.11.2:
396 --------------
398 Released on 2006-11-19.
400 * critical bug 841, CVE-2006-5925: prevent enabling the SMB protocol
401 * critical bug 786: fix crash when following a link in frames
402 * print off_t with custom OFF_T_FORMAT instead of PRId64
403 * build: Minix3 compatibility
405 ELinks 0.11.1:
406 --------------
408 Released on 2006-01-29.
410 * work around null pointer crashes in HTTP digest authentication
411 * fix assertion failure with document.plain.display_links and
412   uppercase URIs
413 * fix Gopher crashes
414 * enhancement 630: native FSP protocol support (replaces CGI program
415   in contrib/cgi/)
416 * SMJS user scripting: check for hooks.js before trying to load it
417 * SMJS user scripting: the elinks.preformat_html hook gets a second
418   argument: a view_state object with .uri and .plain properties
419 * bug 921 in Lua scripting: fix current_document_formatted
420 * if given "a?b" in the command line, try to guess whether the
421   question mark is part of the file name or indicates a query part
422 * updated character entity list from unicode.org
423 * build: use asciidoc -unsafe for AsciiDoc 7.0.4 compatibility
424 * build bug 738: fix "/config.charset" error triggered by building in
425   the source directory
427 ELinks 0.11.0 (Elated):
428 -----------------------
430 Released on 2006-01-01.
432 * SSL support via GNUTLS now requires 1.2 or higher
433 * support for Lua 4.x was dropped, we only support Lua 5.x now
434 * Python scripting back-end (experimental)
435 * Spidermonkey based ECMAScript scripting back-end (experimental)
436 * 88 colors support
437 * default URI-rewrite rule, used when no other rules match but the string that
438   was entered in the Go to URL box does not resemble a URI
439 * support prefixes for add-bookmark-link, document-info, goto-url-current-link,
440   history-move-back, and history-move-forward
441 * BitTorrent protocol (experimental)
442 * FSP protocol via a CGI script (see contrib/cgi/README.FSP) (experimental)
443 * enhancement 694: sysmouse support on the BSD console
444 * new GNU make based build system (aclocal from automake is still required)
445 * move from CVS to GIT
447 ELinks 0.10.6:
448 --------------
450 Released on 2005-09-15.
452 * external editor is configurable at run-time
454 ELinks 0.10.4:
455 --------------
457 Released on 2005-04-06.
459 * explicit keyboard accelerators were defined for buttons in dialogue boxes and
460   are now highlighted
462 ELinks 0.10.2:
463 --------------
465 Released on 2005-01-30.
467 * Ruby scripting back-end (experimental)
468 * Debian package files (apt-get install devscripts && debuild -uc -us)
470 ELinks 0.10.0 (Thelma):
471 -----------------------
473 Released on 2004-12-24.
475 * licensed under GPLv2 only
476 * simple CSS
477 * simple JavaScript/ECMAScript support by the SpiderMonkey Mozilla JS engine
478 * plain-text mark-up (_^Hx to underline, x^Hx to embolden)
479 * HTML source high-lighting using DOM implementation
480 * multiple URIs on the command line
481 * tabs moving (press Alt-'>' or Alt-'<')
482 * periodic snapshotting of all tabs in all terminals
483 * exmode CLI support (press ':' followed by action and args) (experimental)
484 * cursor routing (aka w3m-style navigation)
485 * modal text-input form-fields editing (enabled by default)
486 * manual cookies creating and editing
487 * incremental searching (press '#/')
488 * Perl scripting back-end (experimental)
489 * build-time configurability and feature documentation through features.conf
490 * Mozilla-compatible -remote option (http://www.mozilla.org/unix/remote.html[])
491 * support for specifying IP family as protocol postfix (e.g. http4 or ftp6)
492 * internationalized domain names via libidn (RFC 3490)
493 * data URI protocol (RFC 2397)
494 * gopher protocol (RFC 1436)
495 * NNTP protocol (RFC 977 and RFC 2980) (experimental)
496 * build system fine-tuned to use automake conditionals
497 * -localhost option to block connections to remote hosts
498 * -verbose option to control messages printed at startup
499 * -default-keys command line option to ignore user-defined keybindings
500 * -confdir option renamed to -config-dir
501 * -conffile option renamed to -config-file
502 * enhanced documentation
504 ELinks 0.9.2:
505 -------------
507 Released on 2004-09-24.
509 * directional links navigation
510 * 'unset' configuration directive, which can be used, e.g., to delete default
511   MIME type settings or external protocol handlers.
513 ELinks 0.9.1:
514 -------------
516 Released on 2004-01-23.
518 * support <object> tags by displaying a link to the data
519 * add beginning-of-buffer and end-of-buffer actions for text fields
520 * automatic session saving/restoring support (disabled by default)
521 * add-bookmark-tabs (bookmark all tabs) option and menu item
522 * fold successive blank lines when displaying a plain-text document
523   (disabled by default; use the option document.plain.compress_empty_lines)
524 * 'fresh' color for any tab that has not been selected
525   since its document was loaded
527 ELinks 0.9.0 (Skyrider):
528 ------------------------
530 Released on 2003-12-24.
532 * used gettext for internationalization
533 * support for background document colors
534 * tabs support
535 * new MIME subsystem adding mimetypes files support
536 * local CGI support
537 * Guile scripting extensions
538 * HTML meta refresh
539 * forms history
540 * 256 colors support
541 * regex searches
542 * cookies manager, cache manager and download manager
543 * document marks support
544 * displaying URIs in plain documents as links
545 * SMB protocol support (requires smbclient)
546 * builtin user prefixes support (enter 'gg' or 'gg:elinks' to the goto dialog)
547 * HTTPS proxy support
548 * typeahead link searching (press '#')
550 ELinks 0.4.0 (Iceberg):
551 -----------------------
553 Released on 2002-12-24.
555 * merged HTTP_AUTH
556 * basic proxy auth support
557 * cookies parser rewritten
558 * support for tabindex,accesskey,title attribute
559 * FTP support dramatically improved: bugfixes, interoperability fixes, passive
560   mode support, ...
561 * global history support (+vlink support)
562 * make some modules (cookies,bookmarks,globhist,..) optional at compile time
563 * secure saving support (see secure_save option desc. if you're doing weird
564   things with your links files like symlinking or nonstandart permissions!!!)
565 * support for utf8 i/o
566 * mouse wheel support
567 * portability enhancements
568 * performance enhancements
569 * file/http gzip/bzip2 decompression support
570 * downloads resuming support
571 * mailcap support
572 * hierarchic bookmarks support, XBEL bookmarks support
573 * source layout was dramatically reorganized
574 * relocated ELinks configuration files, changed format (if you are upgrading
575   from Links or older ELinks version, read INSTALL file to see how to convert
576   your old config files!!!)
577 * options are now in tree hierarchy and are configurable generically
578 * keybindings can be configured from the user interface
579 * colorful user interface
580 * tiny useless LED-like indicators support
581 * GNUTLS support parallel to the OpenSSL support (fixes some license issues)
582 * extensive memory debugging support
584 ELinks 0.3.0:
585 -------------
587 Released on 2002-03-02.
589 * unhistory
590 * external textarea editor
591 * DNS rewrite - we handle multi RR per host correctly
592 * IPv6 support
593 * rewritten options handling
594 * bookmarks filtering (aka bookmarks search)
595 * bookmarks resaving (save on the disk after every change)
596 * added possibility to change default colors settings
598 Links 0.96-pb3:
599 ---------------
601 Released on 2001-10-26.
603 * secured cookies file creation
604 * support for title attribute of img tag
605 * Catalan translation
606 * Romanian translation
607 * changing of User-Agent string sent to webserver
608 * <listing> tag support
610 Links 0.96-pb2:
611 ---------------
613 Released on 2001-10-06.
615 * cookies expiration, saving and resaving
616 * do NOT strip everything after ? in form action
617 * http referrer, true http referrer
618 * limited textarea external editor support
619 * partial fix of &#13;
620 * enhanced manual page
621 * fixed multi-level HTTP moved when using -dump/-source
622 * fixed keybindings