diff --git a/WHATSNEW.txt b/WHATSNEW.txt index 2932e66..ffeb93e 100644 --- a/WHATSNEW.txt +++ b/WHATSNEW.txt @@ -1,3 +1,58 @@ +WHATSNEW For 'twander' 3.231 (Wed Jul 1 02:43:50 CDT 2009) +---------------------------------------------------------------------- + +NEW FEATURES + +- It is now possible to select the number of digits of precision to + display when scaling file lengths (i.e., when ACTUALENGTH is set or + toggled to False). A new variable, SCALEPRECISION (Default: 1), has + been implemented to support this. SCALEPRECISION sets how many + digits to the right of the decimal point to display in the scaled + length. Notice that this does not do proper rounding and thus the + rightmost digit can be off by -1. + +- It is now possible to do case-insensitive matching of both + Association and Association Exclusion patterns on Unix-like systems + (this is the default on Win32 systems). This is done by prepending + the "/" symbol to the beginning of the pattern: + + ASSOC ! /*tXt # Exludes files ending in txt, TXT, TxT, TXt, ... + ASSOC /*txT emacs [SELECTION] # Invokes emacs for files ending as above + + Notice that exclusions have higher precedence than associations. In + the example above, files ending in txt, Txt, and so on would always + be excluded and the association with emacs would never happen. + + +CHANGES + +- None + + +BUG FIXES + +- Any selections and/or the active marker are now properly preserved + if files are added or deleted between rereads of the directory. + Previously, the list of active/selected items was kept by position. + Now it is preserved by name and thus will be correct even if the + position of an item changes in the list. This means that if a + selected/active item is renamed, it will lose its + selection/activation on the next directory update. + +- Symbolic links pointing to directories using a relative path were + not being properly sorted as directories the first time the + containing directory was entered, even if SYMDIR was set to True. + + +DOCUMENTATION + +- The 'twander' license has been relaxed to permit commercial + use of the program without any payment requirments. + Voluntary donations are gladly accepted however ;) + +- The manual has been updated to reflect the new features. + + WHATSNEW For 'twander' 3.224 (Fri Jun 1 15:15:22 CDT 2007) ---------------------------------------------------------------------- @@ -75,10 +130,10 @@ title bar space). -BUGFIXES +BUG FIXES -- If SYMDIR=False symlinks that pointed to directories did not end with - trailing path separator. +- If SYMDIR=False, symlinks that pointed to directories did not end + with trailing path separator. - Symlink named as dotfiles were not being hidden when HIDEDOT=True.