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