home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / dta / whatsnew.dta < prev   
Text File  |  1994-10-12  |  49KB  |  961 lines

  1.  
  2. What's new in DTA:
  3.  
  4.  Rel 2.2 beta (10/12/94)
  5.  
  6.  Changes:
  7.   o Added /B15 for 15-bit (32768-color) flic and TGA output.  (This is
  8.     the same as /B16 used to produce).  /B16 will from now on produce
  9.     real 16-bit (65536-color) flics.  /B16 does not work with
  10.     TGA files, because the TGA format does not support real 16-bit
  11.     images... you must use /B15 instead.
  12.   o Added support for 1-bit (black & white) flics, called FLBs.
  13.     Use the /B1 switch to create them.  DFV 1.1 or higher is
  14.     required to play this type of flic.  I recommend using ordered
  15.     dither (/DO) with it unless you're starting with black & white
  16.     images.  I'm planning to add 1-bit PCX and BMP output too, but
  17.     haven't done it yet.
  18.   o Implemented Dan Richardson's "Field rendering" flic
  19.     compression idea.  The trick is to update only the odd-
  20.     numbered lines in odd-numbered frames, and only even-
  21.     numbered lines in even-numbered frames.
  22.     Since it isn't exactly the same thing as TV-type fields
  23.     I dubbed this option "even-odd compression".  Select this
  24.     option with the /EO command-line switch.
  25.   o Added /FADE transition switches.  Just type
  26.     /FADE# (where # is the number of frames) between the
  27.     names of two files that you want to fade between.
  28.     /FADE does a smooth fade between the pictures.
  29.   o Added /BA switch which causes DTA, when building a
  30.     flic, to compress frames with straight run-length
  31.     encoding instead of delta compression whenever it
  32.     would compress better.  The result is sometimes a
  33.     slightly smaller, but slower-playing flic.
  34.   o DTA will shell to DJPEG.EXE (if it's in your DOS path)
  35.     to read JPEG files.  I wrote this code for v4 of DJPEG,
  36.     and still have to update it for v5 which uses different
  37.     syntax.
  38.   o If you select /FJ and have CJPEG.EXE in your DOS path, then
  39.     DTA will shell to it to create JPEG files.  I wrote this
  40.     code for v4 of DJPEG, and still have to update it for v5
  41.     which uses different syntax.
  42.   o DTA can now read .RAW files created in Stefan Eckart's
  43.     DMPEG program.
  44.   o TGA reading is now faster.
  45.   o Sped up most disk I/O by using real-mode buffers.
  46.   o Switched from octree color quantization to median cut
  47.     quantization.  The resulting color palettes usually look
  48.     a bit better, and processing is quicker.
  49.     Occasionally the octree method will produce a better
  50.     palette, so it's still in DTA as an option.  Just add "/RO" to
  51.     the command-line.
  52.   o When converting a bunch of pictures from one still image
  53.     format to another (i.e., TGA to GIF), DTA would use the
  54.     image resolution from the first image as the new resolution
  55.     for all of output pictures.  So if the first input picture
  56.     was 320x200 and the second was 640x480, both output pictures
  57.     would be created at 320x200.  Fixed.
  58.   o Reworked the help screen(s).
  59.   o Pixel tolerance (/TO, /TX, etc.) only worked when creating
  60.     24-bit animations.  It now works with all flics, including
  61.     8-, 15-, and 16-bit.
  62.   o Added support for convolution filters, which allow some
  63.     additional image-processing capability like blurring,
  64.     sharpening, etc.  Just add /CNV[filter] to the
  65.     command-line, where [filter] is the filename of a
  66.     .CNV file.  Several sample CNV files are included with
  67.     DTA: BOX (which blurs images using a box filter), WBOX (a
  68.     weighted blurring filter), GAUSS1 (a strong blurring filter),
  69.     GAUSS2 (a really, really strong blur filter),
  70.     SHARP1, and SHARP2.
  71.   o The /U switch (which causes DTA to read in a .MAP and .COL
  72.     file to use as a palette instead of creating an optimal
  73.     palette) was broken.  Fixed.
  74.   o Added three switches for tiling.  /TILEX#, which tells
  75.     DTA how many pictures to tile horizontally, /TILEY#, which
  76.     tells DTA how many pictures to tile vertically, and /TILE#,
  77.     which specifies how many pictures to tile both horizontally
  78.     and vertically.
  79.   o DTA can now read 1-bit PCX files in addition to the
  80.     8- and 24-bit ones it could read before.
  81.   o DTA can now read 1-bit BMP/DIB files in addition to
  82.     the 8-, 24-, and 32-bit ones it could read before.
  83.   o DTA now uses less memory when reading 24-bit images in
  84.     FLT and TGA formats... instead of converting them to
  85.     32-bit internally before processing, they remain 24-bit,
  86.     using only 3/4 as much memory as before.
  87.     (If you're building a multi-layer composition or creating,
  88.     32-bit output, they'll still be expanded to 32-bit.)
  89.   o Other miscellaneous speed and memory optimizations.
  90.  Rel 2.1 (04/23/94)
  91.   o Fixed flic-reading code so it reads the bottom row of
  92.     pixels properly.
  93.   o Rewrote a lot of the internal picture-file handling code.
  94.     All pictures are now read into memory buffers, and all
  95.     operations are performed on the memory buffers in
  96.     sequence.  (Formerly, DTA read most pictures
  97.     in a line at a time, and did all the operations on
  98.     each line of pixels... it kept lots of picture files
  99.     open simultaneously )
  100.     The side effects of these changes are:
  101.      (1) Basic operations use more memory.
  102.      (2) Real complicated operations (averaging, compositing,
  103.          etc.) use less memory.
  104.      (3) Most everything works at least a little bit faster,
  105.          and some operations are a lot faster.
  106.      (4) There's no longer any limit on the number of pictures
  107.          that you can average.  (DTA used to fail if you
  108.          tried averaging more than 10 or 12 pictures.)
  109.      (5) I was able to reshuffle the order of operations.
  110.          Now, the order is: chroma-key, averaging, clipping,
  111.          scaling, post-scale clipping, rotation, compositing.
  112.          (Now that I've gotten this far, I've realized that
  113.          this still stinks... what's really needed is a
  114.          user-defined order.)
  115.      (6) Made it possible to add arbitrary rotations.
  116.      (7) Processing a frame takes more steps, so the "percent
  117.          finished" information isn't as useful as it used
  118.          to be.
  119.   o Had trouble reading some TGA files produced with
  120.     RMORF 0.4 because of incorrect header information.
  121.     DTA will now assume that a TGA file is 320x200 resolution
  122.     if the image size fields are left blank.
  123.   o Added built-in support for ZIP and LZH files, thanks to
  124.     TurboPower Software's incredible programming toolkits.
  125.     No more shelling to PKUNZIP or LHA required.  As a result,
  126.     extraction from archives is a lot faster, and there's no
  127.     need to put up with LHA's weird screen access anymore.
  128.     Unfortunately, because of this change I had to drop support
  129.     for the ARJ archiver.
  130.   o When building 8-bit flics, DTA used to always use the
  131.     320x200 resolution some another resolution was selected
  132.     using the /R switch.  The reason for that was that 320x200
  133.     is the only supported resolution for the original Autodesk
  134.     Animator .FLI format.
  135.       From now on, it'll use the actual resolution from the
  136.     first input picture file, like the now-obsolute /RA
  137.     switch used to do.
  138.       So unless your input pictures are already 320x200, you'll
  139.     get .FLC files instead of .FLI files.  You can make DTA
  140.     create a .FLI file even with other resolution input by
  141.     specifying /R1 or /R320,200.
  142.       You'll also need to use /R if you want to create
  143.     larger images for compositing...
  144.   o When DTA makes a 320x200 flic, it always creates a .FLI
  145.     file instead of a .FLC file.  Unless you use the /FLC
  146.     switch.
  147.   o Reworked grayscale options... now there's /G, /G128, /G64,
  148.     and /G32, /G16, /G8, and /G4.
  149.       /G represents a 256-level grayscale except when the output
  150.     format is a 320x200 .FLI file, when it represents a 64-level
  151.     grayscale.  That's because .FLI won't support higher than
  152.     64 shades.
  153.       /G128 represents a 128-level grayscale, /G64 a 64-level
  154.     grayscale, etc.
  155.     The lower numbers will get you a lower-quality image, which
  156.     will almost always compress better.
  157.       Most VGA and SVGA monitors can only display 64 shades
  158.     of gray, so it's wasteful to use more than that if your
  159.     picture will only be displayed on a monitor.
  160.     Some laptop VGA displays can only display 32 shades.
  161.       If you're going to be printing your image or using it
  162.     as a bump map or height field with a rendering program,
  163.     then the more shades the better.
  164.   o Renamed /CH (chroma-key) to /CK so that /CH would be free
  165.     for a new option.
  166.   o Got rid of /3D... I pulled it out to make some of the
  167.     rewrite easier.  You can now get a similar 3d effect
  168.     using /CHR and /CHB (see below).
  169.   o Added /BU, which makes DTA save .TGA files bottom-up
  170.     (or upside-down, if you prefer) instead of top-down.
  171.     ... some applications don't understand top-down .TGAs.
  172.   o Added /IG, which maked DTA save .GIF files in interlaced
  173.     format.  It can also read interlaced .GIFs now.
  174.   o When you create an 8-bit TGA file, DTA will now
  175.     produce a colormapped TGA, not a greyscale TGA.
  176.     If you want a greyscale TGA, use /G instead of /B8.
  177.     DTA can now read colormapped TGA files, too.
  178.   o Added /CH[R,G,B,A] which stand for CHannel insertion,
  179.     which should let you create some truly weird effects
  180.     if you're so inclined.
  181.     (This is a pretty hard concept to explain, so bear with me...
  182.     and remember that you don't have to use it, just like you
  183.     don't have to use /L...  DTA still understands simple
  184.     command lines like "dta *.tga".)
  185.       You can specify /CHR (red channel), /CHG (green channel),
  186.     /CHB (blue channel), and /CHA (alpha channel) to cause
  187.     a gray-scale version of an image file to be inserted
  188.     into a specific channel of the current layer.
  189.       You can use this to specify a matte for an image that
  190.     doesn't contain an alpha channel, like this:
  191.         dta background.tga /l pics*.tga /cha masks*.tga
  192.     or to get a red/blue 3d effect (the kind that requires
  193.     funny glasses):
  194.         dta /chr left*.tga /ga0.8 /chb right*.tga
  195.     (the /ga is to adjust the brightness of the red component
  196.      so it doesn't drown out the blues.  Some experimentation
  197.      may be necessary to get the balance just right... if
  198.      somebody comes up with an ideal brightness combination,
  199.      let me know and I'll put it in the doc.)
  200.       /CH works much like /L, except /CH is subordinate to /L.
  201.       /CH merging (insertion) takes place after picture
  202.     averaging, gamma correction, and chroma-keying, but before
  203.     clipping, rotation, scaling, etc.  /L merging (compositing)
  204.     takes place after all of the above.  So, you can have separate
  205.     chroma-key, gamma, averaging settings for each /CH layer,
  206.     but only one /ROT, /LOC, etc. setting in each /L layer
  207.     regardless of how many /CH layers you've got.  And some
  208.     other switches, like /F, /O, /R, etc. can only be specified
  209.     once per command line, no matter how many /L and /CH layers
  210.     you've got.
  211.       Note that if you specify "pics*.tga /cha masks*.tga",
  212.     you're really specifying two /CH levels, not just one.
  213.     The first, without a /CH parameter, contains pics*.tga,
  214.     and there's no special processing of the color channels.
  215.     The second gets converted to a grayscale and is inserted
  216.     into the alpha channel.
  217.       (Thanks to John Jordan for suggesting alpha insertion in
  218.     the first place...)
  219.   o When converting from one file format to another, DTA
  220.     will usually use the original picture's filename, but
  221.     with a new extension (unless you specify a different
  222.     filename with /O).
  223.       But, if you're creating an output picture from multiple
  224.     input layers, or multiple input channels, or averaged
  225.     images, or if input file and output file are in the same
  226.     format, then DTA will invent new output filenames, like
  227.     "OUT00000".
  228.       You can now force DTA to use the original filename
  229.     even in those situations if you use the new /FO (force
  230.     original filename) switch.
  231.       DTA might still not pick the right filename when you're
  232.     using multiple layers, because it'll always use the first
  233.     filename in the first channel group in the first layer.
  234.     If, for example, you're overlaying a signature or log over a
  235.     bunch of input pictures, like this:
  236.       DTA PICS*.TGA /L SIGN.TGA /FG /FO
  237.     it'll be okay because each .GIF file will use the filename
  238.     from the first layer (PICS*.TGA).
  239.     But if you're overlaying a bunch of pictures onto a single
  240.     background, like this:
  241.       DTA BACK.TGA /L PICS*.TGA /FG /FO
  242.     it won't be okay, because each output picture will get saved
  243.     as BACK.GIF.  In that circumstance tell DTA to use the
  244.     filenames from the second layer, like this:
  245.       DTA BACK.TGA /L PICS*.TGA /FG /FO2
  246.     You can also specify a specific channel group, like this:
  247.       DTA /CHR X*.TGA /CHG Y*.TGA /CHB Z*.TGA /FG /FO1,2
  248.     (the 1 means the first layer... you have to specify a
  249.     layer when you're specifying a channel, even if there's
  250.     only one.  The 2 means the second channel group in the
  251.     command, green in this case.)
  252.      You can use /FO to force DTA to replace your original
  253.     files after processing, like this:
  254.       DTA *.GIF /ROT90 /FG /FO
  255.   o Added read/write support for MindImage .RLE files.
  256.     (These are the .RLE files used for the random dot
  257.     stereogram program MindImage... DTA can NOT read any of
  258.     the many other file formats that also use the extention
  259.     .RLE)
  260.       You read one of these files just like you would any other,
  261.     by using the filename in the command line.  For example,
  262.     to convert a RLE to a GIF file, type:
  263.      DTA HUMAN.RLE /FG
  264.       To write a RLE, use the new /FR switch.  Be warned that
  265.     MindImage expects pictures' dimensions to be powers of two
  266.     with a maximum of 512.  So, DTA will always force pictures
  267.     to have horizontal and vertical dimensions of 64, 128,
  268.     256, or 512.  If a dimension is larger than 512, then
  269.     it'll be chopped down to 512.  Otherwise, unless a dimension
  270.     is exactly equal to one of the allowed dimensions, it'll
  271.     be increased to match.  If the dimensions that are selected
  272.     for you are different from the original dimensions, DTA
  273.     will crop or extend the picture.  For example, if you start
  274.     with a 640x480 picture, DTA will chop off a little from the
  275.     left and right to pare the 640 down to 512, and add enough
  276.     black border to the top and bottom to extend the 480 to 512.
  277.     Make DTA rescale the image to the new dimensions with the /SC
  278.     switch.  In the 640x480 example,
  279.      DTA 640.GIF /FR /SC
  280.     will cause the 640x480 image to be rescaled to exactly
  281.     512x512.
  282.      DTA 640.GIF /FR /R128,128
  283.     will result in a 128x128 image chopped from the middle of
  284.     the starting image.  The next two commands:
  285.      DTA 640.GIF /FR /SC128,128
  286.      DTA 640.GIF /FR /R128,128 /SC
  287.     both result in a 128x128 image with the whole rescaled to
  288.     fit exactly.
  289.   o Added read-only support for IFF/ILBM files, 24-bit variety
  290.     only.  Files with extensions of .IFF and .LBM will be
  291.     recognized.
  292.   o Changed the default 16-bit flic format from .FLX to .FLH.
  293.     .FLX is still supported to make life easier for users of
  294.     Mathematica's Tempra Turbo Animator (the program that first
  295.     supported that format).  Just use the /FLX switch to tell
  296.     DTA to use .FLX instead of .FLH.
  297.       The basic (only?) difference between .FLX and .FLH is that
  298.     they compress the first frame differently.  .FLX uses a
  299.     byte-oriented scheme which does not compress 16-bit pictures
  300.     very well.  .FLH uses a word-oriented scheme which works much
  301.     better.
  302.       (My DFV flic player can read either.  Tempra Turbo Animator
  303.     will not be able to read the .FLH files.)
  304.   o Added support for .FLT (24-bit) flics.  Just use the /B24
  305.     switch to tell it to build a .FLT in stead of .FLC.
  306.       At the moment, my DFV player is the only player that can
  307.     can view this variation of the flic format... if anybody out
  308.     there wants some info on the modifications I made to the flic
  309.     format to support 24-bit, let me know.  They're not too
  310.     complicated, and they're not a secret.
  311.   o Because 24-bit flics can get so *huge*, I added some tricks
  312.     for minimizing the size.  First, the /TO (flic tolerance)
  313.     switch, which causes DTA to ignore pixel differences between
  314.     frames when the distance in color-space is less than or
  315.     equal to a value that you supply.
  316.       I know that explanation leaves something to be desired
  317.     ... to understand what's going on, try it out by adding
  318.     "/TO15" at the end of a command line.  The result will
  319.     usually be a smaller flic that plays more quickly and
  320.     doesn't look quite as good.
  321.       This trick works better with digitized video than it does
  322.     with rendered animation.
  323.       Sometimes this gimmick produces a side effect of faint
  324.     trails on the screen when you animate anti-aliased images.
  325.     Try the /TX switch (which isn't really an acronym of anything)
  326.     with a number, for example "/TX5".  In that case, one frame
  327.     in every 5 will be a full difference frame with no
  328.     tolerance, and the trails will disappear.
  329.       /TO and /TX work only with 24-bit flics.  I'll probably
  330.     add it later for 8-bit and 16-bit flics.
  331.   o Added /INV which inverts either whole colors or individual
  332.     color channels.  You can do /INVR, /INVG, /INVB, /INVA,
  333.     or combinations of them.  Specifying just "/INV" is the same
  334.     as specifying "/INVR /INVG /INVB".
  335.     If you use any /INV option with /NM (no remapping of
  336.     mapped files) then color indexes will be inverted
  337.     instead of color components.
  338.   o Added /RED, /GREEN, /BLUE, and /ALPHA switches which
  339.     let you extract a particular channel from an image.
  340.     So, you can:
  341.       DTA PICTURE /RED
  342.     to create a grayscale image from just the red component, or:
  343.       DTA X*.TGA /CHR X*.TGA /BLUE /CHB Y*.TGA /RED
  344.     to first load in each picture as a regular 32-bit image,
  345.     then replace the red channel with the original blue channel
  346.     and then replace the blue channel with the red channel from
  347.     a completely different set of pictures.
  348.     This is fairly useless most of the time, but it should
  349.     make some really wild effect possible.
  350.   o Added /SCF (fast scaling).  Use it like /SC.  It works
  351.     a *lot* faster than /SC, but looks really bad, because
  352.     it doesn't use any interpolation.
  353.   o Added /CLP (post-scale clipping) which works just like /CL
  354.     but it clips the picture after scaling takes place.
  355.     If you type:
  356.      dta x.tga /sc500,500 /cl120,120,100,100 /pcl140,140,150,150
  357.     DTA will read in the picture and clip out a 100x100 window
  358.     from the picture (at coordinates 120,120), then rescale
  359.     the clipped window to 500x500, and then clip out a 150x150
  360.     window from the scaled picture (at coordinates 140,140).
  361.   o Fixed a bug: DTA would ignore /332 and /G palette options
  362.     if you were outputting to a GIF file.
  363.   o Got rid of /ST (start) parameter, replaced it with
  364.     /LOC.  Syntax is now /LOC#,#,# (default=0,0,0).
  365.     The first two numbers are the x,y coords on the screen
  366.     (from the center) where the center of the image should
  367.     go.... Unless you specify /LL (which tells DTA to base the
  368.     location on the left edge of the screen and image), /LR
  369.     (right edge), /LT (top edge), or /LB (bottom edge).
  370.     The third number is a time variable, specified as a
  371.     percentage.
  372.       If you specify /LOC0,0,0 that means put the image at
  373.     0,0 at the beginning of the animation.  Add /LOC25,25,50
  374.     and the image will be put at coords 25,25 at exactly halfway
  375.     through the animation. If you don't specify a #,#,100,
  376.     then DTA will assume you want the final location to loop
  377.     back to the starting point.  You can enter as many or
  378.     few /LOC parameters per layer as you want...
  379.     DTA will use an interpolating spline to figure out the
  380.     actual locations per frame.
  381.       Unlike the old /ST, pictures can be placed at non-integer
  382.     locations.  If you do, your picture will be resampled.
  383.   o Added arbitrary rotation.  So you can specify /rot45
  384.     (or /rot110.25 for that matter).
  385.     You can add time values after multiple /ROT switches
  386.     just like you can after /LOC.
  387.       To get a full rotation, you could do "/ROT0,0 /ROT360,100".
  388.     If rot[100%]-rot[0] is a multiple of 360, then the final
  389.     rotation value will not be used ... this helps produce
  390.     a smooth loop.
  391.       Rotation uses smooth resampling.
  392.   o Input pictures that are larger than the output picture
  393.     are now centered... instead of only the top corner
  394.     showing, the center will show.
  395.   o Added read-only support for Type-1 TGA files (8-bit,
  396.     colormapped).
  397.   o Added /CC (chroma-key color), which allows you to specify
  398.     what color DTA should replace matching pixels with.  The
  399.     default is still 0,0,0,0 (black, fully transparent).
  400.   o Averaging and scaling now handle 32-bit pixels correctly
  401.     ... previously they didn't take the alpha byte into
  402.     account properly.  As a result, colors (in areas where
  403.     alpha-blending was taking place) would sometimes come
  404.     out too dark or too light.
  405.     As a result, these two functions are slower than they
  406.     used to be... but I think the other speedups will cancel
  407.     it out.
  408.   o Made DTA write 8- and 24-bit PCX files (it did a couple years
  409.     ago, but only 8-bit and then I pulled it out to save
  410.     room.  Now that DTA's protected mode, there's no reason
  411.     not to support this output format).
  412.   o Made DTA read and write Vistapro .VAN animation files.
  413.   o DTA can now write as well as read BMP files, with
  414.     /FB switch.  /FD switch creates the same type of file,
  415.     but uses the .DIB extension instead of .BMP
  416.     By default, it creates 24-bit BMPs, but you can
  417.     make it create 8-bit BMPs by adding the /B8 switch.
  418.   o Fixed a bug in flic-reading... if a flic contained
  419.     a partial palette (fairly rare), DTA would get confused
  420.     and crash.
  421.  Rel 2.0.8 (10/22/93)
  422.   o Added 90 degree increment rotation... use "/ROT90", "/ROT180",
  423.     "/ROT-90", "/ROT270" etc.
  424.     Note: this is the order that operations get done...
  425.     First rotation, next scaling, next clipping.
  426.     So if you did "/cl100,100 /sc200,200 /rot90"
  427.     then DTA will first rotate the picture 90 degrees to the
  428.     right, then scale it to 200x200, and then clip off the
  429.     top half and left half of the scaled, rotated image.
  430.   o Expanded /R switch... in addition to preset resolution
  431.     numbers like "/R6", you could also set the resolution
  432.     explicitly like "/R640,480".  Just be careful that, if you're
  433.     creating a .FLC file *don't* pick an odd number for the
  434.     horizontal dimension: "/R149,200" is a no-no.
  435.     (That's not a limitation of the .FLC format, just of
  436.     my implementation.)
  437.   o Reworked the way scripts work (you know, like "@pics.scr").
  438.     Scripts can now include regular command-line switches
  439.     in addition to filenames.  Just make sure that you've got
  440.     a new file name or switch on each line of the script file.
  441.     You can even include the name of a new script file...
  442.     Just try to avoid recursive script files...
  443.     *Don't* put "@script1.scr" inside of SCRIPT1.SCR, and
  444.     *don't* put "@script1.scr" inside of SCRIPT2.SCR if SCRIPT2.SCR
  445.     is called by SCRIPT1.SCR.
  446.     Or DTA will go into an infinite loop and hang up.
  447.   o If you don't include an extension with an @filename, DTA
  448.     will add '.SCR' to the filename.
  449.   o Fixed some clipping bugs.
  450.   o DTA would sometimes crash with an out-of-heap-memory
  451.     runtime error when flipping a large upside-down TGA file.
  452.     Fixed.
  453.  Rel 2.0.7 (09/30/93)
  454.   o Scaling didn't work right when DTA was reading from a
  455.     flic (probably also when reading an upside-down
  456.     TGA and creating a GIF or TGA).
  457.     Fixed.
  458.  Rel 2.0.6 (09/27/93)
  459.   o Fixed some more bugs in compositing and chroma-key.
  460.  Rel 2.0.5 (09/12/93)
  461.   o Finally got rid of the protection fault that invariably
  462.     occurred after DTA finished building a .FLX file.
  463.  Rel 2.0.4 (09/01/93)
  464.   o Discovered a strange 'feature' in TGA files produced by
  465.     a program called Imagine.  Even though they are unmapped
  466.     24-bit images, for some reason they contain a color map.
  467.     Because DTA doesn't support colormapped TGA files, I
  468.     never paid any attention to color-map info... so DTA
  469.     just would ungraciously treat the color-map in such files
  470.     as if it were part of the image.
  471.     DTA still doesn't read colormapped TGA files, but now if
  472.     there's a color-map in an unmapped picture, it'll at
  473.     least bypass it correctly.
  474.  Rel 2.0.3 (08/25/93)
  475.   o Added inverse chroma-key (/CI).  Works the same as chroma-key
  476.     but backwards... only matching colors *won't* be made
  477.     transparent.
  478.   o Couldn't read .FLC files created with Autodesk Animator...
  479.     it got confused when it ran into the optional "prefix" and
  480.     "postage stamp" chunks.  Fixed.
  481.   o Had problems reading 16-bit TGA files... sometimes
  482.     resulting in page faults, sometimes in bad output.
  483.     Fixed.
  484.   o (There still seems to be a problem with .FLC files
  485.      created with DTA... some players choke on some flics.
  486.      And there's still that irritating page fault after it
  487.      finishes building a .FLX file... I'm working on 'em.)
  488.  Rel 2.0.2 (08/11/93)
  489.   o Multiple layers didn't work right with /NM (no remapping)...
  490.     only the bottom layer would show up in the final picture.
  491.     Now it works, including chroma-key.
  492.     Note: remember, all pictures in all layers must be colormapped,
  493.     and must share the same palette for /NM to work right.
  494.  Rel 2.0.1 (08/04/93)
  495.   o Fixed a bug in /CL (clipping).
  496.   o Fixed a bug in /CH (chroma-key).
  497.  Rel 2.0 (07/29/93)
  498.   o DTA can now read FLIC files.
  499.   o DTA can now read DIB/BMP files.
  500.   o DTA can now read Presidio .ANI files.
  501.   o DTA can read and write hicolor Tempra ".FLX" files.
  502.     Just specify /B16 (for 16-bit) on the command line to
  503.     build an FLX instead of an FLI or FLC.
  504.     (This feature seems to work well enough, but there are
  505.     still some bugs.
  506.     For some reason I haven't figured out yet, DTA crashes
  507.     with a General Protection fault whenever it builds a FLX file.
  508.     This only happens after it's finished building the animation.)
  509.   o Now including the FLISPEED program with the DTA package.
  510.     This'll change the speed value in the header of a flic
  511.     without requiring you to rebuild the animation.
  512.     Just type:
  513.       flispeed xxx.fli /s5
  514.     to change xxx.fli to a speed value of 5.
  515.   o Added multi-layer (use /L to separate layers) compositing.
  516.     Like this: DTA BACKGRND.TGA /L FORE*.TGA
  517.     If FORE*.TGA are 32-bit TGAs with alpha, then
  518.     DTA will make use of the transparency info.
  519.   o Added chroma-key (use /CHr,g,b to specify a transparent
  520.     color) ... this works okay, but not nearly as good as
  521.     starting with 32-bit TGA files containing transparency
  522.     info (which you can create in Polyray and, I'm told,
  523.     3D Studio).
  524.     You can use this feature to create 32-bit TGA files that
  525.     contain alpha information like this: DTA *.TGA /OT /B32 /CH255,0,0
  526.     (DMorf fans: DMorf will morph the alpha info along with the
  527.     color info... but DMorf can add alpha better than DTA can.)
  528.     Or, DTA BACKGRND.GIF /L FORE*.GIF /CH0,0,0 to composite a
  529.     over a background... DTA will make all black pixels transparent.
  530.       /CT specifies a tolerance for chroma-key.  If you (for example
  531.     specify "/CH0,255,0 /CT5" then all pictures in the range
  532.     <0,250,0> and <5,255,5> will become transparent.
  533.   o Added /REP# which repeats a single frame a specified number
  534.     of times.  Useful for inserting pauses in your flics.
  535.     For example, if you type
  536.       DTA before.tga /rep10 morf*.tga after.tga /rep10
  537.     before.tga and after.tga each get repeated ten times.
  538.     Note that this'll only create a pause if you have a speed
  539.     value greater than 0.
  540.   o Added /STx,y (start) ... instead of centering a picture
  541.     on the screen, you can tell DTA where to place the top-left
  542.     hand corner of an image on the screen.  You can have a separate
  543.     start value for each layer.
  544.   o Added /CLx1,y1,x2,y2 (clip)
  545.     X1 and Y1 specify the top-left corner of the clipping window,
  546.     and X2 and Y2 specify the size of the clipping window.
  547.     Clipping takes place AFTER scaling, if you use both.
  548.     You can have a separate clip for each layer.
  549.   o Got rid of /SX (scale X) and /SY (scale Y)... just use /SCx,y
  550.     for scaling.
  551.     You can have a separate scale value for each layer.
  552.   o No more real-mode executable.  DTA is just getting too darn
  553.     big.  Maybe I'll build a pared-down DTALITE or something
  554.     later on, if there's any demand.
  555.   o Fiddled with the status display some.
  556.   o Skipped 1.9... I think the amount of change justifies going
  557.     all the way to a new major release number.  Alexander
  558.     Enzmann requested flic-reading way back even before I
  559.     released 1.0 and here it is, finally.
  560.   o Probably some other stuff I've forgotten about.
  561.   o Fixed a bunch of bugs (and probably added some new ones
  562.     while putting in new features).
  563.  Rel 1.8g (01/18/93)
  564.   o Added comments to @files... just prefix comments with a ";".
  565.   o DTA now ignores blank lines in @files.
  566.   o Fixed assorted bugs.
  567.   o Added grayscale TIF output (/FI)
  568.   o Added /I option, which works like /K (skip), except instead
  569.     of specifying how many frames to skip, specify the total
  570.     number of frames you want in your flic.  So if you have
  571.     50 files... X000.TGA, X001.TGA, on up to X049.TGA, and
  572.     you type:
  573.      dta x*.tga /i10
  574.     then DTA will create a 10-frame flic from X000, X004, X009,
  575.      etc.
  576.  Rel 1.8f (12/30/92)
  577.   o Fixed some more bugs.
  578.   o Added support for 8-bit grayscale TGA files (type 3).
  579.     (To create one, use /B8 /FT).
  580.   o Added picture rescaling.  The /SC option, which only works
  581.     when you're creating flics, rescales an image so it's the same
  582.     size as the screen resolution.
  583.     The /SW option rescales an image so it's the same width as the
  584.     screen resolution (or, if you enter a number, like /SW100,
  585.     to the width that you specify... if you use /SW for an output
  586.     format other than a flic, then a specified width is required)
  587.     The /SD option rescales an image so it's the same depth as the
  588.     screen resolution (or, if you enter a number, like /SD100,
  589.     to the depth that you specify... if you use /SD with an output
  590.     format other than a flic, then a specified width is required)
  591.  Rel 1.8e (12/17/92)
  592.   o For some reason the /NM option didn't work anymore.  Fixed.
  593.   o Fixed a bug in FLC compression... it caused the wrong pixels
  594.     to be updated when there was a change in a pixel row after a
  595.     run of more than 254 unchanged pixels.
  596.   o Fixed a bug that caused a page-fault (runtime error 216)
  597.     when creating GIF or TGA files in the protected mode
  598.     version.
  599.   o There used to be a limit on the width of pictures that DTA
  600.     could process... if you made it read a picture wider than
  601.     1280 pixels, you'd either get a spectacular crash requiring
  602.     a reboot (real mode) or an error message (protected mode).
  603.     Now it should be able to process pictures with a width up
  604.     to 16K pixels or so without crashing.
  605.  Rel 1.8d (11/30/92)
  606.   o Fixed one bug, which prevented DTA from creating 1-frame
  607.     flics correctly.
  608.   o Including two versions of DTA... DTA.EXE (real mode) and
  609.     DTAX.EXE (protected mode).  The memory management stuff
  610.     that I included in 1.8b and 1.8c is now separated into
  611.     another archive, DTAMEM.ZIP.
  612.     The real-mode version runs faster than the protected-mode
  613.     version, but only gives you access to 640K of memory.
  614.  Rel 1.8c (11/27/92)
  615.   o Whoops, introduced some new bugs in 1.8b.  Got ZIP, LZH, and
  616.     ARJ working fine, but it wouldn't read pictures outside of
  617.     archives anymore.
  618.  Rel 1.8b (11/27/92)
  619.   o Fixed a bug that caused a runtime error 204 whenever a frame
  620.     couldn't be compressed and had to be stored raw.
  621.   o Flics of resolutions other than 320x200 are now saved with the
  622.     extension 'FLC' instead of 'FLI'... to be consistent with
  623.     conventions established by Autodesk's Animator Pro.
  624.   o This is the first version of DTA to be compiled in 286 protected
  625.     mode.  This means that DTA can access up to 16MB of extended
  626.     memory without all that messy EMS/XMS/virtual memory management.
  627.     It also means DTA doesn't recognize EMS or page to disk any more.
  628.     If you require EMS or virtual memory, stick with the original
  629.     version 1.8.
  630.     Two extra files (DPMI16BI.OVL and RTM.EXE) are distributed
  631.     along with DTA to support protected mode.  You must keep these
  632.     files either in the same directory as DTA, or in the DOS path.
  633.     When DTA is run from inside a Microsoft Windows enhanced-mode
  634.     DOS window, it'll use Windows' DPMI services instead of the
  635.     Borland DPMI server.
  636.   o MAYBE fixed a bug in FLC compression.
  637.   o DTA can read pictures stored in ZIP and ARJ archives as well
  638.     as the previously supported LZH archives ... IF you've got the
  639.     appropriate de-archiver (PKUNZIP.EXE, ARJ.EXE, LHA.EXE) in your
  640.     DOS path.
  641.  
  642.  Rel 1.8 (11/08/92)
  643.   o DTA couldn't locate PCX, IMG, or GIF files in LZH archives... fixed.
  644.   o DTA can now read 24-bit PCX files (as well as the previously
  645.     supported 8-bit type).
  646.   o Added some additional error-checking so DTA will stop with an error
  647.     message if it runs out of disk space while creating output files.
  648.     Previously it just kept on trying to write to a full disk.
  649.   o In a previous version, made some changes in the GIF-writing
  650.     code to speed it up and use less memory.  As a result, upside-
  651.     down TGAs weren't getting flipped rightside-up like they're
  652.     supposed to... fixed.
  653.   o Removed some useless experimental options: /L, /E, /O
  654.     If anybody ever actually found a use for any of these, let me know
  655.     and I'll put 'em back.
  656.   o Removed /W, since it was only added as a workaround to a bug that's
  657.     now finally fixed.
  658.   o Added GIF89a input. (extension blocks are IGNORED)
  659.   o Fiddled with output-file parameters.  You now specify the output
  660.     filename with /O, and the format with /F instead of specifying
  661.     both with /F
  662.   o Added /H, which lets you adjust brightness.  /HA50 increases the
  663.     values of red, green, and blue by 50%.  /HR200 /HG-25 increases the
  664.     value of red by 200%, and decreases green by 25%.
  665.   o Added /C, which lets you skip frames when scanning for a palette.
  666.     If you use /C5, then DTA will only scan 1 picture for every 5
  667.     in your animation.
  668.   o Added /K, which lets you skip input files when generating a
  669.     flic.  If you use /K3, DTA will ignore 2 frames out of every 3.
  670.     If you use both /K2 and /C2, then DTA will skip every other
  671.     picture, and create a palette out using only 1 of every 4
  672.     pictures.
  673.   o Fiddled with the time blurb so it writes in minutes and seconds
  674.     instead of milliseconds.
  675.  
  676.  Rel 1.7g (08/27/92)
  677.   o Fixed a rarely-encountered bug in 320x200 FLI compression.
  678.   o Reworked the documentation (actually, Dan Farmer did most all of
  679.     this task).
  680.  
  681.  Rel 1.7f (07/19/92)
  682.   o Fixed some weird bugs in selecting output filenames for GIF files.
  683.   o Added /PO option, which causes DTA to create a single optimal
  684.     palette even when it's creating GIF files.
  685.  
  686.  Rel 1.7e (07/02/92)
  687.   o Removed all the logging code, since the memory allocation
  688.     problems seem to be licked.
  689.   o First attempt at creating hi-color and true-color FLIs.
  690.     (To create a hi-color FLI, use the /b16 parameter.  The
  691.      resulting file with have an extension of FLH.  To create
  692.      a true-color FLI, use /b24.  The resulting file will have
  693.      an extension of FLT.)
  694.     So far there's no player that will display these new files,
  695.     but Steve Enns is working on one.
  696.   o The color-mapping speedups in the previous version resulted
  697.     in bad color choices in some cases.  Added an extra
  698.     step between palette selection and color-mapping that
  699.     should improve it.
  700.   o Added /RA parameter (auto-resolution)... tells DTA to use
  701.     the size of the first picture to decide how big to make
  702.     an FLI.  Note: use this parameter only with pictures with
  703.     even horizontal dimensions.
  704.   o When DTA used XMS to store pictures, it wasn't always clearing
  705.     the picture buffer when it was supposed to... resulting in
  706.     some background garbage when animating pictures smaller than
  707.     the FLI.
  708.   o Added /DR (random dither) parameter.  Adds/or subtracts a
  709.     random value from each pixel.  Random values are the same
  710.     across frames, so FLIs shouldn't explode in size like they
  711.     sometimes do with error-diffusion dithers like Floyd-Steinberg
  712.     and Sierra Lite.
  713.     Specify the range of the random number by appending a number
  714.     to the /DR parameter, like this:
  715.      dta *.tga /dr4
  716.     That will result in random numbers ranging from -4 to 4.
  717.     Note: I stole the idea from Stephen Coy's IMG2GIF program.
  718.   o Got rid of /M parameter, which affected the order of
  719.     color-tree pruning.  It was a failed experiments in
  720.     improving color-selection.
  721.   o Changed /MI (max internal colors) parameter to /M
  722.   o Changed RLE TGA output so that line boundaries aren't
  723.     crossed within a packet... (to avoid a VPIC bug)
  724.  
  725.  Rel 1.7d (04/25/92)
  726.   o Fixed some more memory allocation problems.
  727.   o Speeded up color-mapping.  When dithering, there should
  728.     be a big speed increase.  When not dithering there should
  729.     be a lesser increase.
  730.   o Added Sierra Lite dithering (/DS parameter).  SL dither
  731.     another error-diffusion-type dither, somewhat quicker
  732.     than Floyd-Steinberg.
  733.  
  734.  Rel 1.7c (04/15/92)
  735.   o Fixed a bug in grayscale output.
  736.   o Reduced the amount of memory required for the color tree.
  737.   o Fixed some other memory-related problems.
  738.   o Got rid of V (verbose), and added /LOG (which causes
  739.     assorted memory allocation info and other boring
  740.     debugging-type data to be written to a file called "DTA.LOG".
  741.   o Added /MI parameter (which means "maximum internal colors").
  742.     The octree color routine allows only 256 colors to exist
  743.     in the tree at any time.  Whenever the number of colors
  744.     exceeds 256, parts of the tree get truncated.
  745.     With /MI, you can change that maximum number of colors
  746.     to something other than 256.
  747.     If you change it to a number larger than 256, then the palette
  748.     will not be reduced to 256 colors until DTA is done scanning
  749.     pictures.
  750.     This can result in a nicer palette, but it uses more
  751.     memory.  I've had some nice results using "/mi2048".
  752.  
  753.  Rel 1.7b (04/01/92)
  754.   o Rel. 1.7 was missing a last-minute .FLI bug fix and
  755.     a document update or two.
  756.  
  757.  Rel 1.7 (03/31/92)
  758.   o Reads 256-color PCX files.
  759.   o Reads and writes 16, 24, and 32-bit TGA files, compressed
  760.     or uncompressed.
  761.     The default is compressed TGA-24.  /B16 selects 16-bit,
  762.     /B32 selects 32-bit.  /NC selects no rle compression.
  763.     Dithering works for TGA-16 files... But if you use ordered
  764.     dithering, DTA ignores any 'strength' value and uses a
  765.     default (because TGA-16 color reduction is regular).
  766.   o When scanning for a palette, it's a lot faster than before
  767.     when reading 256-color pictures.
  768.   o Fixed EMS bugs.  Added support for XMS.
  769.   o Added /332 (3/3/2 palette) option
  770.     (If you use ordered dithering, DTA ignores any supplies
  771.     'strength' value and uses a default).
  772.   o Added /NM (no-remapping) option.  When reading 8-bit
  773.     colormapped files, this tells DTA to use the original
  774.     palette that's included in the file instead of creating
  775.     a new palette from the colors in the picture, and to skip
  776.     re-mapping the picture to the palette.
  777.     If you're creating an .FLI from a bunch of .GIFs or .PCXs,
  778.     then DTA will use the palette from the first input file,
  779.     and it will assume that all of the pictures use the same
  780.     palette.  This will result in slightly better-looking output,
  781.     and DTA will generate the .FLI *MUCH* faster.
  782.     If these files do not use the same palette, then do not
  783.     use this option.
  784.     /NM does not work with any sort of dithering, frame-averaging,
  785.     or anything else that requires fiddling with colors.
  786.     If you're converting .PCX to .GIF, then the single palette
  787.     restriction does not apply...
  788.  
  789.  Rel 1.6 (01/25/92)
  790.   o Can write uncompressed Targa-16 files (use the /B16 switch).
  791.   o Can read compressed and uncompressed Targa-16 files (like
  792.     those you can produce with POLYRAY).
  793.   o Added /M option, which causes the palette tree-reduction
  794.     routine to prune the most popular branches instead of
  795.     least popular.  The resulting palette should be biased
  796.     a bit more toward detail in a picture instead of smoothly
  797.     shaded areas.
  798.   o Added /L option, which allows you to set the initial
  799.     (pre-reduction, that is) color resolution for one or
  800.     more of the color components (r,g,b) to something other
  801.     than the default 6 bits.  It doesn't make sense to set
  802.     it higher than 6 bits, since that's the most VGA can display.
  803.     But you could, for example, tell DTA to use fewer bits for
  804.     green and blue so that the reds get more representation,
  805.     like so:
  806.      dta *.tga /lb2 /lg3
  807.     (that sets the blue resolution to 2 bits and the green
  808.     resolution to 3 bits).
  809.   o When averaging pictures, DTA used to use an equal percentage
  810.     of each of the original pictures.  That's still the default,
  811.     but with the /E option, you can change this.  /E lets you
  812.     specify two numbers: (a) the amount of weight to give the
  813.     first picture, and (b) how much to increment that weight
  814.     for each successive picture.  So, assuming you start with
  815.     three TGA files, if you use this command:
  816.      dta *.tga /a5 /e2;1 /fg
  817.     the first frame will get a weight of 2, the second will get
  818.     3, and the third will get 4.  Which means the resulting
  819.     GIF file will be made up 22% from the first picture, 33%
  820.     from the second, 44% from the third.
  821.     This can be used with /t (trail) as well as /a (average).
  822.     The increment number can be negative... if you want
  823.     the first picture to stand out more than the others.
  824.     The default for the initial weight is 1.  The default
  825.     for the increment is 0.  If you use /e without specifying
  826.     an increment, then the increment is set to 1.
  827.     If you don't specify either number, then both numbers are
  828.     set to 1.
  829.   o Fixed a bug in averaging GIF files.
  830.   o When creating a new TGA file, DTA forgot to use the resolution
  831.     of the input file like it does with GIF files.  Fixed.
  832.   o Can now ignore comments in TGA files properly.
  833.   o When creating GIF files, DTA now saves at the same
  834.     time it performs the mapping step, instead of saving to
  835.     a buffer and saving it at the end.
  836.     For pictures that would require virtual memory (bigger
  837.     than 320x200), this'll save some time.
  838.   o Added 640x400 resolution for low-end SVGA.
  839.  
  840.  Rel 1.5f (12/13/91)
  841.   o DTA can now read IMG files created by the Stephen Coy's
  842.     Vivid raytracer.
  843.   o Speeded up some input functions that were slowed down
  844.     because of some recently added features.
  845.   o Another probably unsuccessful attempt to fix the same bug
  846.     that 1.5d was supposed to fix.
  847.   o Fixed a bug in dithering (sometimes DTA wouldn't dither
  848.     the whole picture).
  849.   o DTA wasn't deleting a temporary file that it sometimes
  850.     creates.  Now it does.
  851.  
  852.  Rel 1.5e (11/24/91)
  853.   o DTA can now read GIF files as well as TGAs.  GIF87 only,
  854.     no interlacing allowed.
  855.   o Added a /V (verbose) command line option.  If you
  856.     specify this, DTA will tell you exactly how many
  857.     bytes each frame in an animation take up.
  858.   o Added the /W option, which forces DTA to use the
  859.     SVGA-type compression method, even if generating
  860.     a 320x200 .FLI.
  861.   o By the way the fix in 1.5d didn't help.  However, the
  862.     problem is pretty rare.  Maybe next time.
  863.  Rel 1.5d (11/18/91)
  864.   o Hopefully fixed a bug that caused problems with Trilobyte's
  865.     PLAY program.
  866.  Rel 1.5c (11/11/91)
  867.   o Attempting to support 800x600, 1024x768, and 1280x1024
  868.     SVGA resolutions.  Note: This is completely untested.
  869.     I haven't the foggiest idea if it works or not.
  870.  Rel 1.5b (11/09/91)
  871.   o Added "expansion" feature, which inserts averaged frames
  872.     between regular frames.
  873.   o Fixed some bugs in some weird combinations of 3d, "pingpong",
  874.     and "trail".
  875.  
  876.  Rel 1.5 (11/05/91)
  877.   o Ordered dithering
  878.   o VGA "mode x" .FLI resolutions
  879.   o fixed a bug in 320x200 delta encoding
  880.     which would sometimes cause animations to crash
  881.   o "averaging" and "trailing" (where individual frames are
  882.     created by averaging the colors across multiple input
  883.     files).  The difference between "averaging" and "trailing" is:
  884.      If you run an "average" of 2 on 10 .TGAs, frame 1 will be
  885.     an average of files 1 and 2, frame 2 an average of files 3
  886.     and 4, and so on.
  887.      If you do a "trail" of 2 on 10 .TGAs,
  888.     then frame 1 will be an average of 1 and 2, frame 2 an average
  889.     of files 2 and 3, frame 3 an average of files 3 and 4, and
  890.     so on.
  891.   o Red/blue-type 3d
  892.   o TGA output (pretty useless unless you're also averaging
  893.     input files or creating 3d images).  DTA does not compress
  894.     TGAs just yet.
  895.   o Removed .PCX output option.
  896.  
  897.  Rel 1.4 TEST 2 (10/12/91)
  898.   o DTA can now read compressed .TGAs.
  899.   o DTA can new create .GIFs or .PCXs.
  900.   o Before 1.4, DTA would give up on compressing a frame if the
  901.     compressed version required more than about 64K to store.
  902.     This was fine for 320x200 animations, where an uncompressed
  903.     frame only requires 64K anyway, but it left something to
  904.     be desired for 640x480 animations, where an uncompressed
  905.     frame takes up about 300K.
  906.     Now, 640x480 frames will be compressed unless the compressed
  907.     version takes up more than about 300K.
  908.  Rel 1.3c (09/14/31) (second bug fix)
  909.   o .MAP files were missing carriage returns between
  910.     lines.
  911.  Rel 1.3b (09/13/31) (bugfix release)
  912.   o Fixed bugs from the disastrous Rel. 1.3
  913.     (including 640x480 .FLIs)
  914.   o Big speed increase in palette creation
  915.  
  916.  Rel 1.3 (09/03/91)
  917.   o 640x480 .FLIs
  918.   o Better .FLI compression.
  919.   o In pre-1.3, the animation was stored in a temporary file,
  920.     then at the end a new file was created with the .FLI header,
  921.     and then the temporary file was copied onto the end of that.
  922.     Now, only one file is used to store the animation, and the
  923.     header gets modified at the end of the process.
  924.   o Frame #1 is now stored in a temporary file so that it doesn't
  925.     need to be recreated for the "ring frame".
  926.   o Added /G32 option for creating 32-level grayscale animations
  927.     for laptops.
  928.   o Fixed some bugs.
  929.  
  930.  Rel 1.2 (08/06/91)
  931.   o Added support for exit codes returned by LHA 2.13...
  932.     If LHA returns a non-zero exit code, DTA will abort.
  933.   o If you hit the escape key while DTA is running,
  934.     DTA will abort as soon as it's done processing
  935.     an input file.
  936.   o Changed the way input files are sorted.
  937.   o Added /p (pingpong) option.  (makes animation go in
  938.     0-1-2-3-4-3-2-1-0 order instead of 0-1-2-3-4-0).
  939.   o Added support for lists of files to process.
  940.     Tell DTA that a file is a list by preceding the filename
  941.     by an "@" character.  A list file may contain
  942.     the names of .TGA files or .LZH files.  You can't put
  943.     the name of another list file in a list file.
  944.   o Will now clip .TGA files with a resolution greater than
  945.     320x200 instead of choking on them.
  946.   o Added /O (sort order) option.  When DTA has to sort filenames,
  947.     like when you use a wildcards or when you just give the name
  948.     of an .LZH file, "/O+" (the default) will tell DTA to sort
  949.     in ascending order, "/O-" in descending order.
  950.     This option is positional... it will only affect files
  951.     specified AFTER the option on the DTA command line.
  952.     You can use this more than once on a DTA command line.
  953.  
  954.  Rel 1.1 (07/15/91)
  955.   o Can now extract .TGA files from inside of .LZH files.
  956.     (by shelling to LHA.EXE)  Takes longer, but can save plenty
  957.     of disk space.
  958.   o Added /s (to specify playing speed).
  959.   o Doesn't choke on truncated .TGA files any more.
  960.   o Rewrote some I/O routines so scanning palettes is quicker.
  961.