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