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