subdps in decoratedpaths have been eliminated in favour of a subcanvas
[PyX/mjg.git] / CHANGES
blobb8c03f94e25b44739b5757ce871208a4a4797672
1 PyX
3 - ATT: refactoring of attributes in progress!!!
5 TODO:
6   - graph module
7     - rect style (and errorbars?) should use clipping (TODO: should they or do the now?)
8     - address datavmin and datavmax
9     - another (the last?!) axis redesign: axispos -> class of its own; remove axis.axiscanvas
10     - do not include unneeded line segments when the axis range is set manually
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     - symbols + lines -> symbollines (??). Symbols should not allow setting lineattrs, and
17       lines not symbolattrs
18     - allow for graph.changesymbol.square(size=0.15) etc.
19     - rect style (and errorbars?) should use clipping
20     - paths are to be drawn instead of inserted
21   - style module:
22     - default patterns
23     - make dash length available
24   - text module:
25     - split into two modules: text and dvi 
26     - SlantFont & Co support
27   - mathtree module:
28      - consider rewrite using the python compiler module
29   - bbox module:
30      - __iadd__ and inplace enlarge, transform,...
31   - path module:
32     - reverse needs to be fixed
33     - there should be a path._at, path._begin, path._end
34   - data module:
35     - data.data should add line number like data.datafile
36     - use csv module (new in 2.3)
38 0.5 (????/??/??):
39   - setup.py and distribution:
40     - allow customization of the extension modules built (via setup.cfg)
41     - disable building pykpathsea module by default
42     - more detailed description of install process in INSTALL
43     - include example data files in distribution (suggested by Andrea Riciputi)
44     - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
45   - text module:
46     - improved is-readable test for lfs files and pyx.def file
47     - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
48     - showwaitfortex implemented following a suggestion by Fernando Perez
49       (waitfortex is increased to 60 seconds now)
50     - support of TeX extention --ipc for reading dvi results while TeX keeps running
51     - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
52     - markers to get access to positions within TeX expressions
53     - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
54     - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
55     - remove limitation on number of fonts in dvi file
56     - added native virtual font support
57     - dvicopy support not needed anymore (it is still available, but obsolete and
58       removed from the documentation)
59     - do not include too many glyphs in the eps file
60   - graph module:
61     - removed manualpart and partitioners mix keyword (documentation already updated)
62     - results of the splitting at "=" in graph.function were not stripped
63     - skip title=None in key (cf. bug #821284), properly align a single key entry
64   - canvas module:
65     - stroke and fill now support trafos (TODO: documentation)
66     - uppercase version of a4, a3, ... paperformats
67   - config module:
68     - new module for loading PyX configuration information
69   - pyx module:
70     - automatically import main modules into pyx namespace as suggested by Fernando 
71       Perez.
72   - path module:
73     - check for sorting of parameter list passed to path.split method
74   - deco module (NEW): 
75     - contains decoratedpath and decorators from canvas module
76     - all predefined arrows are classes now (like all decorators) and
77       attributes have to be passed explicitely (e.g. earrow.small(attrs=color.rgb.red))
78     - TODO: document me
79   - style module (NEW):
80     - contains all line- and fillstyles which formerly had been defined in the canvas module
81     - dash now supports relative dash lengths (as suggested by Otto Tronarp)
82     - TODO: document me
83   - mathtree module:
84     - fix incorrect handling of - (for instance -x**2 was not negative)
86   TODO for PyX 0.5 (please feel free to move items up to the general TODO list)
87   - path module:
88     - path.split takes several points (as *args) while lentopar takes a list of points
89     - path.tangent is missing in the documentation
90   - text module:
91     - dvifile class:
92        - if possible remove readfile, write and prolog methods and use readpage instead
93   - color module:
94      - should colors and palettes exclude each other?
95   - documentation!!!
96   - check FAQ
98 0.4.1 (2003/09/17):
99   - canvas module:
100     - "in" to "inch" in paperformats
101   - text module:
102     - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
103   - pykpathsea module:
104     - implement different file formats for Python version of module
105   - t1strip module:
106     - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
107       by Marcus Mendenhall)
108   - __init__.py:
109     - added "connector" to __all__
111 0.4 (2003/08/22):
112   - graph module:
113     - separate texter out of the axispainter
114     - axis/partitioner/texter/painter/axispos redesign & interfaces
115     - tick.text is renamed to tick.label
116     - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
117     - ticks can be used in the part to mix a partitioner with some manual ticks
118       -> manualpart and the mix technique is not needed anymore
119          (both things are still available and working, but they will be removed in the future)
120     - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
121       - a (enum, denom) tuple now (previously there were two arguments)
122       - a string (as before via _ensurefrac)
123       - exponential strings are allowed as well (e.g. "1e10" etc.)
124       - a float (precision is determined by floatprecision -- the number of decimal places)
125     - dense -> density
126     - axis.maxworse
127     - axis interface
128   - text module:
129     - reset() method for the texrunner
130     - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
131     - texmessage.loadfd for accepting font description loading
132     - don't bail out on width_index == 0, but mark character invalid instead
133     - dvicopy flag
134     - support for specials; pyxgraphics flag
135     - support psfonts.map: font names, font encodings
136     - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
137     - improved lfs handling
138   - data module:
139     - full documentation via doc strings
140   - connector module:
141     - some preliminary version
142   - box module:
143     - multiple radii (up to two per point) and softnesses
144     - ensurecenter added --- do we always force the creation of a center?
145   - path module:
146     - lentopar methods added including some tests
147   - epsfile module:
148     - new parameter bbox allows to override the bounding box of the eps file
150   bugfixes:
151   - text module:
152     - derive TFMError and DVIError correctly from exceptions.Exception
153     - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
154     - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
155   - box module:
156     - correct rounding algorithm (Michael Schindler)
157   - graph module:
158     - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
159     - rounding towards zero bugfix in autolinpart
160     - log axis range rating bugfix
161   - mathtree module:
162     - addarg bugs (#738724)
163   - epsfile module:
164     - fix mixing up of height and width in scale calculation
165   - and various other fixer here and there
167 0.3.1 (2003/04/04):
168   - text module:
169     - fix bug in dvi rule code where width was height
170     - fix preamble attribute checking bug
171     - fix texmessage.load pattern search instead of pattern match bug
172     - renamed vbox to parbox (was done in 0.3 partially only)
173   - data module:
174     - allow for tuples in arguments of the data class
175     - convenience: exchanged order of named parameters in data.data
176   - graph module:
177     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
178   - examples:
179     - added a latex example (requested)
180     - added a attributechange example (requested)
181     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
182     - small change in vector example (allow for the access to the texrunner)
183     - examples included in source distribution
184   - canvas module:
185     - correct arrow template calculation for very short paths
187 0.3 (2003/03/31):
188   - examples
189     - new easy to use example generation (will hopefully lead to nice examples)
190   - unit box:
191     - new module for handling of convex polygons (taken out of the graph module)
192   - unit helper:
193     - new module containing a collection of helper functions (taken out of the graph module)
194     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
195   - text module:
196     - new module: a new and preferable integration of TeX/LaTeX
197   - t1strip module:
198     - strip glyphs from pfa/pfb-fonts
199     - there is a C implementation taken from pdftex
200     - fallback solution via an external program (pfb2pfa)
201   - pykpathsea module:
202     - (partial) C binding to libkpathsea
203     - fallback solution via an external program (kpsewhich)
204   - graph module:
205     - removed some code duplication (various axis painters)
206     - use text module instead of the obsolete tex module
207     - allow for tailing zeros of automatic generated labels
208     - allow for missing data in bar graphs -> skipmissing parameter
209     - remove the support for variables given as keyword arguments in data constructor
210     - use context instead of extern for extern variables and functions
211     - graph keys; titles in data/function/etc.
212   - unit module:
213     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
214     - all length classes have now by default a quantifier 1 (instead of 0), such that,
215       for instance, 5*unit.t_cm() == unit.t_cm(5)
216     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
217     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
218   - bbox module:
219     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
220       for internal purposes.
221     - the bbox constructor now accepts user lengths in the constructor.
222     - new methods height, width, top, bottom, left, right
223     - ll & ur ???, what about ul and lr -> ugly!
224     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
225     - output HiResBoundingBox
226     - never reduce bbox upon output
227   - epsfile module:
228     - new constructor signature, more in line with rest of PyX:
229       epsfile(x, y, filename, **additional_args)
230   - data module:
231     - removed additional column support in addcolumn; removed _addcolumn
232     - line reduction for datafile like the every parameter in gnuplot
233   - canvas module:
234     - new way of PS prolog generation that writes only necessary parts
235     - added support for patterns
236     - canvas.insert() now supports arguments
237     - bbox of canvas can be specified in writetofile command explicitely
238     - writetofile does not return self anymore
239     - arrow template now uses intersection with circle to get size right
240       (as per a suggestion by Michael Schindler)
241   - mathtree module:
242     - added abs function
243     - changed the handling of extern functions and all variables
244   - color module:
245     - gradient renamed to palette
246   - numerous bugfixes:
247     - problem with sizefile on windows (tex module)
248     - allow for strings in graphxy's width and height; allow for width only (graph module)
249     - disable rating for labelattrs equals None (graph module)
250     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
251     - traverse when adding functions as arguments of operators (mathtree module)
252     - allow for extern functions in addcolumn (data module)
253     - just one common place for the version number
254     - fix incorrect exception name MathError (path module)
255     - prevent double return of intersections for closed sub paths
256     - ...
258 0.2 (2003/01/17):
259   - unit module:
260     - allow division of length by numbers
261   - trafo module:
262     - new transformation: slant
263     - renamed all trafo methods to use the participle (i.e translate->translated)
264     - the name of all trafo subclasses are verbs (i.e. translation->translate)
265   - graph module:
266     - mark class renamed to symbol
267     - (text-)box distance measurement
268     - moved axis partitioning to axis and axis painter
269     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
270     - splitaxis
271     - baraxis, baraxispainter, and bar style
272   - data module:
273     - previously named datafile module
274     - class "_datafile" renamed to class "data"
275     - class sectionfile added
276     - testsuite
277   - mathtree module:
278     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
279     - testsuite
280   - text module:
281     - deferred to Version 0.3
282     - running TeX "on the fly" is basically implemented
283   - numerous bugfixes:
284     - transformation bug (#624068, trafo module)
285     - canvas transformations (canvas module???)
286     - textbox alignment (graph module)
287     - return linewidth upon calculation with linewidths (unit module)
288     - allow column number variables with several digits
289     - ...
290   - british and american spellings (color module, graph module)
291   - small logo modifications
293 0.1 (2002/10/07):
294   - initial release