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