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