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