home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / converters / pdftops_1 / CHANGES next >
Text File  |  1996-05-23  |  4KB  |  95 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 buf 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. 0.5 (96-may-23)
  65. ---------------
  66. Fixed bug in LTKWindow which broke the remote server mode.
  67. Fixed PostScript output:
  68.   - doesn't seg fault if file is unwritable.
  69.   - incorrect DSC comment - need colon in '%%Page:'.
  70.   - use 'imagemask' command for masks.
  71.   - output filters in the correct order.
  72.   - Stream::isBinary() checks the next-to-bottom, not top, stream.
  73.   - if page width > height, rotate it 90 degrees.
  74.   - if page is larger than paper size, scale it down.
  75. Set default MediaBox to 8.5" x 11" to deal with non-compliant PDF
  76.   files which don't specify a MediaBox.
  77. Added DEBUG_MEM stuff in gmem.c and gmempp.cc.
  78. Fixed memory leaks:
  79.   - LTKWindow didn't delete the LTKBox.
  80.   - LinkAction needs a virtual destructor.
  81. Use $(RANLIB) variable in goo/Makefile and ltk/Makefile.
  82. Allocate image data after calling XCreateImage, using
  83.   image->bytes_per_line -- works in 24-bit mode now.
  84. DCTStream rounds width of rowBuf lines up to the next multiple of
  85.   mcuWidth, so last MCU doesn't run off end of buffer.
  86. Increase size of block (from 255 to 1024 bytes) read at end of file to
  87.   search for 'startxref'.
  88. Skip past garbage at start of file, look for '%PDF'.
  89. Moved more compiler options out of Makefiles into Makefile.config.
  90. Top-level Makefile uses '$(MAKE)' instead of 'make' for making
  91.   subdirectories.
  92. Space/PageDown/Next and Backspace/PageUp/Previous now moves to
  93.   next/previous page if already scrolled to bottom/top of current
  94.   page.
  95.