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