about summary refs log tree commit diff stats
path: root/CHANGES
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>1999-11-18 04:13:09 -0500
committerThomas E. Dickey <dickey@invisible-island.net>1999-11-18 04:13:09 -0500
commit45f1aadc261561566cd074da1d9b0fb21a6ad78c (patch)
treeb1d2c414300b50815acb7b986077556e5dda712d /CHANGES
parent0f88481e93b50612489cc8e5b1ca365196439373 (diff)
downloadlynx-snapshots-45f1aadc261561566cd074da1d9b0fb21a6ad78c.tar.gz
snapshot of project "lynx", label v2-8-3dev_15
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES72
1 files changed, 64 insertions, 8 deletions
diff --git a/CHANGES b/CHANGES
index e5a70f1a..031e156c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,62 @@
 Changes since Lynx 2.8 release
 ===============================================================================
 
+1999-11-17 (2.8.3dev.15)
+* add popup in options menu to control alternate organizations of the
+  visited links page (Ilya Zakharevich)
+* reformatted src/makefile.dos and src/makefile.dsl to make them simpler to
+  modify -TD
+* add -DOK_OVERRIDE to DIRED_DEFS for djgpp -LP
+* change the samples in "URL Schemes Supported in Lynx" so they would appear
+  without //user:passw@ but //user@ with the explanation of yet another
+  possibility added in words...  So user will not get a wrong impression if
+  reading that document not so carefully (you know, samples are so easy
+  remembered without details), -KW, LP
+* ifdef bkgd() call in force_repaint that accommodated pre-ncurses 4.1 bugfix,
+  from early 1997.  With current code, a ^L when a popup is displayed causes
+  the screen colors to be reset (reported by KW) -TD
+* undo recent no_color_video check for A_BOLD, A_UNDERLINE since this did not
+  have the intended effect (reported by KW) -TD
+* add note to lynx_url_support.html about lynxcgi -PW
+* reorganize the code:  'search_target' now became global, so display_page()
+  and highlight() could be called from any place easily.  This was a mainloop
+  local variable (name changed from 'prev_target' to avoid conflict elsewhere),
+  the value currently changed in mainloop(), handle_LYK_WHEREIS() and
+  textsearch() -LP
+* add user search in partial mode (while loading of the document is in
+  progress).  Scrolling to the string in question is not working properly yet
+  if you repeat 'n' next time.  More work required -LP
+* improved makelynx.bat (<vtailor@gte.net>)
+* fixed bug that corrupted memory (resulting in crashes) in situations when
+  line ends with LY_SOFT_HYPHEN -VH
+* correct comment in userdefs.h regarding renaming of
+  LINKS_AND_FORM_FIELDS_ARE_NUMBERED to LINKS_AND_FIELDS_ARE_NUMBERED and
+  change DEFAULT_KEYPAD_MODE to LINKS_AND_FIELDS_ARE_NUMBERED -PW
+* fix bug that caused lss-enabled lynx to crash on growing textarea or inserting
+  file into it -VH
+* new lynx.cfg option REFERER_WITH_QUERY:[SEND|PARTIAL|DROP] -KW
+* don't send Referer if we have to load a document again that we got
+  from the history stack.  Lynx would send the URL of the current
+  document (the one "later" in history) which could only accidentally
+  be right -KW
+* changed default for PERSISTENT_COOKIES from TRUE to FALSE, since
+  persistent cookie support is now configured in by default -KW
+* new functions (key_for_func_ext) to return a "best" key (or key pair) to
+  invoke a given lynx  action, either in the Line Editor or in normal mode.
+  Currently only used for a couple of statusline messages (those that had ^V
+  hardcoded).  The statusline info while in a textarea now gives the right
+  key(s) for invoking external editing, or omits the info if appropriate
+  (no key bound, or no editor defined or allowed) -KW
+* doc updates for TEXTAREA special functions -KW
+* moved #defines for TEXTAREA_EXPAND_SIZE, AUTOGROW, AUTOEXTEDIT from
+  LYMainLoop.h to userdefs.h, the latter two renamed to TEXTAREA_AUTOGROW
+  and TEXTAREA_AUTOEXTEDIT, added description -KW
+* minor tweaks: -accept_all_cookies help string, some formatting changes,
+  minor text additions and corrections -KW
+* set $(PROG_EXT) variable in makefiles for cygwin -TD
+* define __CYGWIN__ if needed, e.g., for betas that define __CYGWIN32__ -TD
+* workaround cygwin b19.1 problem generating cfg_defs.h because it did not
+  properly export $PATH -TD
 1999-11-03 (2.8.3dev.14)
 * modify no_color_video check for A_UNDERLINE so it is active for any
   combination that uses underlining (reported by KW) -TD
