shorten the doc
[PyX/mjg.git] / CHANGES
blobf608c806844aab768b681ab6cc14961355ea66b2
1 PyX
3 0.4 (????/??/??):
4   TODOs:
5   - examples:
6     - to be included in source distribution
7   - manual:
8     - include sources in source distribution
9   - graph module:
10     - common bboxes for different graphs
11     - separate texter out of the axispainter
12     - automatic datafile key title
13     - exceptions in drawsymbol & friends...
14     - 3d graphs, circular graphs
15   - canvas module:
16     - default patterns
17     - stroke and fill should support trafos
18     - make dash length available
19   - text module:
20     - further improve lfs handling
21   - tex module:
22     - copy lfs handling from text module (share the same source???)
24 0.3.1 BUGFIX RELEASE (scheduled for 2003/04/04)
25   - text module:
26     - fix bug in dvi rule code where width was height
27     - fix preamble attribute checking bug
28     - fix texmessage.load pattern search instead of match bug
29     - renamed vbox to parbox (was done in 0.3 partially only)
30   - data module:
31     - allow for tuples in arguments of the data class
32     - convenience: exchanged order of named parameters in data.data
33   - graph module:
34     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
35   - examples:
36     - added a latex example (requested by users)
37     - added back the integral example (prior part of the user manual)
38     - small change in vector example (allow for the access to the texrunner)
39     - TODO: include examples in source distribution
40   - canvas module:
41     correct arrow template calculation for very short paths
43 0.3 (2003/03/31)
44   - examples
45     - new easy to use example generation (will hopefully lead to nice examples)
46   - unit box:
47     - new module for handling of convex polygons (taken out of the graph module)
48   - unit helper:
49     - new module containing a collection of helper functions (taken out of the graph module)
50     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
51   - text module:
52     - new module: a new and preferable integration of TeX/LaTeX
53   - t1strip module:
54     - strip glyphs from pfa/pfb-fonts
55     - there is a C implementation taken from pdftex
56     - fallback solution via an external program (pfb2pfa)
57   - pykpathsea module:
58     - (partial) C binding to libkpathsea
59     - fallback solution via an external program (kpsewhich)
60   - graph module:
61     - removed some code duplication (various axis painters)
62     - use text module instead of the obsolete tex module
63     - allow for tailing zeros of automatic generated labels
64     - allow for missing data in bar graphs -> skipmissing parameter
65     - remove the support for variables given as keyword arguments in data constructor
66     - use context instead of extern for extern variables and functions
67     - graph keys; titles in data/function/etc.
68   - unit module:
69     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
70     - all length classes have now by default a quantifier 1 (instead of 0), such that,
71       for instance, 5*unit.t_cm() == unit.t_cm(5)
72     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
73     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
74   - bbox module:
75     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
76       for internal purposes.
77     - the bbox constructor now accepts user lengths in the constructor.
78     - new methods height, width, top, bottom, left, right
79     - ll & ur ???, what about ul and lr -> ugly!
80     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
81     - output HiResBoundingBox
82     - never reduce bbox upon output
83     - defered TODOs:
84       __iadd__ and inplace enlarge, transform,...
85   - epsfile module:
86     - new constructor signature, more in line with rest of PyX:
87       epsfile(x, y, filename, **additional_args)
88   - data module:
89     - removed additional column support in addcolumn; removed _addcolumn
90     - line reduction for datafile like the every parameter in gnuplot
91   - canvas module:
92     - new way of PS prolog generation that writes only necessary parts
93     - added support for patterns
94     - canvas.insert() now supports arguments
95     - bbox of canvas can be specified in writetofile command explicitely
96     - writetofile does not return self anymore
97     - arrow template now uses intersection with circle to get size right
98       (as per a suggestion by Michael Schindler)
99   - mathtree module:
100     - added abs function
101     - changed the handling of extern functions and all variables
102   - color module:
103     - gradient renamed to palette
104   - numerous bugfixes:
105     - problem with sizefile on windows (tex module)
106     - allow for strings in graphxy's width and height; allow for width only (graph module)
107     - disable rating for labelattrs equals None (graph module)
108     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
109     - traverse when adding functions as arguments of operators (mathtree module)
110     - allow for extern functions in addcolumn (data module)
111     - just one common place for the version number
112     - fix incorrect exception name MathError (path module)
113     - prevent double return of intersections for closed sub paths
114     - ...
116 0.2 (2003/01/17):
117   - unit module:
118     - allow division of length by numbers
119   - trafo module:
120     - new transformation: slant
121     - renamed all trafo methods to use the participle (i.e translate->translated)
122     - the name of all trafo subclasses are verbs (i.e. translation->translate)
123   - graph module:
124     - mark class renamed to symbol
125     - (text-)box distance measurement
126     - moved axis partitioning to axis and axis painter
127     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
128     - splitaxis
129     - baraxis, baraxispainter, and bar style
130   - data module:
131     - previously named datafile module
132     - class "_datafile" renamed to class "data"
133     - class sectionfile added
134     - testsuite
135   - mathtree module:
136     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
137     - testsuite
138   - text module:
139     - deferred to Version 0.3
140     - running TeX "on the fly" is basically implemented
141   - numerous bugfixes:
142     - transformation bug (#624068, trafo module)
143     - canvas transformations (canvas module???)
144     - textbox alignment (graph module)
145     - return linewidth upon calculation with linewidths (unit module)
146     - allow column number variables with several digits
147     - ...
148   - british and american spellings (color module, graph module)
149   - small logo modifications
151 0.1 (2002/10/07):
152   - initial release