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