pattern class:
[PyX/mjg.git] / CHANGES
blobc0cf06151820d5852b402400790695fa1fe5aa30
1 PyX
3 0.3 (????/??/??):
4   - examples
5     - new easy to use example generation (will hopefully lead to nice examples)
6   - unit box:
7     - new module for handling of convex polygons (taken out of the graph module)
8   - unit helper:
9     - new module containing a collection of helper functions (taken out of the graph module)
10     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
11   - text module:
12     - new module: a new and preferable integration of TeX/LaTeX
13   - t1strip module:
14     - strip glyphs from pfa/pfb-fonts
15     - there is a C implementation taken from pdftex
16     - fallback solution via an external program (pfb2pfa)
17   - pykpathsea module:
18     - (partial) C binding to libkpathsea
19     - fallback solution via an external program (kpsewhich)
20   - graph module:
21     - removed some code duplication (various axis painters)
22     - use text module instead of the obsolete tex module
23     - allow for tailing zeros of automatic generated labels
24     - allow for missing data in bar graphs -> skipmissing parameter
25     - remove the support for variables given as keyword arguments in data constructor
26     - use context instead of extern for extern variables and functions
27     - graph keys; titles in data/function/etc.
28     - deferred TODOs:
29       - common bboxes for different graphs
30       - automatic datafile key title
31       - exceptions in drawsymbol & friends...
32       - separate texter out of the axispainter
33       - 3d graphs
34   - unit module:
35     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
36     - all length classes have now by default a quantifier 1 (instead of 0), such that,
37       for instance, 5*unit.t_cm() == unit.t_cm(5)
38     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
39     - convert_to is now internal function, which moreover does not longer accept tuples or lists
40   - bbox module:
41     - new methods height, width, top, bottom, left, right
42     - ll & ur ???, what about ul and lr -> ugly!
43     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
44     - output HiResBoundingBox
45     - never reduce bbox upon output
46     - TODO: document me!
47   - epsfile module:
48     - new constructor signature, more in line with rest of PyX:
49       epsfile(x, y, filename, **additional_args)
50   - data module:
51     - removed additional column support in addcolumn; removed _addcolumn
52     - line reduction for datafile like the every parameter in gnuplot
53   - canvas module:
54     - new way of PS prolog generation that writes only necessary parts
55     - added support for patterns
56     - canvas.insert() now supports arguments
57     - bbox of canvas can be specified in writetofile command explicitely
58     - writetofile does not return self anymore
59     - TODO: document patterns and new writetofile syntax
60   - mathtree module:
61     - added abs function
62     - changed the handling of extern functions and all variables
63   - color module:
64     - gradient renamed to palette
65   - numerous bugfixes:
66     - problem with sizefile on windows (tex module)
67     - allow for strings in graphxy's width and height; allow for width only (graph module)
68     - disable rating for labelattrs equals None (graph module)
69     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
70     - traverse when adding functions as arguments of operators (mathtree module)
71     - allow for extern functions in addcolumn (data module)
72     - just one common place for the version number
73     - ...
75 0.2 (2003/01/17):
76   - unit module:
77     - allow division of length by numbers
78   - trafo module:
79     - new transformation: slant
80     - renamed all trafo methods to use the participle (i.e translate->translated)
81     - the name of all trafo subclasses are verbs (i.e. translation->translate)
82   - graph module:
83     - mark class renamed to symbol
84     - (text-)box distance measurement
85     - moved axis partitioning to axis and axis painter
86     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
87     - splitaxis
88     - baraxis, baraxispainter, and bar style
89   - data module:
90     - previously named datafile module
91     - class "_datafile" renamed to class "data"
92     - class sectionfile added
93     - testsuite
94   - mathtree module:
95     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
96     - testsuite
97   - text module:
98     - deferred to Version 0.3
99     - running TeX "on the fly" is basically implemented
100   - numerous bugfixes:
101     - transformation bug (#624068, trafo module)
102     - canvas transformations (canvas module???)
103     - textbox alignment (graph module)
104     - return linewidth upon calculation with linewidths (unit module)
105     - allow column number variables with several digits
106     - ...
107   - british and american spellings (color module, graph module)
108   - small logo modifications
110 0.1 (2002/10/07):
111   - initial release