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