home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / xpdf-06.zip / xfree86 / doc / Xpdf-0.6 / CHANGES < prev    next >
Text File  |  1996-11-13  |  8KB  |  179 lines

  1. 0.2 (95-dec-12)
  2. ---------------
  3. First public release.
  4.  
  5.  
  6. 0.3 (96-jan-13)
  7. ---------------
  8. LZW patent workaround.
  9. Implemented inline images.
  10. Fixed (mostly) disjoint polygon fills.
  11. Added remote server stuff.
  12. Added page number on command line.
  13. Fixed problem with font encodings which caused character misalignment.
  14. Fixed inverted CCITT decoding and inverted image mask drawing.
  15. Now compiles under gcc 2.7.x (ignore those stupid 'unused parameter'
  16.   warnings).
  17. Many minor bug fixes and optimizations.
  18.  
  19.  
  20. 0.4 (96-apr-24)
  21. ---------------
  22. Implemented DCT filter.
  23. Implemented PostScript output; wrote pdftops program.
  24. Implemented links.
  25. Implemented font rotation -- I was wrong: X11R6 servers *do* support
  26.   font rotation (by specifying a matrix in place of a size).
  27. Added bindings for Home/End, Page Up/Down, arrow keys.
  28. Added initialZoom resource and -z option.
  29. Added geometry resource and -g option.
  30. Fixed image size off-by-one bug.
  31. Fixed bug where page content is reference to an array of streams.
  32. Cleaned up uninitialized variables which were causing random problems
  33.   on various platforms.
  34. Manually skip whitespace before calling atoi() for startxref.
  35. Replaced calls to XrmCombineFileDatabase() with calls to
  36.   XrmGetFileDatabase() and XrmMergeDatabases() so it will work under
  37.   older versions of X.
  38. Fixed problem with reading multiple xref tables in updated PDF files.
  39. Check for encryption and print appropriate error message.
  40. Rudimentary dithering of images.
  41. Fixed bug in CCITTFax filter (pass mode followed by horizontal mode).
  42. Optimized drawImage() and drawImageMask().
  43. Changed several things to ease porting:
  44.   - changed '__inline' to 'inline' (to adhere to the ANSI standard)
  45.   - surrounded interface/implementation pragmas with #ifdef _GNUC__
  46.   - got rid of empty array initializer lists
  47.   - moved Operator type definition from Gfx.cc to Gfx.h
  48.   - renamed String, uint, etc.
  49.   - ability to uncompress to file (NO_POPEN and USE_GZIP flags)
  50.   - added definitions of XK_Page_Up/Down and XPointer for old versions
  51.     of X
  52. For VMS port:
  53.   - use correct Xdefaults name for VMS, get rid of ltkGetHomeDir()
  54.   - added '#include <stddef.h>' before all X includes
  55.   - renamed files with multiple periods in their names
  56. Fixed window resizing infinite oscillation bug.
  57. Fixed problem with string-type (as opposed to stream-type) indexed
  58.   color space lookup tables (which are used in inline images).
  59. If an X font is not found, try smaller and then larger sizes (this is
  60.   useful for old or broken X servers which can't scale bitmap fonts).
  61. Added -rgb (color cube size) option.
  62. Various minor bug fixes.
  63.  
  64.  
  65. 0.5 (96-may-23)
  66. ---------------
  67. Fixed bug in LTKWindow which broke the remote server mode.
  68. Fixed PostScript output:
  69.   - doesn't seg fault if file is unwritable.
  70.   - incorrect DSC comment - need colon in '%%Page:'.
  71.   - use 'imagemask' command for masks.
  72.   - output filters in the correct order.
  73.   - Stream::isBinary() checks the next-to-bottom, not top, stream.
  74.   - if page width > height, rotate it 90 degrees.
  75.   - if page is larger than paper size, scale it down.
  76. Set default MediaBox to 8.5" x 11" to deal with non-compliant PDF
  77.   files which don't specify a MediaBox.
  78. Added DEBUG_MEM stuff in gmem.c and gmempp.cc.
  79. Fixed memory leaks:
  80.   - LTKWindow didn't delete the LTKBox.
  81.   - LinkAction needs a virtual destructor.
  82. Use $(RANLIB) variable in goo/Makefile and ltk/Makefile.
  83. Allocate image data after calling XCreateImage, using
  84.   image->bytes_per_line -- works in 24-bit mode now.
  85. DCTStream rounds width of rowBuf lines up to the next multiple of
  86.   mcuWidth, so last MCU doesn't run off end of buffer.
  87. Increase size of block (from 255 to 1024 bytes) read at end of file to
  88.   search for 'startxref'.
  89. Skip past garbage at start of file, look for '%PDF'.
  90. Moved more compiler options out of Makefiles into Makefile.config.
  91. Top-level Makefile uses '$(MAKE)' instead of 'make' for making
  92.   subdirectories.
  93. Space/PageDown/Next and Backspace/PageUp/Previous now moves to
  94.   next/previous page if already scrolled to bottom/top of current
  95.   page.
  96.  
  97.  
  98. 0.5a (96-jul-09)
  99. ----------------
  100. [not a public release]
  101. For PDF 1.2 (a.k.a. Amber, a.k.a. Acrobat 3) support:
  102.   - look for trailer after first xref instead of at end of file.
  103. Deal with font subsets by converting character names of the form
  104.   'Cnnnn' to the appropriate character from the standard encoding.
  105. Extract encoding from embedded Type 1 fonts.
  106. Kludge to fill one-pixel thick polygons.
  107. Changed X font encoding to use endash for hyphen (gets rid of too-long
  108.   hyphens).
  109. Handle Resources key in Pages dictionaries (needed for pstoedit
  110.   output).
  111. Fix comment handling in Parser (needed for pstoedit output).
  112. Move Bezier curve conversion from GfxState to XOutputDev; look at
  113.   flatness parameter in GfxState.
  114. Change all of the path functions in XOutputDev (stroke, fill, clip) to
  115.   use the same path transformation/conversion function.
  116. Rewrote PostScript output driver as a subclass of OutputDev; removed
  117.   duplicated code (ps_ functions) from Gfx.
  118. Fixed bug in xref code with small (< 1024 bytes) PDF files.
  119. Implemented BX/EX operators.
  120. Added PDFDoc class.
  121.  
  122.  
  123. 0.6 (96-nov-12)
  124. ---------------
  125. Add support for PostScript output to stdout (-) and to a command
  126.   (|lpr); added -ps option and psFile resource.
  127. Decryption is implemented but not included in the distribution due to
  128.   legal restrictions: the decryption algorithm is a trade secret of
  129.   RSA, Inc., and the U.S.A. still has bogus export controls on
  130.   cryptography software.
  131. Added .xpdfrc config file:
  132.   - Added fontmap parameter: user can map PDF font names to X fonts.
  133.   - Added fontpath parameter: search for Type 1 font if encoding is
  134.     not in PDF file.
  135. Incremental display: display is updated after every 200 commands.
  136. Added forward and backward by-10-page buttons.
  137. Links:
  138.   - Implement links with "Launch" actions that point to PDF files.
  139.   - Draw borders around links.
  140.   - Handle links with named destinations.
  141.   - GoToR links specify a page number instead of a page reference.
  142. Optimizations:
  143.   - Rewrote Stream to use buffering, and added lookChar() functions;
  144.     rewrote Lexer to take advantage of this.
  145.   - Use hash tables for name->code mapping in font encodings.
  146.   - Made XOutputDev::doCurve() iterative, changed /2 to *0.5, and
  147.     changed the flatness test.
  148. Added file name to window title.
  149. Implemented RunLength filter.
  150. Implemented forms.
  151. Convert ObjType to an enum.
  152. Changed isDict("Pages") to isDict() (in Catalog.cc) to deal with
  153.   incorrect PDF files.
  154. Changed color selection so that very pale colors don't map to white.
  155. Fixed bug in CCITTFax filter (multiple make-up codes).
  156. In GString::clear(): need to set length to 0 before calling resize().
  157. Base initial window size on first displayed page, not page 1; deal
  158.   correctly with rotated pages.
  159. Added ltkGetIntResource() and LTKApp::getIntResource().
  160. PostScript output fixes:
  161.   - Escape backslashes in strings.
  162.   - When doing ASCII85 encoding, keep both chars of EOF marker ('~>')
  163.     on same line.
  164.   - Add extra line '%-EOD-' after image data streams; call wrapper
  165.     functions for image and imagemask which look for this line -- this
  166.     should fix the 'too much data in stream' bug.
  167.   - Font tags can be reused for different fonts on different pages --
  168.     so use font object reference (number/generation) instead.
  169. Initialize character widths to zero (this caused crashes on OSF/1).
  170. Handle image masks which go outside of pixmap.
  171. Makefile.config changes:
  172.   - Remove -o in C++ compile rule.
  173.   - Add $(AR) variable.
  174. Code which read char widths from font dictionary read all but the last
  175.   width.
  176. Add 'return 0;' to main() in xpdf and pdftops.
  177. Allow fonts to use StandardEncoding.
  178. Convert man pages to VMS help files.
  179.