fix pdf header
[PyX.git] / CHANGES
blobe843a4f6db29de2f49c3cd6e83d2e41d65f14d60
1 0.???? (201?/??/??):
2   - filelocator module:
3     - cygwin LaTeX with windows python patch (thanks to Sybren A. Stüvel)
4   - graph styles:
5     - fix numerical instability of line clippings
6   - deco module:
7     - apply text trafos to each character in curvedtext (reported by Hans L)
8     - properly apply all textattrs in curvedtext (for example colors or scalings)
9   - canvas module:
10     - layer method takes layer names above or below (instead of an instance),
11       also reorders layer accordingly when layer is already existing
12     - remove the before and after arguments of insert
13     - handle trafo and clip separately in constructor and write methods
14     - allow for one clipping instance only
15     - optimize graphics state stack usage
16   - dvi/dvifile module:
17     - change special handling for transformations and colors to use subcanvases
18     - apply transformations to markers
19   - trafos and styles are no longer canvasitems
20   - style module:
21     - fillrules are now fillstyles and handled within the PS/PDF context
22   - text module:
23     - new texenc setting (TODO documentation)
25 0.12.1 (2012/10/26):
26   - graph styles:
27     - fix drawing and clipping of gradient style
29 0.12 (2012/10/17):
30   - canvas module:
31     - insert method now returns canvas wrapping item if attrs are given
32     - insert method allows specification of position where item is inserted
33       by before and after arguments
34     - new layer method allows creation of separated drawing layers for
35       grouping of drawing operations
36     - writeXXXfile methods now use "page_" and "write_" prefixes for passing
37       the keyword arguments to the page constructor and write method
38     - pipeGS now returns a file handle instead of writing to a file or to stdout
39     - the new method writeGSfile restores the previous pipeGS functionality
40     - support rendering as png for use in IPython notebooks (as suggested by
41       Nikolas Tezak)
42   - document module:
43     - writeXXXfile methods now support writing to stdout when filename is set
44       to "-"
45   - type 1 font modules:
46     - allow font slanting for T1builtinfont instances
47     - improve stripped font compatibility
48     - remove UniqueID lookup from embedded fonts in PostScript output (fixes
49       missing glyph issue with dvips and certain fonts)
50     - allow Type1 font usage without TeX and without AFM font metric
51     - add support for pfm font matrices
52   - epsfile module:
53     - fix race condition while generating bitmap for PDF inclusion
54     - fix file opening for bbox reading when using filelocator (reported by
55       Michael J Gruber)
56   - filelocator module:
57     - fix text mode line ending issue for MS Windows
58   - text module:
59     - fix subprocess call on MS Windows (closefds not functional not also
60       not required at all)
61     - fix pyxgraphics functionality because at least some versions of graphics
62       and friends seem to expect the file extension .def for the driver files
63       (thanks to Michael J Gruber)
64   - deco module:
65     - decorator to put text along a path; based on a patch by Michael J Gruber
66   - dvifile module:
67     - fix for MS Windows: open virtual font files in binary mode
68   - graph modules:
69     - graphs:
70       - uses new canvas layers to stack graph components (fixing bug #1518414,
71         reported by Dominic Ford)
72       - add a flipped option to graphxy to exchange x and y coordinates
73       - add a 1d graph "graphx" (use case: convert a value to a color)
74       - add hiddenaxes layer to the 3d graph
75       - add linkedaxes for the xy-plane in 3d like in 2d (works now properly due
76         to the hiddenaxes feature)
77     - graph styles:
78       - add density style
79       - add gradient style to convert a value to a color using a 1d graph
80       - add a usenames dictionary to the pos style (like rangepos had it already)
81     - graph data:
82       - add a join data provide which adds concatenates several data sources
83     - axis module:
84       - divisor was not properly taken into account in tick handling (axis
85         range extension and range rating)
86   - added the metapost module:
87     - create smooth paths from a series of points
88   - bitmap module:
89     - new fundamental constructor based on arbitrary affine transformations
90     - add ASCIIHexDecode end marker
91   - color module:
92     - add rgbgradient and cmykgradient to force color space
93   - mesh module:
94     - add ASCIIHexDecode end marker
95   - sourceforge.net:
96     - upgrade PyX project page to the Allura platform
99 0.11.1 (2011/05/20):
100   - canvas:
101     - fix pipeGS (adding support for writing using pycompat.popen)
102   - deco module:
103     - arrow decorator: proper sign of constriction length for positioning
104       reversed arrows
105   - dvi/texfont:
106     - fix exception type
107     - increase designsize deviation to 4 (needs some further investigation)
108   - contrib files:
109     - fixes due to the dvi and font restructuring
110   - setup.py:
111     - fix build process for extension modules
112     - fix download url to allow for easy_install (hopefully)
113   - manual:
114     - converted to sphinx
117 0.11 (2011/05/15):
118   - font and dvi modules:
119     - major reorganization
120     - TeX mapping files are a property of the writer now
121       By that the pdfwriter now uses pdftex.map instead of psfonts.map
122       (It's also possible to pass a fontmap to a texrunners text method to use
123       different mappings within a single output file)
124     - support for font matrices (afm) for Type1 fonts
125       (using fonts without a metrics is still supported, but properly issues
126       a warning now)
127     - interface for basic TeX-less text output
128     - new PS and PDF writer options: strip_fonts, text_as_path, mesh_as_bitmap,
129       mesh_as_bitmap_resolution
130     - fix for commented out UniqueID
131     - fix rounding of font sizes
132     - fix scaling of VF position increments
133   - new filelocator module
134   - graph modules:
135     - bar style on graphxyz (single datasets only)
136     - graphxyz:
137       - fix position of z4 axis
138       - set correct errorname for z axis (thanks to Axel Freyn)
139       - fix wrong y value usage instead of z value in pos methods
140     - fix unused color range settings in surface style (thanks to Michael J Gruber)
141     - fallbackrange for axes with vanishing range
142     - dokeyitem method (to be called with a plotitem) to alter the key order
143     - doplot() was renamed to doplotitem(), dodata() was renamed to doplot()
144       to have similar naming conventions like for the graph key
145     - axis module: do not divide by None for data.min and/or data.max being None (see patch #2833369)
146     - axis painter:
147       - properly rotate axis titles when ticks are not othorgonal
148         to the axis (reported by Christian Delfosse)
149       - correct namedirection in bar axis painter (reported by rhunger, bug #2028032)
150     - graph.style.arrow: decorator is an parameter of the constructor now
151       (thanks to Axel Freyn)
152     - remove ticks with unset ticklevel and labellevel to prevent rating failures
153       (thanks to Brendon Higgins)
154   - canvas and document modules:
155     - auto-guess output filename from the script filename
156     - add ciecolor flag and input type to the pipeGS method of canvas
157   - pyxrc:
158     - new config options for psfontmaps and pdffontmaps
159     - new config option for formatting of Python warnings
160     - new config section for new filelocator module
161   - text module:
162     - fix two bugs in the read pipe of the texrunner (thanks to
163       Laurence Tratt and Eric Faurot)
164     - fix "<" token handling in mapping file parser (thanks to Matthew West)
165     - fix start message parse error in MiKTeX (thanks to Wojciech Jaskowski)
166     - fix rigid aux file checking (thanks to Clayton E. Myers)
167     - use subprocess module if available
168     - proper error messages when TeX is stopped due to unrecoverable error
169   - style module:
170     - implement style.fillrule
171   - deco module:
172     - added an explicit hatch pattern as an alternative for real postscript patterns
173     - arrow decorator: take into account constriction length when arrow pos < 1
174   - bitmap module:
175     - add support for transparent bitmaps (in postscript stencil masking only)
176   - path and normpath modules:
177     - remove incorrect zero length line in PDF output for each first moveto
178       path element (thanks to Michael J Gruber)
179     - raise correct normpath exception (thanks to Axel Freyn)
180   - epsfile module:
181     - an ugly way to import EPS in PDF using a bitmap (requires PIL)
184 0.10 (2007/10/03):
185   - graph modules:
186     - graph module:
187       - graphxyz for 3d graphs with parallel and central projection
188       - doplot method (to be called with a plotitem) to alter the plotitem order etc.
189     - graph styles:
190       - new surface style for 3d graphs (colored surfaces are functional
191         (and useful!) for 2d graphs as well)
192       - new grid style for 3d graphs
193       - new impulses style
194       - optional textdx/textdy columns to the text style added
195       - arrowpos parameter to the arrow style added
196       - bugfix: fromvalue axis range adjustment in histogram style
197       - bugfix: axis range adjustment in range style
198     - axis module:
199       - painter: don't insert axis title twice (thanks to Tim Gray for reporting this problem)
200       - parter: extend the logarithmic parter to calculate automatic partitions for huge ranges
201         (TODO: documentation of the new autoexponent parameter) (suggested by Dominic Ford)
202       - fix: range rating was not taken into account due in the 0.9 release
203     - data module:
204       - list class was renamed to points; deprecation warning added
205         for instance creation, but inheritance from list failes
206       - new values class
207   - new mesh module:
208     - internal helper module for efficient handling of triangular colored meshs
209   - color module:
210     - renamed: palette->gradient, functionpalette->functiongradient, linearpalette->lineargradient
211     - new class palette representing a discrete ordered list of colors
212     - support transparency for filling/stroking in pdf separately
213     - transparency support for postscript as available by means of a proprietary
214       ghostscript extension (for ps2pdf)
215     - renamed method: tostring8bit -> to8bitstring (bug #2932888)
216   - attr module:
217     - add multichangeattr to perform a select on different changeable attributes
218       depending on the selects total number
219   - font modules:
220     - t1font:
221       - add missing glyph traversal in t1seacs updatepath
222   - normpath module:
223     - support zero-length normsubpaths
224   - canvas module:
225     - don't change order of attrs passed to canvas constructor in place
226   - added __truediv__ methods according to PEP 238
229 0.9 (2006/05/24):
230   - most important changes (to be included in the release notes):
231     - mathtree removal (warning about integer division)
232     - barpos style does not build tuples for nestedbar axes automatically
233     - new deformers for path manipulation (for smoothing, shifting, ... paths)
234   - font modules:
235     - new framework for font handling
236     - own implementation of type1 font stripping (old pdftex code fragments removed)
237     - complete type1 font command representation and glyph path extraction from font programs
238     - t1code extension module (C version of de-/encoding routines used in Type 1 font files)
239     - AFM file parser
240   - graph modules:
241     - data module:
242       - mathtree removal: more flexibility due to true python expressions
243       - default style instantiation bug (reported by Gregory Novak)
244     - style module:
245       - automatic subaxis tuple creation removed in barpos (create tuples
246         in expressions now; subnames argument removed since it became pointless;
247         adujstaxis became independend from selectstyle for all styles now)
248       - remove multiple painting of frompath in histogram and barpos styles
249       - fix missing attribute select when using a bar style once only (reported by Alan Isaac)
250       - fix histograms for negative y-coordinates (reported by Dominic Ford, bug #1492548)
251       - fix histogram to stroke lines to the baseline for steps=0 when two subsequent values are equal
252       - add key method for histogram style (reported by Hagemann, bug #1371554)
253       - implement a changebar style
254     - graph, axis and style module:
255       - support for mutual linking of axes between graphs
256       - new domethods dependency handling
257       - separate axis range calculation from dolayout
258     - axis.parter module:
259       - linear and logarthmic partitioners always need lists now
260         (as it was documented all the time; renamed tickdist/labeldist
261         to tickdists/labeldists; renamed tickpos/labelpos to
262         tickpreexps/labelpreexps)
263     - axis module:
264       - patch to tickpos and vtickpos (reported by Wojciech Smigaj, cf. patch #1286112)
265       - anchoredpathaxis added (suggested by Wojciech Smigaj)
266       - properly handle range rating on inversed axis (reported by Dominic Ford, cf. bug #1461513)
267       - invalidate axis partitions with a single label only by the distance rater
268       - fallback (with warning) to linear partitioner on a small logarithmics scale
269     - painter module:
270       - patch to allow for tickattrs=None (reported by Wojciech Smigaj, cf. patch #1286116)
271   - color module:
272     - transparency support (PDF only)
273     - conversion between colorspaces
274     - nonlinear palettes added
275     - the former palette must now be initialized as linearpalette
276     - remove min and max arguments of palettes
277   - text module:
278     - improve escapestring to handle all ascii characters
279     - correct vshift when text size is modified by a text.size instance
280     - recover from exceptions (reported by Alan Isaac)
281     - handle missing italic angle information in tfm for pdf output (reported by Brett Calcott)
282     - allow for .def and .fd files in texmessage.loaddef (new name for
283       texmessage.loadfd, which was restricted to .fd files)
284   - path module:
285     - correct closepath (do not invalidate currentpoint but set it to the
286       beginning of the current subpath); structural rework of pathitems
287     - calculate real bboxes for Bezier curves
288     - fix intersection due to non-linear parametrization of bezier curves
289     - add rotate methods to path, normpath, normsubpath, and normsubpathitems
290     - add flushskippedline to normsubpath
291     - add arclentoparam to normsubpath and normsubpathitems
292     - path is no longer a canvasitem
293     - reduce number of parameters of outputPS/outputPDF methods (do not pass context and registry)
294   - normpath module:
295     - contains normpath, normsubpath and normpathparam which have originally
296       been in the path module
297     - return "invalid" for certain path operations when the curve "speed" is
298       below a certain threshold
299     - normpath is no longer a canvasitem
300     - reduce number of parameters of outputPS/outputPDF methods (do not pass context and registry)
301   - deformer module:
302     - rewritten smoothed to make use of the subnormpath facilities
303     - rewritten parallel for arbitrary paths
304   - deco module:
305     - add basic text decorator
306     - allow arrows at arbitrary positions along the path
307   - connector module:
308     - boxdists parameter need to be a list/tuple of two items now
309     - changed the orientation of the angle parameters
310   - trafo module:
311     - renamed _apply to apply_pt
312     - introduce _epsilon for checking the singularity of a trafo
313   - epsfile module:
314     - use rectclip instead of clip to remove the clipping path from the
315       PostScript stack, which otherwise might create strange effects for
316       certain PostScript files (reported by Gert Ingold)
317   - dvifile module:
318     - silently ignore TrueType fonts in font mapping files (reported by Gabriel Vasseur)
319   - type1font module:
320     - accept [ and ] as separators in encoding files (reported by Mojca Miklavec, cf. bug #1429524)
321   - canvas module:
322     - remove registerPS/registerPDF in favour of registering resourcing during the outputPS/outputPDF run
323     - move bbox handling to registry
324     - rename outputPS/outputPDF -> processPS/processPDF
325     - remove set method of canvas
326     - add a pipeGS method to directly pass the PyX output to ghostscript
327     - allow file instances as parameter of the writeXXXfile methods (feature request #1419658 by Jason Pratt)
328   - document modules:
329     - allow file instances as parameter of the writeXXXfile methods (feature request #1419658 by Jason Pratt)
330   - style module:
331     - make rellength the default for dash styles
332   - random notes:
333     - switched to subversion on 2006/03/09
335 0.8.1 (2005/08/13):
336   - deco module:
337     - fix bug in postscript deco code for stroking only attributes
338   - path module:
339     - fix multicurveto._normalized
340     - fix path.paramtoarclen and path.paramtoarclen_pt 
341     - remove unused method-local function
342     - fix linestyle rellength in PostScript
343     - correction to the rounding problems in circles (reported by Uwe Fabricius)
344   - epsfile module:
345     - fix a typo
346   - pattern module:
347     - issue a warning when not using a stroke color for patterns
348   - text module:
349     - postpone PDFfontdescriptor information, since it raises an error on certain
350       fonts even when PostScript output was requested (reported by Gert Ingold)
351     - remove spurious spaces when checking for empty texmessages
352   - kpathsea module:
353     - caching in fallback to lower system call bottleneck
354   - canvas module:
355     - add missing writePSfile wrapper
356     - add *args to writeEPSfile and writePDFfile wrappers
357   - writer modules:
358     - writebbox option to write bbox information (disabled by default)
359       even when a paper format is specified (PS and PDF writers only)
360   - use arclen in spring example
361   - add knot example
362   - use pdf graphic files for pdf version of the manual
363   - use PyX to create tipa fallbacks for FAQ
364   - correct description regarding the manual in the README file
367 0.8 (2005/07/13):
368   - changed requirements to python 2.1 or newer:
369     - nested scopes are needed without fallback solution by the path module
370       (at other places fallback solutions for missing nested scopes are missing as well)
371     - use warning module for warnings
372   - path module:
373     - path parameters and argument handling
374     - the arct to arc/arcn conversion (needed for bbox calculation and for conversion into
375       normpath) has been fixed
376   - document module: new
377     - container classes for document and pages
378     - document.paperformat class (strings are deprecated)
379   - canvas module:
380     - writeEPSfile wraps a canvas in a single page document and performs the output
381   - bbox module:
382     - add _pt methods
383   - pdfwriter module:
384     - completely rewritten: support for fonts and patterns has been added
385   - pswriter module: new
386     - separate PS output from canvas
387     - new signature of outputPS methods: writer and context are passed as additional
388       arguments
389   - color module:
390     - allow selection on zero range palette (reported by Francisco Borges, cf. bug #1116257)
391   - prolog module: removed due to code reorganisation
392   - graph modules:
393     - modifications on __init__.py in graph and axis subdirectories to
394       make "from pyx.graph import *" working as expected
395     - graph styles:
396       - addontop added to stackedbarpos
397       - column -> columnname renaming where appropriate
398       - histogram style added
399     - graph data:
400       - function needs explicit variable definition (implicit variable definition is deprecated)
401       - column names are inherited by data.data() except when copy=0;
402         unused columns are silently ignored now
403       - dynamic function data on a logarithmic axis uses isinstance check now
404         (although it removes the only (mis)use of axis.inverse, it is a
405         temporary solution only)
406     - graph key:
407       - extend graph keys to allow for several columns
408     - axis data handling refactoring:
409       - introcuded an axis positioner (module graph.axis.positioner)
410       - introduced anchoredaxis to make axis data and positioning local to a graph
411       - linkedaxis is a special version of anchoredaxis and is generic
412         (it uses the new linkpainter provided by an axis)
413       - unification of split and bar axes;
414         removed some black magic in baraxis in favor of a nestedbar axis
415       - x linked to x2 etc. is now possible
416       - axis.inverse was removed (the only place it was (mis)used was by a function)
417     - graphxy:
418       - allow to transform axis after layout
419       - [xy]axisat arguments in the constructor to easily move [xy]-axes
420         to a position defined the orthogonal axis
421       - remove axispos (use the axis dictionary now, since it now contains
422         anchored axis instances and those have shortcuts for the axis positioner
423         methods)
424   - dvifile:
425     - tfm->dvi conversion rounding bugfix
426     - fix parsing of empty strings ("") in fontmap files (reported by John Owens, bug #1218983)
427   - text module:
428     - support for halign of boxes and content of boxes (see halign example)
429     - take units xscale into account in parbox
430     - messageparser for replaced fontsizes: Warning -> implemented by texmessage.fontwarning
431     - messageparser for size differences at the end: Warning not Exception -> implemented by texmessage.fontwarning
432     - messageparser for overfull/underfull vbox/hbox: Warning not Exception -> implemented by texmessage.boxwarning
433     - dvicopy flag removed
434     - allow argument of set to be None
435     - rename nomathmode and nophantom to clearmathmode and clearphantom
436     - texmessagepattern for easy creation of simple TeX message parsers
437     - allow long file names in file checking TeX message parsers
438     - no newline removal to not disturbe TeX messages when reporting errors
439     - reworked documentation to use the python documentation standards
440   - style module:
441     - linewidth is no longer a unit.length subclass but expects a such as first argument
442   - epsfile module:
443     - correct EOL handling while reading DSC's (reported by Markus Meyer)
444   - pattern module: new
445     - moved canvas.pattern to its own module together with the new PDFpattern class
446     - add some default patterns: hatched and crosshatched
447   - deformer module:
448     - improve the smoothing deformer
449     - add a parallel deformer
450   - tex module:
451     - the very old tex module finally got removed completely
452   - contrib directory:
453     - a simple converter from dvi to EPS/PS/PDF files (dviconvert.py) has been added
454     - a simple imagine to EPS/PS/PDF converter (imgconvert.py) has been added
455     - a simple dvitype.py has been added
456   - update address of FSF all over the place
459 0.7.1 (2004/12/15):
460   - canvas module:
461     - EPS header fixed (reported by Russell Lang, cf. bug #1065099)
462   - Makefile fixes:
463     - use CURDIR instead of PWD (reported by David M. Cooke, bug #1070285)
464   - pykpathsea module:
465     - support windows line endings (patch by Hans-Andreas Engel, cf. bug #1071160)
466   - graph modules:
467     - line attributes handling fixed (reported by Andrea Riciputi)
468     - fix typos in predefined symbols (reported by Andrea Riciputi)
469     - cut column name list at the max. number of columns (reported by Arnd Baecker)
470   - examples:
471     - add INDEX and README files to distribution
472     - new errorbar and julia example
473   - faq:
474     - pdf snippets for tipa based phonetic transliterations
477 0.7 (2004/10/21):
478   - bitmap module:
479     - new module for inclusion of bitmap images
480   - path module:
481     - names of local and member variables now follow the naming convention of
482       having a _pt suffix when containing lengths in points
483   - bbox module:
484     - names of local and member variables now follow the naming convention of
485       having a _pt suffix when containing lengths in points
486     - enlarge was misspelled as enlarged
487     - renamed _bbox -> bbox_pt
488     - new bbox method center, which returns the coordinates of the center
489       of the bbox
490     - enlarge and enlarged do no longer interprete unqualified lengths as
491       being of type visual
492   - unit module:
493     - unit.cm, unit.t_cm, etc. are no longer sub classes but instances
494       of length
495     - never convert implicitly into visual/width, etc. lengths (this is more
496       about usage of the unit module in various other modules) (TODO: update
497       documentation)
498     - support for string initialization removed
499     - support for initialisation with other length removed
500     - lengths can now be divided by other lengths (as suggested by Michael Gruber
501       and Magnus Lie Hetland)
502   - text module:
503     - postpone reading of fontmap files until TeX/LaTeX is started
504     - sign of font number in dvifile (reported by Michael Gruber)
505     - phantom attribute
506   - canvas module:
507     - added new classes page and document for multipage PostScript output
508     - apply deformers (instead of trafos) in draw method
509   - style module:
510     - decrease interval for dotted and dash-dotted lines for better visual
511       appearance
512   - setup.py and distribution:
513     - create siteconfig on install to store positions of the shared data
514       and the global pyxrc
515   - graph modules:
516     - graph style + data reorganization
517       - modularization of the graph styles by separating data handling and drawing tasks
518       - several graph styles can now be combined together
519       - graph data can internally now combine different data sources
520         (by that, some nasty side effects could have been removed)
521     - enum -> num renaming
522     - allow for horizontally and vertically centered graph key alignment and a key background
523     - fix bug that graph was not finished automatically when a bbox was specified
524       manually (reported by David Barton)
525   - path module:
526     - pathel -> pathitem, etc. renaming
527     - methods accepting a parameter value / arc length now also allow the user to 
528       pass a tuple (subpath, param) / (subpath, arclen)
529     - normpath constructor no longer accepts a path or normpath as argument but only a list
530       of normsubpaths. Use the new normpath method of the path instead to construct a normpath
531       from a path.
532     - normsubpath can now deal with short (i.e. shorter than epsilon) segments correctly
533     - the intersect and split methods of normpath and normsubpath have been completely rewritten and
534       now take the accuracy epsilon correctly into account. Note that for a closed subpath the
535       split function now returns the segment containing the closing point as first element
536       in the result list (before, it was returned as last element).
537     - normsubpathitems and normsubpath now implement much more methods also provided by
538       path and normpath instances
539     - normpath.append no longer accepts pathitems but only normsubpaths
540   - deformer module: new
541     - moved cycloid and smoothed from deco into deformer
542   - bbox module:
543     - handle "BoundingBox: (atend)" (cf. bug #945621 reported by Jim Boyle)
544     - kpsearch option to search for file using the kpathsea library (contributed by Michael Gruber)
545   - base module:
546     - PSCmd and PSOp are now joined in a new class canvasitem
547   - deco module: 
548     - decorated path no longer allows modification of its path
549     - new method excluderange which allows to remove certain parameter ranges from the stroked path
550     - additional canvas provided by decorated path is now called ornaments
551     - constriction=None now indicates an arrowhead without constriction
552   - trafo module:
553     - trafos are now deformers
554   - examples:
555     - a bunch of bargraph examples have been added
558 0.6.x (????/??/??):
559    - graph/axis module:
560      - fix errorbar range adjustment
561      - fix empty tick lists bug (reported by Marko Vendelin, cf. bug #977323)
562    - graph/style module:
563      - symbolline drawing order in graph key (cf. bug #990687)
564    - graph/data module:
565      - access to builtin list (reported by Marcus Mendenhall, cf. bug #1042458)
568 0.6.3 (2004/04/27):
569    - graph module:
570      - fix drawing with background
571      - fix insertion of a zero length path when the whole line is outside
572        the valid axis range (reported by Marko Vendelin)
573    - distribution:
574      - include source for faq and manual
575      - distribute the pdf instead of postscript (manual, faq, examples)
578 0.6.2 (2004/04/07):
579   - graph module:
580     - fixed title=None + graph key issue reported by Gabriel Vasseur
581     - graph.axis.painter.plain -> graph.axis.painter.regular
582       (as it was in parts of the documentation already)
583     - changeable-gridattrs-become-None-bug fixed
584     - graph style cutting outside lines (double-)fixed
587 0.6.1 (2004/03/31):
588   - fixes missing install of the graph and axis directories introduced in 0.6
589   - some minor updates to the faq
592 0.6 (2004/03/30):
593   - graph module:
594     - reorganisation of the graph structure finished (there might be some
595       small pending issues, but the basic restructuring is done with this release):
596       - graph splitted into several modules in pyx/graph and pyx/graph/axis
597       - painters are using the new attribute scheme including changeable
598         attributes
599       - graph styles rewrite
600       - graph data rewrite
601     - axis zeropath feature has been removed
602     - mergelabels removed; linpart doesn't have a label argument anymore
603     - names and texts removed from baraxis
604     - iteration on graph style, when it is used several times in the same graph
605     - symbols + lines -> symbollines; symbols do not allow setting lineattrs,
606       and lines not symbolattrs
607     - manual line clipping (do not include unneeded line segments when the
608       axis range is set manually etc.)
609     - automatic file key titles
610     - graph.data now also includes the old data module
611     - data.list adds (by default) a line number like data.file
612       (thus regular columns are counted from 1)
613   - path:
614     - added new pathels multilineto_pt and multicurveto which allows to specify
615       a list of points and can thus be much more efficient
616     - internal methods return coordinates in pts
617     - arclentoparam returns only parameters not total length
618     - added path.arclength_pt, path.at_pt, path.begin_pt, path.end_pt (and
619       correspondingly for normpath)
620     - complete refactoring of the normpath class: normpaths now consist of
621       normsubpaths which themselves consist of normlines and normcurves This is
622       much more convenient for any routines working with normpaths.
623     - reversing of closed sub paths does not change the first point of the sub
624       path
625     - renamed: arclength -> arclen
626     - renamed: lentopar -> arclentoparam
627     - renamed: glue -> joined
628     - normpath now supports join, the in-place version of joined
629     - path and normpath method raise exception instead of returning None
630       when parameter is out of range
631     - the accuracy epsilon can now only be specified in normpath and normsubpath
632       constructor and no longer in arguments of path and normpath methods
633     - negative parameters are no longer supported in path and normpath methods
634     - path and normpath methods which accept parameter value param now
635       alternatively accept an arc length
636   - deco module:
637     - cycloid decorator
638     - smoothed decorator
639     - arrow heads are no longer stroked (as suggested by Magnus Lie Hetland)
640   - canvas:
641     - writeEPSfile deprecates writetofile
642     - internally, write methods are renamed in outputPS
643     - canvas constructor no longer accepts variable argument list but
644       expects a list of attrs as first argument (defaulting to []) and
645       a texrunner as second argument (defaulting to text.defaulttexrunner)
646     - set, draw, stroke and fill no longer return self, i.e., the canvas, but None
647   - bbox module:
648      - added inplace add (__iadd__), enlarge and transform methods
649      - callers use inplace add where possible now (yielding a considerable
650        speedup)
651     - "undefined" corners of bounding boxes are no longer supported which makes
652       the bounding box operations much more efficient.
653   - connnector module:
654     - renamed _xxx -> xxx_pt
655   - epsfile module:
656     - removed showbbox argument of epsfile class
657   - text module:
658     - default handling of texmessages as in the new attribute scheme
659     - multiple insert bug fixed
660     - made left, right, width, height, depth information available (x length
661       not taking into account box transformations)
662     - ignore tex message "Please type a command or say `\\end'"
663     - added textboxes that are sequentially filled (experimental)
664   - examples:
665     - mandel.py (contributed by Stephen Phillips)
666   - unit module:
667     - length comparision (David Beach)
668     - x-scale for TeX
669     - more unit tests
670   - mathtree module:
671     - switched to the new parser using pythons parser module
672   - data module:
673     - removed, it all lives in the graph.data module now, while before it
674       was splitted into two separate modules
675   - tex module:
676     - not imported by default anymore
677     - obsolete warning when importing this module
679 0.5.1 (2004/01/22):
680   - distribution:
681     - include missing c-files for optional extension modules
682   - prolog module:
683     - fix unpaired BeginProcSet/EndProcSet in font enconding
685 0.5 (2004/01/20):
686   - setup.py and distribution:
687     - allow customization of the extension modules built (via setup.cfg)
688     - disable building pykpathsea module by default
689     - more detailed description of install process in INSTALL
690     - provide more information and pointers to other files in README
691     - include example data files in distribution (suggested by Andrea Riciputi)
692     - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
693     - includ pyxfaq.pdf in distribution
694   - text module:
695     - improved is-readable test for lfs files and pyx.def file
696     - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
697     - showwaitfortex implemented following a suggestion by Fernando Perez
698       (waitfortex is increased to 60 seconds now)
699     - support of TeX extension --ipc for reading dvi results while TeX keeps running
700     - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
701     - markers to get access to positions within TeX expressions
702     - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
703     - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
704     - remove limitation on number of fonts in dvi file
705     - added native virtual font support
706     - dvicopy support not needed anymore (it is still available, but obsolete and
707       removed from the documentation)
708     - do not include too many glyphs in the eps file
709     - _xxx -> xxx_pt renaming
710   - dvifile module (NEW):
711     - separated from the text module
712     - dvifile class returns standard pyx canvas instances on readpage
713   - graph module:
714     - removed manualpart and partitioners mix keyword
715     - results of the splitting at "=" in graph.function were not stripped
716     - skip title=None in key (cf. bug #821284), properly align a single key entry
717     - another (the last?!) axis redesign: axispos -> class of its own
718     - some axispos name have changed slightly (zeroline -> zeropath etc.)
719     - tick/data-vmin/vmax removed
720     - pathaxis
721     - linkaxis
722     - minor enhancements in exponentionaltexter
723     - axes alongs paths including a set of examples
724     - mixing a partitioner and manual ticks by two distinct keyword arguments now
725     - _xxx -> xxx_pt renaming
726     - part -> parter renaming
727   - canvas module:
728     - stroke, fill, draw, set and insert do no longer accept variable length argument lists but
729       an attribute list as last argument
730     - stroke and fill now support trafos (TODO: documentation)
731     - uppercase version of a4, a3, ... paperformats
732   - config module:
733     - new module for loading PyX configuration information
734   - pyx module:
735     - automatically import main modules into pyx namespace as suggested by Fernando 
736       Perez.
737   - path module:
738     - check for sorting of parameter list passed to path.split method
739     - _xxx -> xxx_pt renaming
740   - deco module (NEW): 
741     - contains decoratedpath and decorators from canvas module
742     - all predefined decorators are instances now (deco.stroked is thus ok) and 
743       attributes have to be passed explicitely, e.g., deco.earrow.small(attrs=color.rgb.red) 
744       and deco.stroked([color.rgb.blue])
745   - style module (NEW):
746     - contains all line- and fillstyles which formerly had been defined in the canvas module
747     - dash now supports relative dash lengths (as suggested by Otto Tronarp)
748   - mathtree module:
749     - fixed incorrect handling of - (for instance -x**2 was not negative)
750   - attrlist module:
751     - contents have been moved to the (obsolete) tex module, which was the only user anyhow, and
752       the module itself was removed
753   - t1strip module:
754     - new fallback solution in pure python
755     - bugfix: pyxadapt.h needs to open files binary under Windows (reported by Gary Pajer)
756   - box module:
757     - _xxx -> xxx_pt renaming
758   - trafo module:
759     - _xxx -> xxx_pt renaming
761 0.4.1 (2003/09/17):
762   - canvas module:
763     - "in" to "inch" in paperformats
764   - text module:
765     - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
766   - pykpathsea module:
767     - implement different file formats for Python version of module
768   - t1strip module:
769     - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
770       by Marcus Mendenhall)
771   - __init__.py:
772     - added "connector" to __all__
774 0.4 (2003/08/22):
775   - graph module:
776     - separate texter out of the axispainter
777     - axis/partitioner/texter/painter/axispos redesign & interfaces
778     - tick.text is renamed to tick.label
779     - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
780     - ticks can be used in the part to mix a partitioner with some manual ticks
781       -> manualpart and the mix technique is not needed anymore
782          (both things are still available and working, but they will be removed in the future)
783     - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
784       - a (enum, denom) tuple now (previously there were two arguments)
785       - a string (as before via _ensurefrac)
786       - exponential strings are allowed as well (e.g. "1e10" etc.)
787       - a float (precision is determined by floatprecision -- the number of decimal places)
788     - dense -> density
789     - axis.maxworse
790     - axis interface
791   - text module:
792     - reset() method for the texrunner
793     - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
794     - texmessage.loadfd for accepting font description loading
795     - don't bail out on width_index == 0, but mark character invalid instead
796     - dvicopy flag
797     - support for specials; pyxgraphics flag
798     - support psfonts.map: font names, font encodings
799     - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
800     - improved lfs handling
801   - data module:
802     - full documentation via doc strings
803   - connector module:
804     - some preliminary version
805   - box module:
806     - multiple radii (up to two per point) and softnesses
807     - ensurecenter added --- do we always force the creation of a center?
808   - path module:
809     - lentopar methods added including some tests
810   - epsfile module:
811     - new parameter bbox allows to override the bounding box of the eps file
813   bugfixes:
814   - text module:
815     - derive TFMError and DVIError correctly from exceptions.Exception
816     - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
817     - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
818   - box module:
819     - correct rounding algorithm (Michael Schindler)
820   - graph module:
821     - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
822     - rounding towards zero bugfix in autolinpart
823     - log axis range rating bugfix
824   - mathtree module:
825     - addarg bugs (#738724)
826   - epsfile module:
827     - fix mixing up of height and width in scale calculation
828   - and various other fixer here and there
830 0.3.1 (2003/04/04):
831   - text module:
832     - fix bug in dvi rule code where width was height
833     - fix preamble attribute checking bug
834     - fix texmessage.load pattern search instead of pattern match bug
835     - renamed vbox to parbox (was done in 0.3 partially only)
836   - data module:
837     - allow for tuples in arguments of the data class
838     - convenience: exchanged order of named parameters in data.data
839   - graph module:
840     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
841   - examples:
842     - added a latex example (requested)
843     - added a attributechange example (requested)
844     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
845     - small change in vector example (allow for the access to the texrunner)
846     - examples included in source distribution
847   - canvas module:
848     - correct arrow template calculation for very short paths
850 0.3 (2003/03/31):
851   - examples
852     - new easy to use example generation (will hopefully lead to nice examples)
853   - unit box:
854     - new module for handling of convex polygons (taken out of the graph module)
855   - unit helper:
856     - new module containing a collection of helper functions (taken out of the graph module)
857     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
858   - text module:
859     - new module: a new and preferable integration of TeX/LaTeX
860   - t1strip module:
861     - strip glyphs from pfa/pfb-fonts
862     - there is a C implementation taken from pdftex
863     - fallback solution via an external program (pfb2pfa)
864   - pykpathsea module:
865     - (partial) C binding to libkpathsea
866     - fallback solution via an external program (kpsewhich)
867   - graph module:
868     - removed some code duplication (various axis painters)
869     - use text module instead of the obsolete tex module
870     - allow for tailing zeros of automatic generated labels
871     - allow for missing data in bar graphs -> skipmissing parameter
872     - remove the support for variables given as keyword arguments in data constructor
873     - use context instead of extern for extern variables and functions
874     - graph keys; titles in data/function/etc.
875   - unit module:
876     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
877     - all length classes have now by default a quantifier 1 (instead of 0), such that,
878       for instance, 5*unit.t_cm() == unit.t_cm(5)
879     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
880     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
881   - bbox module:
882     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
883       for internal purposes.
884     - the bbox constructor now accepts user lengths in the constructor.
885     - new methods height, width, top, bottom, left, right
886     - ll & ur ???, what about ul and lr -> ugly!
887     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
888     - output HiResBoundingBox
889     - never reduce bbox upon output
890   - epsfile module:
891     - new constructor signature, more in line with rest of PyX:
892       epsfile(x, y, filename, **additional_args)
893   - data module:
894     - removed additional column support in addcolumn; removed _addcolumn
895     - line reduction for datafile like the every parameter in gnuplot
896   - canvas module:
897     - new way of PS prolog generation that writes only necessary parts
898     - added support for patterns
899     - canvas.insert() now supports arguments
900     - bbox of canvas can be specified in writetofile command explicitely
901     - writetofile does not return self anymore
902     - arrow template now uses intersection with circle to get size right
903       (as per a suggestion by Michael Schindler)
904   - mathtree module:
905     - added abs function
906     - changed the handling of extern functions and all variables
907   - color module:
908     - gradient renamed to palette
909   - numerous bugfixes:
910     - problem with sizefile on windows (tex module)
911     - allow for strings in graphxy's width and height; allow for width only (graph module)
912     - disable rating for labelattrs equals None (graph module)
913     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
914     - traverse when adding functions as arguments of operators (mathtree module)
915     - allow for extern functions in addcolumn (data module)
916     - just one common place for the version number
917     - fix incorrect exception name MathError (path module)
918     - prevent double return of intersections for closed sub paths
919     - ...
921 0.2 (2003/01/17):
922   - unit module:
923     - allow division of length by numbers
924   - trafo module:
925     - new transformation: slant
926     - renamed all trafo methods to use the participle (i.e translate->translated)
927     - the name of all trafo subclasses are verbs (i.e. translation->translate)
928   - graph module:
929     - mark class renamed to symbol
930     - (text-)box distance measurement
931     - moved axis partitioning to axis and axis painter
932     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
933     - splitaxis
934     - baraxis, baraxispainter, and bar style
935   - data module:
936     - previously named datafile module
937     - class "_datafile" renamed to class "data"
938     - class sectionfile added
939     - testsuite
940   - mathtree module:
941     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
942     - testsuite
943   - text module:
944     - deferred to Version 0.3
945     - running TeX "on the fly" is basically implemented
946   - numerous bugfixes:
947     - transformation bug (#624068, trafo module)
948     - canvas transformations (canvas module???)
949     - textbox alignment (graph module)
950     - return linewidth upon calculation with linewidths (unit module)
951     - allow column number variables with several digits
952     - ...
953   - british and american spellings (color module, graph module)
954   - small logo modifications
956 0.1 (2002/10/07):
957   - initial release