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