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