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