pdftex; texter (graph is currently broken); data docstrings --- minor other stuff...
[PyX/mjg.git] / CHANGES
blob2272e68a624b3236eb034690d35dab54a6d5b768
1 PyX
3 0.4 (????/??/??):
4   TODOs:
5   - manual:
6     - include sources in source distribution
7   - graph module:
8     - tick.text is renamed to tick.label (in progress), ticks and labels will become tickpos/tickdist and labelpos/labeldist in partitioning
9     - separate texter out of the axispainter (in progress)
10     TODO:
11     - common bboxes for different graphs
12     - automatic datafile key title
13     - exceptions in drawsymbol & friends...
14     - 3d graphs, circular graphs
15     - dense -> density
16     - symbols + lines -> symbollines (??). Symbols should not allow setting lineattrs, and
17       lines not symbolattrs
18   - canvas module:
19     - default patterns
20     - stroke and fill should support trafos
21     - make dash length available
22     - shouldn't strokepath/fillpath be validated by "strokepath is not None" instead of just "strokepath"
23   - text module:
24     - pdf(la)tex support (will hopefully lead to markers in text)
25     TODO:
26     - further improve lfs handling
27   - tex module:
28     - copy lfs handling from text module (share the same source???)
29   - data module:
30     - full documentation via doc strings
32   enhancements:
33   - box module:
34     - multiple radii (up to two per point) and softnesses
35       (TODO: documentation)
37   bugfixes:
38   - text module:
39     - derive TFMError and DVIError correctly from exceptions.Exception
40   - box module:
41     - correct rounding algorithm (Michael Schindler)
43 0.3.1 (2003/04/04):
44   - text module:
45     - fix bug in dvi rule code where width was height
46     - fix preamble attribute checking bug
47     - fix texmessage.load pattern search instead of pattern match bug
48     - renamed vbox to parbox (was done in 0.3 partially only)
49   - data module:
50     - allow for tuples in arguments of the data class
51     - convenience: exchanged order of named parameters in data.data
52   - graph module:
53     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
54   - examples:
55     - added a latex example (requested)
56     - added a attributechange example (requested)
57     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
58     - small change in vector example (allow for the access to the texrunner)
59     - examples included in source distribution
60   - canvas module:
61     - correct arrow template calculation for very short paths
63 0.3 (2003/03/31)
64   - examples
65     - new easy to use example generation (will hopefully lead to nice examples)
66   - unit box:
67     - new module for handling of convex polygons (taken out of the graph module)
68   - unit helper:
69     - new module containing a collection of helper functions (taken out of the graph module)
70     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
71   - text module:
72     - new module: a new and preferable integration of TeX/LaTeX
73   - t1strip module:
74     - strip glyphs from pfa/pfb-fonts
75     - there is a C implementation taken from pdftex
76     - fallback solution via an external program (pfb2pfa)
77   - pykpathsea module:
78     - (partial) C binding to libkpathsea
79     - fallback solution via an external program (kpsewhich)
80   - graph module:
81     - removed some code duplication (various axis painters)
82     - use text module instead of the obsolete tex module
83     - allow for tailing zeros of automatic generated labels
84     - allow for missing data in bar graphs -> skipmissing parameter
85     - remove the support for variables given as keyword arguments in data constructor
86     - use context instead of extern for extern variables and functions
87     - graph keys; titles in data/function/etc.
88   - unit module:
89     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
90     - all length classes have now by default a quantifier 1 (instead of 0), such that,
91       for instance, 5*unit.t_cm() == unit.t_cm(5)
92     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
93     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
94   - bbox module:
95     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
96       for internal purposes.
97     - the bbox constructor now accepts user lengths in the constructor.
98     - new methods height, width, top, bottom, left, right
99     - ll & ur ???, what about ul and lr -> ugly!
100     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
101     - output HiResBoundingBox
102     - never reduce bbox upon output
103     - defered TODOs:
104       __iadd__ and inplace enlarge, transform,...
105   - epsfile module:
106     - new constructor signature, more in line with rest of PyX:
107       epsfile(x, y, filename, **additional_args)
108   - data module:
109     - removed additional column support in addcolumn; removed _addcolumn
110     - line reduction for datafile like the every parameter in gnuplot
111   - canvas module:
112     - new way of PS prolog generation that writes only necessary parts
113     - added support for patterns
114     - canvas.insert() now supports arguments
115     - bbox of canvas can be specified in writetofile command explicitely
116     - writetofile does not return self anymore
117     - arrow template now uses intersection with circle to get size right
118       (as per a suggestion by Michael Schindler)
119   - mathtree module:
120     - added abs function
121     - changed the handling of extern functions and all variables
122   - color module:
123     - gradient renamed to palette
124   - numerous bugfixes:
125     - problem with sizefile on windows (tex module)
126     - allow for strings in graphxy's width and height; allow for width only (graph module)
127     - disable rating for labelattrs equals None (graph module)
128     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
129     - traverse when adding functions as arguments of operators (mathtree module)
130     - allow for extern functions in addcolumn (data module)
131     - just one common place for the version number
132     - fix incorrect exception name MathError (path module)
133     - prevent double return of intersections for closed sub paths
134     - ...
136 0.2 (2003/01/17):
137   - unit module:
138     - allow division of length by numbers
139   - trafo module:
140     - new transformation: slant
141     - renamed all trafo methods to use the participle (i.e translate->translated)
142     - the name of all trafo subclasses are verbs (i.e. translation->translate)
143   - graph module:
144     - mark class renamed to symbol
145     - (text-)box distance measurement
146     - moved axis partitioning to axis and axis painter
147     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
148     - splitaxis
149     - baraxis, baraxispainter, and bar style
150   - data module:
151     - previously named datafile module
152     - class "_datafile" renamed to class "data"
153     - class sectionfile added
154     - testsuite
155   - mathtree module:
156     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
157     - testsuite
158   - text module:
159     - deferred to Version 0.3
160     - running TeX "on the fly" is basically implemented
161   - numerous bugfixes:
162     - transformation bug (#624068, trafo module)
163     - canvas transformations (canvas module???)
164     - textbox alignment (graph module)
165     - return linewidth upon calculation with linewidths (unit module)
166     - allow column number variables with several digits
167     - ...
168   - british and american spellings (color module, graph module)
169   - small logo modifications
171 0.1 (2002/10/07):
172   - initial release