home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / clipart / gs22.zip / HISTORY.DOC < prev    next >
Text File  |  1991-05-30  |  47KB  |  1,230 lines

  1.    Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, history.doc, describes the changes in the various releases of
  23. Ghostscript.
  24.  
  25. For an overview of Ghostscript and a list of the documentation files, see
  26. README.
  27.  
  28. Version 2.2 (6/1/91)
  29. ===========
  30.  
  31. The purpose of this release is to add save/restore, and a few
  32. miscellaneous Level 2 P*stScr*pt features such as undef.  It also includes
  33. major improvements in graphics quality and in handling of high-resolution
  34. printers.
  35.  
  36. Procedures
  37. ----------
  38.  
  39. Changes the version numbering to M.mpp rather than M.m.p, so that
  40. `version' can be a real number for those programs that insist on it.
  41.  
  42. Renames ghost.ps as gs_init.ps, gfonts.ps as gs_fonts.ps, and statusd.ps
  43. as gs_statd.ps.  The initialization files now all are named gs_*.ps.
  44.  
  45. Renames gdevs.{c,h,tl} as gconfig.{c,h,tl}.
  46.  
  47. Changes the relevant makefiles and command files so that a single build
  48. can contain several drivers that share code, e.g., the Epson driver and
  49. the DeskJet driver.
  50.  
  51. Changes gs_init.ps so it relies on an external gconfig.ps file rather than
  52. making a specific test for the presence of Level 2 features.
  53.  
  54. Adds an entry for uglyr.gsf to the makefile.
  55.  
  56. Removes the distinction between CCA and CCNA, since most of the files now
  57. contain constructs that require non-ANSI compilation on MS-DOS platforms.
  58.  
  59. Adds a `man' page for the ansi2knr utility.
  60.  
  61. Changes the documentation (use.doc) to show how to use -sDEVICE=<device>,
  62. or the selectdevice procedure, to select devices by name.
  63.  
  64. Adds DEVICE_DEVS to the makefiles (analogous to DEVICES and DEVICE_OBJS).
  65. This finally makes the make procedure fully automatic.
  66.  
  67. Adds the name of the initialization file (gs_init.ps) as a
  68. platform-specific makefile parameter, GS_INIT.
  69.  
  70. Removes the test program gt.{c,tr} from the fileset, since it is not
  71. useful to users.
  72.  
  73. Moves the Symbol encoding vector to a separate file (symbol_e.ps), from
  74. which it is loaded when first used.
  75.  
  76. Changes the error handler so it can handle errors that occur while reading
  77. the initialization files.
  78.  
  79. Extends ansi2knr so it can handle `void' and `...' in parameter lists.
  80.  
  81. Adds quit.ps to the set of installed files.
  82.  
  83. MS-DOS-specific changes
  84. - - - - - - - - - - - -
  85.  
  86. Adds the VGA and BGI drivers to the standard MS-DOS configuration, and
  87. makes VGA the default.
  88.  
  89. Adds a `+' and a newline at the end of gs.tr, to avoid problems with file
  90. transfer programs or editors that add a newline at the end of files.
  91.  
  92. Changes the name of msdos.mak to turboc.mak, and creates a new tbcplus.mak
  93. makefile for use with Turbo C++ and Borland C++.
  94.  
  95. Changes the extension of the loader response files from .tl to .tr.
  96.  
  97. Changes the default search path from c:/ghost and c:/ghost/fonts to c:/gs
  98. and c:/gs/fonts.
  99.  
  100. Changes the directory separator from `|' back to ';', since it appears
  101. that DOS can handle a ; in a command line if it is prefixed with \.
  102.  
  103. Unix-specific changes
  104. - - - - - - - - - - -
  105.  
  106. Changes the uses of install in unixtail.mak so they only install a single
  107. file at a time, which is all that the standard Unix install allows.
  108.  
  109. Removes the duplicate files (README/readme, LICENSE/license,
  110. COPYING/copying, Fontmap/fontmap).
  111.  
  112. Changes the ld flags from LDPLAT to LDFLAGS.
  113.  
  114. Adds XCFLAGS and XLDFLAGS.  These are concatenated with CFLAGS and LDFLAGS
  115. respectively.  The intention is that they be set from the `make' command
  116. line if desired.
  117.  
  118. VMS-specific changes
  119. - - - - - - - - - -
  120.  
  121. Repairs the omission of ZPACKED from the VMS build lists.
  122.  
  123. Drivers
  124. -------
  125.  
  126. Fixes bugs:
  127.     - The SunView driver produced semi-garbage on little-endian
  128. platforms (Sun-386i) because it didn't swap the bit order.
  129.     - The X driver would dump core if it couldn't open the display and
  130. the DISPLAY environment variable wasn't set.
  131.     - The X driver relied on white = 0, black = ones in a couple of
  132. places;
  133.     - The X driver would return an error, instead of clipping, if
  134. asked to display outside the window.
  135.     - The X driver would create inappropriately sized windows, because
  136. it believed the server's report of the screen resolution.
  137.  
  138. Adds Fran Taylor's Private Eye driver to gdevs.mak and the fileset (not
  139. supported by Aladdin Enterprises).
  140.  
  141. Adds Neil Ostroff's TruFax driver to gdevs.mak and the fileset (not
  142. supported by Aladdin Enterprises).
  143.  
  144. Makes the scratch file template for the printer drivers a per-platform
  145. quantity (gp_scratch_file_name_template).  Puts the default scratch files
  146. for Unix in /usr/tmp rather than /tmp.
  147.  
  148. Changes the SunView driver to prevent the Ghostscript window from being
  149. destroyed (which badly confuses the interpreter).
  150.  
  151. Extends the Epson driver to handle a variety of print densities in both X
  152. and Y, to handle 24-pin as well as 8-pin graphics, and to allow optional
  153. specification of default density in the makefile (gdevs.mak).
  154.  
  155. Refactors the printer drivers so that a single driver handles both DeskJet
  156. and LaserJet.  Adds LaserJet drivers that use the new compression modes on
  157. the LJ IId/IIp and LJ III.
  158.  
  159. Changes all the printer drivers to use band lists rather than bitmap
  160. paging as the buffering method.  (The individual drivers need only a
  161. one-line change to replace mem_copy_scan_lines with
  162. gdev_prn_copy_scan_lines with a different argument.)
  163.  
  164. Adds the halftone phase as additional arguments to tile_rectangle and
  165. tile_trapezoid.
  166.  
  167. Adds an entirely new and much simpler PaintJet driver, using the new band
  168. list interface.
  169.  
  170. Adds margin information to the device structure.  This is currently only
  171. relevant for printer devices.
  172.  
  173. Adds BGIPATH and BGIUSER environment variables, allowing additional
  174. control of the BGI driver.
  175.  
  176. Changes the x/y_pixels_per_inch member of the device structure from int to
  177. float.
  178.  
  179. Fonts
  180. -----
  181.  
  182. Patches gs_fonts.ps so definefont will add an isFixedPitch entry to
  183. FontInfo if there isn't one there.
  184.  
  185. Removes the old "type 7 path" encoding code from gs_fonts.ps.
  186.  
  187. Changes bdftops so it puts isFixedWidth and ItalicAngle entries in the
  188. FontInfo dictionary of the fonts it creates, since some P*stScr*pt
  189. programs rely on this.
  190.  
  191. Changes bdftops so it synthesizes as many missing characters as possible
  192. out of the ones that are there (in particular: synthesizes accents out of
  193. punctuation marks, and accented characters using seac.)  The results
  194. aren't all that good, but they're a lot better than having characters
  195. missing out of the font.
  196.  
  197. Utilities
  198. ---------
  199.  
  200. Adds a pfbtops utility for converting .PFB fonts to standard Ghostscript
  201. fonts.
  202.  
  203. Fixes bugs:
  204.     - ps2image didn't reset things properly between pages for
  205. multi-page documents.
  206.  
  207. Interpreter
  208. -----------
  209.  
  210. Makes Ghostscript recognize `-' alone as meaning that it should read from
  211. standard input as though it were a file.  This allows Ghostscript to
  212. accept a pipe as input.
  213.  
  214. Fixes bugs:
  215.     - seac in type1addpath used the current font's encoding, not
  216. StandardEncoding.
  217.     - type1decryptfile (eexec) didn't recognize binary (as opposed to
  218. hex) representation.
  219.     - Mentioning a name whose value was a no-access object caused an
  220. invalidaccess error.
  221.     - There was a bogus definition of `run' in zfile.c.
  222.     - The interpreter didn't handle end-of-file on stdin properly.
  223.     - Real numbers with an 'e' or 'E' but no decimal point were not
  224. recognized.
  225.     - On MS-DOS systems, inside strings, \ followed by a newline was
  226. not discarded properly.
  227.     - On MS-DOS systems, the long unsigned divide routine sometimes
  228. gave incorrect answers.  Among other things, this caused alternate-radix
  229. numbers sometimes to crash the interpreter.
  230.     - cvrs didn't do the right thing about reals or negative integers.
  231.     - .echo.mode was being reset with def instead of store, and was
  232. defined in systemdict rather than userdict.
  233.     - setgray and settransfer didn't interact properly.
  234.     - 16#80000000 was being interpreted as a signed integer (and
  235. converted to a real) rather than an unsigned one.
  236.     - atan returned 0 sometimes when it should have returned 180.
  237.     - currentcmykcolor was defined wrong.
  238.  
  239. Removes the filename operator, since no standard Ghostscript code used it,
  240. and it caused problems with some P*stScr*pt files.
  241.  
  242. Implements new operators: filenameforall, selectfont (as a procedure),
  243. stringmatch, undef.
  244.  
  245. Adds new standard procedures: selectdevice.
  246.  
  247. For MS-DOS, requires that the operand and execution stacks be located in
  248. the data segment, and uses short pointers to address them.  This produces
  249. significantly smaller and faster code.  (These changes are not visible to
  250. users or library clients.)
  251.  
  252. Changes the assignment of attribute bits, and adds new bits for
  253. save/restore and the garbage collector.  Changes many of the macros in
  254. store.h to support save/restore.  (These changes are not visible to users
  255. or library clients.)  Implements save and restore.
  256.  
  257. Moves type names from gs_init.ps to ghost.h and ztype.c.
  258.  
  259. Moves error names from gs_init.ps to errors.h and iinit.c.
  260.  
  261. Introduces gp.h as a documented interface to the platform-specific files.
  262.  
  263. Adds the -- switch, which allows Ghostscript programs to take arguments
  264. from the command line.
  265.  
  266. Changes many uses of the name `name' to something else, to avoid upsetting
  267. the Microsoft C compiler.
  268.  
  269. Really implements packed arrays -- they took the same amount of space as
  270. ordinary arrays in previous versions.
  271.  
  272. Changes exitserver in serverdict so that it just clears the stacks.  (This
  273. isn't the correct fix, but it will do as a workaround.)
  274.  
  275. Makes many miscellaneous small changes to pacify various compilers.
  276.  
  277. Changes gs_fonts.ps so that when "quiet" mode is selected (-q switch),
  278. Ghostscript doesn't print anything when loading fonts or when substituting
  279. for undefined characters.
  280.  
  281. Defines the name consisting of just a control-D as a no-op, because some
  282. P*stScr*pt-generating applications put control-Ds in their output.
  283.  
  284. Implements halftone phase (sethalftonephase and currenthalftonephase
  285. operators).
  286.  
  287. Removes the -E switch, since it is no longer useful.
  288.  
  289. Changes the -w and -h switches to a single -g (geometry) switch, with
  290. usage -g<width>x<height>.  Makes the -h switch, and a new -? switch, print
  291. usage help.
  292.  
  293. Implements correct handling of stack overflow errors (makes an array out
  294. of the contents of the overflowing stack, and resets the stack, before
  295. invoking the error handler).
  296.  
  297. Adds t_oparray (`operators' defined as procedures) and the makeoperator
  298. operator.  This is so that programs like the Distillery that rely on all
  299. operators being bound by `bind' will work properly.
  300.  
  301. Adds a new NOPAUSE flag to suppress the prompt and pause at copypage and
  302. showpage.
  303.  
  304. Library
  305. -------
  306.  
  307. Fixes bugs:
  308.     - gs_type1_interpret didn't store the encryption state or the skip
  309. count before returning to let the client handle a seac or an endchar in
  310. the middle of a seac.
  311.     - The definition of the Type 1 operator ce_testadd was based on
  312. wrong information; the operator takes only 2 operands and does something
  313. unknown.
  314.     - mem_true24_copy_mono wasn't incrementing the destination pointer
  315. if the color was transparent, leading to garbled characters.
  316.     - gx_lookup_fm_pair would sometimes look at one entry beyond the
  317. end of the cached font/matrix pair area.  (This probably had no practical
  318. effect.)
  319.     - gs_type1_interpret didn't save the current point when returning
  320. to the client for a callothersubr, causing some characters to be rendered
  321. displaced (such as some of the chess pieces in chess.ps).
  322.     - gs_setgray, gs_sethsbcolor, gs_setrgbcolor, gs_setflat, and
  323. gs_setlinewidth gave errors for out-of-range operands rather than forcing
  324. them into range.
  325.     - Transfer functions were not actually supported.
  326.     - The area fill algorithm failed on certain complex paths.
  327.     - The current point was sometimes defined when a BuildChar
  328. procedure was called.
  329.     - Stroking a degenerate line didn't display anything for round
  330. caps or joins.
  331.     - If the ends of a curve had exactly the same X coordinate, the
  332. curve sometimes wouldn't be displayed.
  333.     - Very thin lines that went outside the clipping region would
  334. sometimes be displayed as dashed, or not at all.
  335.     - The translation in a FontMatrix was ignored.
  336.     - Very wide, shallow lines would color extraneous pixels when
  337. using bevel or miter joins.
  338.     - Dashed lines didn't join properly at the beginning of a closed
  339. path.
  340.     - 0-degree arcs didn't add the appropriate line (possibly
  341. degenerate) to the path.
  342.     - gs_type1_interpret didn't reset the callsubr stack when starting
  343. the base character of a seac, which caused confusion if the accent's
  344. endchar fell inside a Subr.
  345.     - Non-monochrome memory memory devices weren't checking the
  346. arguments of the drawing procedures properly.
  347.     - The initial clipping rectangle for memory devices was being
  348. computed wrong.
  349.     - Null devices had a semi-infinite clipping rectangle instead of
  350. an empty one.
  351.     - gs_setlinewidth was treating negative arguments as zero, instead
  352. of taking the absolute value.
  353.     - imagemask with a dithered color used a solid color rather than
  354. the dithered one.
  355.  
  356. Tweaks the area fill and image rendering algorithms to be a little more
  357. liberal with paint when being used to render characters.
  358.  
  359. Changes the name of the 8-bit mapped color memory device from
  360. mem_mapped_color_device to mem_mapped8_color_device.
  361.  
  362. Changes the memory devices so that on little-endian platforms, they can
  363. store the bytes within a word in either order.  (Little-endian order
  364. allows efficient 32-bit updating, big-endian is required when displaying
  365. or writing to a printer or a file.)
  366.  
  367. Implements halftone phase.
  368.  
  369. Replaces the trapezoid fill algorithm with a much more accurate one
  370. inspired by a contribution from Paul Haeberli.  This also changes the
  371. graphics convention back to filling only pixels whose center falls within
  372. the region to be filled.
  373.  
  374. Changes the character cache to allocate headers and bits contiguously out
  375. of a single ring buffer.
  376.  
  377. Changes gs_imagemask and gs_imagemask_init to take a thickness adjustment
  378. parameter.
  379.  
  380. Changes gs_setcachedevice and gs_setcharwidth to take the graphics state
  381. as a parameter.
  382.  
  383. Renames gx_device_memory_bitmap_size as gdev_mem_bitmap_size,
  384. mem_copy_scan_lines as gdev_mem_copy_scan_lines, and
  385. mem_bytes_per_scan_line as gdev_mem_bytes_per_scan_line.
  386.  
  387. Version 2.1.1 (1/15/91)
  388. =============
  389.  
  390. This is a sub-release distributed to fix a few early bugs in 2.1, just in
  391. time for the new GNU master tape.
  392.  
  393. Build procedures
  394. ----------------
  395.  
  396. Removes all of the (undebugged) Level 2 code from the fileset, as well as
  397. the (unused) file gdevvga.c.
  398.  
  399. Changes the tar file so that the files are stored in the directory
  400. gs<version> rather than simply gs, e.g., gs211.
  401.  
  402. Interpreter
  403. -----------
  404.  
  405. Changes the scanner so that \ is recognized within strings regardless of
  406. whether the scanner is reading from a string or from a file.  This is
  407. compatible with newer P*stScr*pt interpreters, and with the newer
  408. P*stSc*pt language specification, but not with the older specification in
  409. the original PostScript Language Reference Manual.
  410.  
  411. Drivers
  412. -------
  413.  
  414. Fixes the max_value macro in gdevmem.c so that compilers won't complain
  415. about a left shift by 32.
  416.  
  417. Adds 'byte' to the list of types that gdevx.c must sidestep because header
  418. files use them.
  419.  
  420. Library
  421. -------
  422.  
  423. Changes the computation of penum->unpack in gsimage.c so as not to upset
  424. compilers that don't treat procedures and pointers to procedures as
  425. compatible types for conditional expressions.
  426.  
  427. Version 2.1 (12/31/90)
  428. ===========
  429.  
  430. This is primarily a bug fix release to clean up problems in 2.0.  It also
  431. implements a first cut at the new color operators.
  432.  
  433. Build procedures
  434. ----------------
  435.  
  436. Changes the separator for multiple directories in MS-DOS from ';' to '|',
  437. since there is no way to include a ';' in a command line.
  438.  
  439. Adds <dir>/fonts to the default search path, where <dir> is c:/ghost for
  440. MS-DOS systems and `pwd` for Unix systems.
  441.  
  442. Adds new documentation describing how to direct output to the printer.
  443.  
  444. Changes the PROCTYPE and USE8087 options in MSDOS.MAK to CPU_TYPE and
  445. FPU_TYPE.  The latter now indicates the type of FPU to generate code for,
  446. if any.
  447.  
  448. Drivers
  449. -------
  450.  
  451. Adds a driver for the Canon BubbleJet BJ10e.
  452.  
  453. Modifies the EGA driver to handle (non-standard) frame buffers larger than
  454. 64K.  Adds drivers for the VGA and for the EIZO MDB-10 (a 1024 x 768 frame
  455. buffer).
  456.  
  457. Changes the X driver so that it clips to the window dimensions, rather
  458. than reporting an error.
  459.  
  460. Notes that the H-P LaserJet driver, like the DeskJet driver, works under
  461. Unix as well as MS-DOS.
  462.  
  463. Adds support for 120 X DPI mode, and for the LQ-1500, to the Epson driver.
  464.  
  465. Fonts
  466. -----
  467.  
  468. Fixes bugs in bdftops:
  469.     - It was using /UniqueId instead of /UniqueID as the key for the
  470. font unique ID.  This effectively disabled the font cache.
  471.     - The definition for .notdef was bogus -- an invalid CharString.
  472.  
  473. Changes ghost.ps and gfonts.ps so that NullFont is the initial font,
  474. rather than Ugly.
  475.  
  476. Arranges things so that when attempting a font substitution, if the
  477. default font is not found, NullFont is used instead.
  478.  
  479. Extends bdftops so that if certain easily synthesized characters are
  480. missing from a font, it will attempt to synthesize them using available
  481. characters.
  482.  
  483. Interpreter
  484. -----------
  485.  
  486. Extends the -T switch to allow specifying a printf template for the
  487. arguments of the procedure being traced.
  488.  
  489. Fixes bugs:
  490.     - /0 was interpreted as equivalent to 0 (a number) rather than a
  491. literal name.
  492.     - packedarray was defined as being like array, instead of like
  493. array followed by astore.
  494.     - Many minor and harmless type mismatches (and a couple of very
  495. minor genuine bugs) were upsetting the Apollo C compiler.
  496.     - exp was incorrectly failing in certain cases with a negative
  497. first argument.
  498.     - copyscanlines incorrectly required at least 4 elements on the
  499. operand stack, although it correctly only used the top 3.
  500.     - readhexstring incorrectly read 1 byte even if the string length
  501. was zero.
  502.     - Not every place that expected an array would accept a packed
  503. array.
  504.     - Very complex paths (and infrequently other things) could produce
  505. a 'memory leak'.
  506.     - / alone would skip following whitespace and gather following
  507. characters, rather than creating an empty name.
  508.     - ghost.ps left newerror defined as true in $error, which resulted
  509. in an erroneous error report if a program executed a 'stop'.
  510.     - The definition of exitserver in serverdict didn't clear the
  511. stack.
  512.     - currentfile returned an executable file, rather than a literal
  513. one.
  514.     - setfont for Type 1 fonts didn't check the UniqueID in the font
  515. dictionary against the one in the font's Private dictionary.
  516.     - A value stored in a dictionary under the key /xxx couldn't be
  517. retrieved using the key (xxx), and vice versa.
  518.     - charpath with a Type 1 font on a string containing a 'space'
  519. would produce garbage (it released the parent path inappropriately).
  520.     - bytesavailable did not work properly for terminal input.
  521.  
  522. Changes the interface to the memory allocator so that it always takes an
  523. element size and an element count, like calloc instead of malloc (but note
  524. that alloc does *not* clear just-allocated blocks).  Gets rid of the
  525. special 'dynamic' allocation procedures.
  526.  
  527. Changes the random number operators to use a better implementation.
  528.  
  529. Changes the idiv operator so it will accept any numbers, not just
  530. integers, as arguments.  (The PostScript manual doesn't allow this, but
  531. implementations apparently do.)
  532.  
  533. Provides semi-fake but usable definitions for all of the color PostScript
  534. extensions, including a real implementation of colorimage.
  535.  
  536. No longer uses the name 'null', which is apparently reserved by Microsoft
  537. C.  Makes a number of other minor changes required to pacify the Microsoft
  538. C compiler.
  539.  
  540. Implements %statementedit and %lineedit.  (%statementedit is equivalent to
  541. %lineedit, which is wrong.)  Changes the interactive interpreter to use
  542. %statementedit.
  543.  
  544. Changes the scanner to accept null, ctrl-K (vertical tab), and ctrl-L
  545. (form feed) as whitespace.  Ctrl-L terminates a comment, null and ctrl-K
  546. do not.
  547.  
  548. Allows a literal string as the 'proc' argument(s) for image, imagemask,
  549. and colorimage.
  550.  
  551. Adds the following operators/procedures: arct, cleardictstack, deletefile,
  552. renamefile.
  553.  
  554. Defines =print as a synonym for =, for the benefit of LaserPrep.
  555.  
  556. Implements non-zero PaintType for the show operators (but not for
  557. charpath) for Type 1 fonts.
  558.  
  559. Adds the ISOLatin1Encoding encoding vector.
  560.  
  561. Renames currentcolor and setcolor as currentgscolor and setgscolor, to
  562. avoid conflict with the Level 2 PostScript names.  Removes colorhsb,
  563. colorrgb, hsbcolor, and rgbcolor.
  564.  
  565. Library
  566. -------
  567.  
  568. Fixes bugs:
  569.     - In a couple of places, a 0 was being passed as a pointer
  570. argument without casting, which confused the Microsoft C compiler.
  571.     - Image devices were not recognized properly in debugging
  572. configurations.
  573.     - Inverted-color monochrome image devices were not recognized
  574. properly.
  575.     - Images that exactly fill the drawing area rendered very slowly,
  576. because they erroneously used the general clipping algorithm.
  577.     - Images that are 1-for-1 with the device were incorrectly scaled
  578. by a factor of 8 in X.
  579.     - Rounding artifacts sometimes caused characters to be unevenly
  580. offset vertically by 1 pixel.
  581.     - Type 1 fonts that used the Flex feature resulted in garbled
  582. images.
  583.     - The show operator routines would incorrectly fill or stroke a
  584. path that existed at the time the show was started.
  585.     - setscreen truncated the cell size instead of rounding, which
  586. could produce off-by-1 anomalies.
  587.     - stroke would sometimes produce garbage (or nothing at all) for
  588. very narrow lines.
  589.     - path filling would only color the pixels whose centers fell
  590. inside the path: the Adobe specification requires coloring a pixel if any
  591. part of it falls inside the path.
  592.  
  593. Changes the Epson printer driver so that it drives the printer directly
  594. rather than writing to a file.
  595.  
  596. Changes pathbbox so that if the path is empty but there is a current
  597. point, it returns a null rectangle at the current point.
  598.  
  599. Changes gs_image_init to take an additional parameter (after bps) giving
  600. the number of samples per pixel (1, 3, or 4), and an indication of whether
  601. the samples for each pixel are together or separated (-3 or -4).
  602.  
  603. Renames the gs_image_data and gs_imagemask_data procedures as gs_image and
  604. gs_imagemask, and removes the old versions of the latter.
  605.  
  606. Adds gs_colorimage.
  607.  
  608. Replaces Snoopy's color dithering algorithm with one contributed by Paul
  609. Haeberli.
  610.  
  611. Changes gs_setgray, gs_[set]hsbcolor, and gs_[set]rgbcolor so that they
  612. coerce arguments outside the range [0..1] back into the range, instead of
  613. signalling an error.
  614.  
  615. Makes a number of minor changes required to pacify the Microsoft C
  616. compiler.
  617.  
  618. Changes gs_arcto so that if the last argument is a null pointer, the
  619. tangent points are not returned.
  620.  
  621. Removes gs_type1addpath, which is not useful.  (Clients must call
  622. gs_type1_init and gs_type1_interpret directly.)
  623.  
  624. Implements the 'seac' opcode for Type 1 fonts, allowing fonts with accented
  625. characters to display properly.
  626.  
  627. Implements the undocumented 'testadd' opcode for Type 1 fonts, which is
  628. used by some Adobe fonts.
  629.  
  630. Renames gs_currentcolor and gs_setcolor as gs_currentgscolor and
  631. gs_setgscolor.  Removes gs_colorhsb, gs_colorrgb, gs_hsbcolor, and
  632. gs_rgbcolor.
  633.  
  634. Version 2.0 (9/12/90)
  635. ===========
  636.  
  637. The main purpose of this release is to add fonts, support for multiple
  638. devices, and imaging into memory.  It also fixes a number of miscellaneous
  639. bugs.  (Unfortunately, accurate records of the bugs fixed are not
  640. available.)  The changes were so extensive that we chose to increment the
  641. major version number.
  642.  
  643. Miscellaneous
  644. -------------
  645.  
  646. Doesn't attempt to open the .MAP file on Unix systems.
  647.  
  648. Adds mention of statusd.ps to interp.doc.
  649.  
  650. Notes that Turbo C 2.0, not 1.5, is required for building the MS-DOS
  651. version.
  652.  
  653. Adds a DEVICES= line to the makefile, and allows multiple devices.
  654.  
  655. Documents, in interp.doc, the X Windows resources that Ghostscript
  656. recognizes.
  657.  
  658. Adds three PostScript masters to the fileset: chess.ps (+ cheq.ps),
  659. golfer.ps, and escher.ps.
  660.  
  661. Drivers
  662. -------
  663.  
  664. Changes the names of all the device drivers.  See gdevs.mak for the
  665. updated list.
  666.  
  667. Adds a (working) driver for SunView.
  668.  
  669. Adds drivers for the Sony NeWS frame buffer, and the Sony Microsystems
  670. NWP533 printers.  These drivers were contributed by users, so we aren't
  671. prepared to answer questions about them.
  672.  
  673. Adds a driver for the Borland Graphics Interface (BGI) for MS-DOS systems.
  674. Note that to use this driver with a non-EGA/VGA display, you need a .BGI
  675. file appropriate for your hardware.  (The Ghostscript executable includes
  676. the EGA/VGA driver.)
  677.  
  678. Adds a driver for Epson printers.  The driver has only been tested on an
  679. LX-800, and on an H-P DeskJet in FX-80 emulation mode, but may work on
  680. other models.  The driver could be adapted to work on Unix systems, but as
  681. distributed, it only works on MS-DOS systems.
  682.  
  683. Adds a driver for the Hewlett-Packard DeskJet printer.  The driver could
  684. be adapted to work on Unix systems, but as distributed, it only works on
  685. MS-DOS systems.
  686.  
  687. The X Windows driver no longer waits for the user to type a character
  688. before bringing up the initial display.
  689.  
  690. Adds information to drivers.doc describing how to change the definition of
  691. the device structure and procedure table.
  692.  
  693. Extends the tile_rectangle and tile_trapezoid driver procedures to
  694. interpret color0 = color1 = gx_no_color_index as meaning that the tile is
  695. actually colored, not a mask.
  696.  
  697. Build procedures
  698. ----------------
  699.  
  700. Changes the tar file so it puts everything in a directory called gs.
  701.  
  702. Removes the -ansi switch for gcc (this was causing problems with <math.h>
  703. on some systems).
  704.  
  705. Changes LDPLAT to the string -X, which is appropriate for most Unix
  706. systems (but not for SunOS 4.n).
  707.  
  708. Adds EXTRALIBS to the makefile, for specifying additional libraries to be
  709. linked in.
  710.  
  711. Adds a 'clean' target for 'make', to get rid of all temporary files, the
  712. binaries, and the executable.
  713.  
  714. Changes names of system-specific files from gp-xxx.c to gp_xxx.c.
  715.  
  716. Adds support for VMS (gp_vms.c and ghost.dcl).
  717.  
  718. Creates a new file gdevs.mak, and reorganizes the other makefiles, so that
  719. the choice of which device driver(s) to include is isolated in a single
  720. line in the platform-specific makefile.
  721.  
  722. Changes the standard MS-DOS makefile so it builds for 8088/86 (not 80386),
  723. with neither -DNOPRIVATE nor -DDEBUG.
  724.  
  725. Changes the name of the MS-DOS makefile from dos-ega.mak to msdos.mak, and
  726. the Unix makefiles from ux-[g]cc-x.mak to unix-[g]cc.mak.
  727.  
  728. Updates drivers.doc to describe how to add new drivers in gdevs.mak.
  729.  
  730. Removes gdevs.ps: the drivers are now responsible for specifying the size
  731. of the imaging region.
  732.  
  733. Interpreter
  734. -----------
  735.  
  736. Adds a makefile macro GS_LIB_DEFAULT and an environment variable GS_LIB to
  737. define a search path for the library (initialization and font) files, and
  738. implements the -I switch for the same purpose (replacing -sLIB=, which was
  739. never actually implemented).  See interp.doc for details.
  740.  
  741. No longer clears the operand stack between interactive inputs.  No longer
  742. prints the contents of the operand stack after every input in debug mode.
  743.  
  744. Doesn't "eat" the character that the user types to proceed after a
  745. showpage, unless it's an isolated <return>.
  746.  
  747. Changes the prompt so that it says
  748.     GS>
  749. if the operand stack is empty, or
  750.     GS<n>
  751. if there are n > 0 elements on the operand stack.
  752.  
  753. Adds -w and -h switches to the command line, equivalent to -dWIDTH= and
  754. -dHEIGHT= except that they require numeric arguments.
  755.  
  756. Adds -q (quiet startup) switch to the command line, which suppresses some
  757. initial messages and also has an effect equivalent to -dQUIET.
  758.  
  759. Fixes bugs:
  760.     - = and == caused an error on some kinds of objects if the object
  761. didn't have read access.
  762.     - cvs didn't print operator names.
  763.     - The definition of dynamic_begin in iscan.c caused the DEC VMS C
  764. compiler to produce incorrect code.
  765.     - mul didn't return a correct (real) result when multiplying a
  766. very large integer by an integer that wasn't very large.
  767.     - eq and ne didn't work on files, fonts, save objects, and some
  768. operators.
  769.     - The scanner would sometimes blow up on floating point numbers
  770. beginning with a '.'.
  771.     - flushfile didn't pop its argument from the stack.
  772.     - put and putinterval would store into a packed array.
  773.     - a few operators didn't check properly for stack underflow.
  774.     - cvrs produced wrong output for radix values greater than 10.
  775.     - The scanner would convert upper-case letters in alternate-radix
  776. numbers wrong on Unix systems.
  777.     - String comparisons other than equality often produced the wrong
  778. result if the strings were of different lengths.
  779.     - An ifelse as the last thing inside a forall would confuse the
  780. execution stack.
  781.     - There were some omitted casts and 'private' declarations that
  782. made the GNU compiler unhappy.
  783.     - There was a memory leak in the image[mask] operators that caused
  784. 516 bytes to be permanently lost each time one of them was used.
  785.     - Quoted strings of length greater than 50 and less than 100 would
  786. get mangled when being read in.
  787.     - The scanner didn't consume the whitespace character following a
  788. token, so programs that read data out of the program file could get
  789. confused.
  790.     - Under rare circumstances, an object of size between 249 and 255
  791. bytes could get allocated on top of another object.
  792.  
  793. Allows bind to bind packed arrays, even though they aren't normally
  794. writable.
  795.  
  796. Changes the length operator to allow a name as the argument.  (The
  797. PostScript manual doesn't allow this, but implementations apparently do.)
  798.  
  799. Changes the setcachedevice operator to allow the bounding box to be
  800. specified as a 4-element array instead of 4 scalars.  (The PostScript
  801. manual doesn't allow this, but implementations apparently do.)
  802.  
  803. Removes a line from ghost.ps that accidentally disabled the font cache.
  804.  
  805. Implements memory devices (makeimagedevice, copyscanlines, and makedevice
  806. for image devices).  makeimagedevice is implemented only for 1, 8, 24, and
  807. 32 bits per pixel.
  808.  
  809. Changes the deviceparams operator so it pushes a mark on the stack below
  810. the parameters.  This is to allow for devices that have more than the
  811. standard set of parameters.
  812.  
  813. Replaces defaultdevicename with two new operators, getdevice and
  814. devicename.
  815.  
  816. Adds a flushpage operator that flushes any outstanding buffered output to
  817. the screen.  This is not the same as copypage: on printers, copypage
  818. actually prints a page, whereas flushpage may do nothing; on displays,
  819. flushpage and copypage may both flush output to a server.
  820.  
  821. Adds an unread operator for pushing back a character into a file.
  822.  
  823. Adds a description of proposed grayimage and colorimage operators to
  824. ghost.doc, even though they aren't implemented yet.
  825.  
  826. Changes the name of the currentfileposition operator to fileposition.
  827.  
  828. Removes the framedevice operator, since the new device operators supersede
  829. it.
  830.  
  831. Adds a writeppmfile operator, for writing the contents of a memory device
  832. to a ppm file.
  833.  
  834. Makes Ghostscript work even when the >> operator doesn't sign-extend
  835. negative numbers.  (This has not been tested.)
  836.  
  837. Adds the Symbol encoding to ghost.ps.
  838.  
  839. Adds two new file-related operators, filename and findlibfile.  See
  840. ghost.doc and interp.doc for details.
  841.  
  842. Adds type1encrypt and type1decrypt operators for manipulating Adobe Type 1
  843. encoded fonts.
  844.  
  845. Changes the imagecharpath and addcharpath operators to type1imagepath and
  846. type1addpath.  These operators now work with the Adobe Type 1 font
  847. encoding.
  848.  
  849. Adds the type1decryptfile operator for reading Adobe Type 1 encrypted
  850. fonts.
  851.  
  852. Library
  853. -------
  854.  
  855. Fixes bugs:
  856.     - curveto and lineto didn't check for the current point being
  857. defined.
  858.     - stringwidth would fail if there was no current point.
  859.     - There were omitted casts that made the GNU compiler unhappy.
  860.     - Line caps and joins didn't always work.
  861.     - Dashed lines didn't work at all.
  862.     - If you read out the current matrix while inside a BuildChar
  863. procedure, the result was garbage.
  864.     - image[mask] would crash if you gave it a single string with more
  865. than 64K-1 pixels (MS-DOS only).
  866.     - Filling with a gray pattern sometimes wrote into pixels beyond
  867. the right edge of the region (MS-DOS only).
  868.     - The font cache would mistake fonts for each other if both fonts
  869. had a default (unsupplied) "unique ID".
  870.     - When a character was entered into the font cache for the first
  871. time, sometimes it would display as garbage and/or displaced vertically
  872. from its proper position.
  873.  
  874. Implements gs_makeimagedevice, gs_copyscanlines, gs_getdevice,
  875. gs_devicename, gs_flushpage, gs_writeppmfile, gs_type1encrypt,
  876. gs_type1decrypt, gs_type1imagepath, and gs_type1addpath procedures
  877. corresponding to the new operators in the interpreter (see preceding
  878. section).
  879.  
  880. Changes [gs_]setdevice so that it does an erasepage when it first opens
  881. the device.
  882.  
  883. Changes definition of gx_device structure as follows.  NOTE: THIS AFFECTS
  884. ALL DRIVERS.
  885.  
  886.     - Removes bits_from_MSB (which wasn't actually used, in any case).
  887.         Ghostscript now assumes officially, as it always did in
  888.         practice, that device bitmaps are stored MSB first, i.e., X=0
  889.         corresponds to the 0x80 bit in the first byte.
  890.  
  891.     - Removes the initial_matrix member, which wasn't actually being
  892.         set up.
  893.  
  894.     - Adds a new member 'name', a string giving the device name.
  895.  
  896.     - Adds new members 'x_pixels_per_inch' and 'y_pixels_per_inch'.
  897.         These are only used by the default initial_matrix procedure
  898.         (see below).
  899.  
  900.     - Adds a new procedure 'output_page'.  The default implementation
  901.         (gx_default_output_page) just calls the sync_output procedure.
  902.  
  903.     - Adds a new procedure 'get_initial_matrix'.  The default
  904.         procedure uses the width, height, and x/y_pixels_per_inch
  905.         members to compute the matrix, assuming that X values run from
  906.         right to left, and Y values run from top to bottom.
  907.  
  908. Changes the names of the allocation procedure types gs_proc_alloc and
  909. gs_proc_free to proc_alloc_t and proc_free_t, and moves them from gs.h to
  910. std.h.
  911.  
  912. Makes Ghostscript work even when the >> operator doesn't sign-extend
  913. negative numbers.  (This has not been tested.)
  914.  
  915. Version 1.3 (6/20/89)
  916. ===========
  917.  
  918. This release should have had a lot more things in it, but time pressure
  919. and the already long delay in getting it out made it necessary to push it
  920. out the door in an incomplete state (e.g., no testing on X systems
  921. whatsoever).
  922.  
  923. Interpreter
  924. -----------
  925.  
  926. Makes -d and -D equivalent on the command line.  Adds a new switch -s / -S
  927. that defines a name as a string rather than a token.
  928.  
  929. Arranges things so that if -sLIB=_a_prefix_ is defined on the command
  930. line, (filename) run will look for _a_prefix_filename before giving up if
  931. filename isn't the name of an accessible file.
  932.  
  933. Changes showpage from an operator to a procedure.  The definition of
  934. showpage in ghost.ps does a copypage, beeps the console, waits for the
  935. user to type a character (normally a <return>, since line buffering is
  936. always enabled), and then does an erasepage and an initgraphics.
  937.  
  938. Adds a new initialization file, gdevs.ps, containing device-dependent
  939. parameters.  The default window size for X Windows is properly set to 612
  940. x 792, i.e., 8.5" x 11".
  941.  
  942. Adds a new optional initialization file, statusd.ps, that provides dummy
  943. definitions for the names found in statusdict on LaserWriters.
  944.  
  945. Adds a new operator, getenv, to get information from the shell
  946. environment.
  947.  
  948. Adds a new predefined operator, defaultdevicename, that returns either (X)
  949. or (EGA) according to how the interpreter was built.
  950.  
  951. Adds a new type, devicetype, and new operators deviceparams, getscanlines,
  952. makedevice, makeimagedevice, and setdevice.  Changes currentdevice to
  953. return a device object rather than a set of parameters.
  954.  
  955. Makes the scanner recognize reals with 'e' exponent notation, and handle
  956. reals with more than 9 digits.
  957.  
  958. Fixes a bug that made names starting with digits read incorrectly.
  959.  
  960. Fixes a bug in the exp operator that made it not pop its first argument
  961. from the stack.
  962.  
  963. Fixes a bug in the rand operator that made it return negative values about
  964. half the time.
  965.  
  966. Fixes a bug in equality comparison (eq, ne, and several other operators)
  967. that made unequal operator objects occasionally appear to be equal on DOS
  968. systems.
  969.  
  970. Fixes a bug in the bind operator that made it not work on packed arrays.
  971.  
  972. Changes the internal representation of dictionaries so they can be
  973. expanded or contracted dynamically.  Adds a new operator, setmaxlength, to
  974. change the allocated size of a dictionary.
  975.  
  976. Changes sstorei.h so that non-DOS compilers don't encounter the #pragma
  977. directive used by Turbo C.
  978.  
  979. Restores the display mode (on MS-DOS systems) when exiting.
  980.  
  981. Fonts
  982. -----
  983.  
  984. Makes undefined characters in the standard font display as tilde rather
  985. than blank (or causing an error).  Unmapped character codes (those mapped
  986. to .notdef in the encoding) still display as nothing, per the PostScript
  987. manual.
  988.  
  989. Library
  990. -------
  991.  
  992. Adds a new header file, gxbitmap.h, with some new documentation describing
  993. the internal storage format for bitmaps.
  994.  
  995. Makes numerous internal changes in the character / font cache, affecting
  996. many of the routines in gxcache.c.
  997.  
  998. Fixes a bug in gz_draw_line / gz_fill_trapezoid that made nearly
  999. horizontal lines display wrong.
  1000.  
  1001. Fixes a bug in gs_scale that made scaling not work if the coordinate
  1002. system was rotated or skewed.
  1003.  
  1004. Extends the font cache so it will handle characters rotated by multiples
  1005. of 90 degrees.
  1006.  
  1007. Changes the second argument of gx_path_bbox and gx_path_is_rectangle to be
  1008. a gs_fixed_rect * rather than a fixed [4].
  1009.  
  1010. Changes gs_matrix_rotate so it handles multiples of 90 degrees as a
  1011. special case.
  1012.  
  1013. Changes the definition of the gx_device structure to accommodate the new
  1014. device operators, and adds corresponding library calls.
  1015.  
  1016. Changes the type for a device color index from int to gx_color_index
  1017. (equivalent to unsigned long).  ***NOTE***: this affects existing clients
  1018. and drivers in a non-trivial way on MS-DOS systems.
  1019.  
  1020. Changes gs_malloc and gs_free to take a client name string as an argument.
  1021.  
  1022. Usage procedures
  1023. ----------------
  1024.  
  1025. Changes the compilation rules for Unix systems to not use the -o and -c
  1026. compiler flags together, to be compatible with more versions of cc.
  1027.  
  1028. Changes the gcc makefile to use $(GCC) rather than gcc as the compiler
  1029. name.
  1030.  
  1031. Moves the -1 flag for the MS-DOS compiler from the cc*.bat files to the
  1032. makefile.
  1033.  
  1034. Changes CCDEBUG to CCFLAGS, and adds ASMFLAGS, in DOS makefile.
  1035.  
  1036. Adds -DFOR80386 and /DFOR80386 to enable use of 80386 instructions in
  1037. assembly code on DOS systems.
  1038.  
  1039. Merges the DEBUG and gs_DEBUG switches.  There is now only a single DEBUG
  1040. switch that affects both the interpreter and the library.
  1041.  
  1042. Adds a new compilation switch, -DNOPRIVATE, that makes private (static)
  1043. variables and procedures public for debugging and profiling (only needed
  1044. on DOS systems).
  1045.  
  1046. Adds the DOS executable (gs.exe and gs.map) to the distribution fileset.
  1047.  
  1048. Adds new platform-specific code files, gp-*.c, for a few things like
  1049. reading the clock.
  1050.  
  1051. Adds a new documentation file, drivers.doc, that describes the interface
  1052. between Ghostscript and device drivers.
  1053.  
  1054. Version 1.2 (2/22/89)
  1055. ===========
  1056.  
  1057. Interpreter
  1058. -----------
  1059.  
  1060. Adds the new facilities in version 25 of PostScript: //name for immediate
  1061. lookup, packed arrays (setpacking, currentpacking, packedarray operators),
  1062. and new font cache parameters (setcacheparams, currentcacheparams
  1063. operators).
  1064.  
  1065. Adds new operators (setfileposition, currentfileposition) for random
  1066. access to files.
  1067.  
  1068. Extends readhexstring to take either a string or a file, just like token.
  1069.  
  1070. Fixes a bug that caused the 'for' operator (and a couple of others) to
  1071. randomly smash memory locations on PC platforms.
  1072.  
  1073. Library
  1074. -------
  1075.  
  1076. Renames the init_device driver procedure as open_device, and adds a
  1077. corresponding close_device.
  1078.  
  1079. Adds new procedures to read and set the cache limit values (implementing
  1080. the currentcacheparams and setcacheparams operators).
  1081.  
  1082. Usage procedures
  1083. ----------------
  1084.  
  1085. Changes the name of the Unix makefile to ux-cc-x.mak, and adds a new Unix
  1086. makefile, ux-gcc-x.mak, for using gcc instead of cc.  (The latter doesn't
  1087. actually work yet.)
  1088.  
  1089. Changes the name of the single built-in font from uglyfont.cp to
  1090. ugly10.cp.
  1091.  
  1092. Version 1.1 (2/12/89)
  1093. ===========
  1094.  
  1095. Interpreter
  1096. -----------
  1097.  
  1098. Makes the scanner treat ^Z (ASCII code 26) as whitespace: it erroneously
  1099. treated ^R (ASCII code 22, or octal 26) as whitespace.
  1100.  
  1101. Makes the token and readline operators, and the syntax for comments,
  1102. recognize \r (code 13), \n (code 10), and \r\n as equivalent end-of-line
  1103. indicators.  The token and readline operators will skip over any of these
  1104. sequences at the end of a token or line respectively, and a comment will
  1105. read through any of these sequences.  The other file operators (read,
  1106. write, readstring, writestring) do nothing special with these characters.
  1107.  
  1108. Changes the debug switch name from -D to -Z.  Adds a -D switch for
  1109. defining names in systemdict from the command line.  Defines -DDEBUG for
  1110. printing out debugging information during initialization, and -DNODISPLAY
  1111. for suppressing display output.
  1112.  
  1113. Corrects a bug that prevented the error machinery from working -- in
  1114. version 1.0, errors always dumped the stacks and aborted interpretation.
  1115.  
  1116. Corrects a bug that made eq and ne not work for strings.
  1117.  
  1118. Makes the atan (arctangent) operator normalize its results according to
  1119. the PostScript convention.
  1120.  
  1121. Makes the div operator check for zero divisor.
  1122.  
  1123. Makes unimplemented operators (resetfile, echo, save, restore, strokepath,
  1124. reversepath) truly undefined.
  1125.  
  1126. Makes the interactive loop exit gracefully on end-of-file: in version 1.0
  1127. this caused an infinite loop.
  1128.  
  1129. Implements the status operator.
  1130.  
  1131. Corrects a bug that made the 'for' operator deliver garbage values if one
  1132. or more of the operands (start, increment, end) was a real.
  1133.  
  1134. Corrects a bug that made the arc and arcn operators not pop their operands
  1135. from the stack.
  1136.  
  1137. Corrects a bug that made the kshow operator crash the interpreter.
  1138.  
  1139. Corrects a bug that made the print operator fail on machines that don't
  1140. pass structure arguments by simply pushing the contents of the structure.
  1141.  
  1142. Adds a new operator, imagecharpath, to convert images to
  1143. addcharpath-compatible outlines.
  1144.  
  1145. Changes alloc and alloc_free to use char * rather than byte *, and
  1146. alloc_free to return void rather than int, making them compatible with the
  1147. library's expectations and with malloc/free.
  1148.  
  1149. Explicitly casts all expressions of the form (ptr1 - ptr2) used as
  1150. procedure arguments to unsigned, to handle an incompatibility between
  1151. Turbo C versions 1.5 and 2.0.
  1152.  
  1153. Changes some of the internal conventions for operators: operators that
  1154. push on the operand stack must check for overflow explicitly, and
  1155. operators that modify the execution stack must return a special code.
  1156. (See oper.h for details.)
  1157.  
  1158. Initialization (ghost.ps, gfonts.ps)
  1159. --------------
  1160.  
  1161. Modifies ghost.ps and gfonts.ps so they print debugging information only
  1162. if the name DEBUG is defined.  (Presumably the user will set this from the
  1163. command line with -DDEBUG.)
  1164.  
  1165. Changes ghost.ps so it initializes the nominal screen size to 640 x 350 on
  1166. MS-DOS systems as before, but to 612 x 792 on Unix systems, which is an
  1167. 8.5" x 11" page at 72 pixels per inch.
  1168.  
  1169. Library
  1170. -------
  1171.  
  1172. Corrects a bug that made the fill and eofill operators (gs_fill and
  1173. gs_eofill) not perform a newpath afterward.
  1174.  
  1175. Corrects the bug that made thin, nearly horizontal lines display wrong (as
  1176. a series of disconnected dots) in the MS-DOS implementation.
  1177.  
  1178. Fixes a bug in the EGA driver that often made it fill rectangular regions
  1179. with black around information being displayed in white.
  1180.  
  1181. Completely changes the internal representation of outline fonts, and
  1182. changes btoi.ps (a Ghostscript language program for converting bitmaps to
  1183. outlines) to use a new library call, gs_imagecharpath.
  1184.  
  1185. Changes the extension for outline font files from .gf to .cp.
  1186.  
  1187. Adds a new debugging switch, q, that traces all rectangle fill operations.
  1188.  
  1189. Adds a new debugging switch, v, that traces all device-level output calls.
  1190.  
  1191. Explicitly casts pointer differences passed as procedure arguments, as in
  1192. the interpreter.
  1193.  
  1194. Makes stringwidth work if there is no current point.  In version 1.0, this
  1195. gave a nocurrentpoint error.
  1196.  
  1197. Usage procedures
  1198. ----------------
  1199.  
  1200. Changes the name of the 'read me' file from READ.ME to README.
  1201.  
  1202. Removes a bogus line (invoking the 'mcopy' utility) from the makefile.
  1203.  
  1204. Splits up the makefile into a generic part (ghost.mak) and
  1205. platform-specific parts (dos-ega.mak, unix-x11.mak).  The latter are what
  1206. is actually executed.
  1207.  
  1208. Puts the definitions of the DEBUG and gs_DEBUG compilation flags into the
  1209. makefile instead of in ghost.h and gx.h respectively.
  1210.  
  1211. Changes the names of the documentation files to be a little less cryptic.
  1212. Changes all the file names to lower-case in the documentation.  Adds
  1213. installation information to make.doc.
  1214.  
  1215. Changes all function definitions (but not prototype declarations) to ANSI
  1216. syntax, and adds a preprocessing step (ansi2knr) to convert them to K&R
  1217. syntax on Unix systems.
  1218.  
  1219. Changes the normal MS-DOS link configuration to not assume the presence of
  1220. an 80x87 coprocessor, and describes how to increase performance if a
  1221. coprocessor is present.
  1222.  
  1223. Changes the names of all the interpreter .c files, except stream.c, to
  1224. begin with 'i'.
  1225.  
  1226. Version 1.0 (8/11/88)
  1227. ===========
  1228.  
  1229. First version released to the public.
  1230.