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