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