@@ -69,7 +125,7 @@ Changes since Lynx 2.8 release
   the first letters of the translation of "yes" and "no" in a localized lynx,
   the latter will still be the ones that appear in the prompt text and will
   have precedence.  Message translations using multibyte character sets should
-  continue to *not* translate "yes" and "no".  Added a note to that effect. 
+  continue to *not* translate "yes" and "no".  Added a note to that effect.
 * small update for some chartrans tables, minor comment changes.
 * for Unix, use LYSystem instead of system for invoking telnet, rlogin,
   rtn3270 commands.
@@ -113,15 +169,15 @@ Changes since Lynx 2.8 release
   access.
 * The previous changes in link redrawing made things worse instead of better
   for UTF-8 display with ncurses (without color style).  This time (using
-  wredrawln, not touchline) it should really get better... 
+  wredrawln, not touchline) it should really get better...
   [ The UTF-8 related changes would need testing with non-ncurses curses libs,
     if anyone has one of those AND a working UTF-8 environment - late xterm
     betas(?) from Tom's site should do.  If the functions used for ncurses are
     available in other curses libs, the code should probably look the same as
     for ncurses.  ]
 * SGML.c to compile without --enable-prettysrc (reported by HN) -KW
-* fixes an invalid memory problem from previous patch 
-* adds alignment inheritance from COLGROUP / COL / THEAD / TFOOT / TBODY. 
+* fixes an invalid memory problem from previous patch
+* adds alignment inheritance from COLGROUP / COL / THEAD / TFOOT / TBODY.
 * remove some logic from LYmbcsstrlen() that gave an incorrect count for
   the number of cells displaying multibyte characters, resulting in too-few
   cells being highlighted (reported by HN, HS) -KW
@@ -226,7 +282,7 @@ Changes since Lynx 2.8 release
 * added a missing significant cast in UCReverseTransChar.
 * for scrollbar mouse clicking, use codes that work independent of current
   line-editor key bindings.
-* better calculation of "subjective distance" from next anchor for mouse. 
+* better calculation of "subjective distance" from next anchor for mouse.
   Change of 1999-07-30 had various problems, it wasn't quite intuitive.  Use
   scaled numbers for finer granularity.  Don't make "basin of attraction" too
   wide, or it becomes hard to find a "background" spot to click on that doesn't
@@ -244,7 +300,7 @@ Changes since Lynx 2.8 release
   argument 'count_gcells' that tells them how to count.
   This removes some long-standing, somewhat obscure problems with search target
   highlighting under CJK display character sets, as well as new (and less
-  obscure) CJK problems introduces by the latest changes for highlighting. 
+  obscure) CJK problems introduces by the latest changes for highlighting.
   Also fixed some details in the *strstr functions.  The positioning of the
   highlighting in CJK mode should now be correct and work as expected (as for
   other display character sets) for anchors, search targets, and combinations
@@ -556,9 +612,9 @@ Changes since Lynx 2.8 release
   the password with "******" (Gisle Vanem <giva@bryggen.bgnett.no>).
 * fix mismatch of const's from call of map_string_to_keysym() in
   lkcstring_to_lkc() -TD
-* Supply trailing slash for protocol_proxy settings (whether environment
+* supply trailing slash for protocol_proxy settings (whether environment
   variables or lynx.cfg) in HTAccess.c if the slash was omitted and if the
-  content otherwise looks normal (starts with http, no su) -KW
+  content otherwise looks normal (starts with http, no superfluous slashes) -KW
 * add links for "Free WWW E-mail services" to online help -PW
 * add links in online help to FAQ-o-matic -JS
 * more fixes to build with slang under cygwin32 - DK