forked from Solomoriah/PollyReports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
150 lines (93 loc) · 4.09 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
Changelog
=========
v1.7.7 (2015-12-01)
-------------------
- Removed Unicode encoding from Element class (as inserted by Jose Jachuf in
v1.6.7) which caused issues for Python 3. Added Element.text_conversion
variable to contain a reference to the function for converting self.text
for output; this variable can be used to restore Jose's behavior with a
single line of code, as described in the comments for the Element class.
[Chris Gonnerman]
v1.6.5 (2012-09-21)
-------------------
- Added titleband and reportheader to Report object; Added Image and
ImageRenderer classes; Updated reference documentation to include all
these features. [Chris Gonnerman]
- Changed SumElement.summarize to treat None as integer 0. [Chris
Gonnerman]
- Fixed missing comma in setup.py. [Chris Gonnerman]
v1.6.3 (2012-08-03)
-------------------
- Many minor documentation updates. [Chris Gonnerman]
- Updated docs, added changelog generation using gitchangelog. [Chris
Gonnerman]
- Removed .gitignore from .gitignore. [Chris Gonnerman]
v1.6.1 (2012-07-29)
-------------------
- Changed heuristic for group header orphan avoidance; now uses average
detail height averaged with maximum detail height. [Chris Gonnerman]
v1.6 (2012-07-27)
-----------------
- Group headers now use average detail band length to avoid at least
some "orphan" header band situations. [Chris Gonnerman]
v1.5.1 (2012-07-12)
-------------------
- Corrected sample programs to use "align =" instead of "right =" [Chris
Gonnerman]
- Updated project status in setup.py. [Chris Gonnerman]
v1.5 (2012-06-22)
-----------------
- Updated description in setup.py. [Chris Gonnerman]
- Updated to 1.5 for PyPI. [Chris Gonnerman]
- Now handles empty recordsets intelligently. [Chris Gonnerman]
- Updated documentation. [Chris Gonnerman]
- Page headers now generate with prevrow rather than row IF the page was
forced by a group footer. [Chris Gonnerman]
- Minor docs.html update. [Chris Gonnerman]
v1.4 (2012-06-19)
-----------------
- Updated version number for pypi; changed from right = 1 to align =
"right" (and added support for "center" and "align" options); updated
documentation. [Chris Gonnerman]
- Changed 'right = n' to 'align = left/right/center'; added
Report.leftmargin. [Chris Gonnerman]
v1.3 (2012-06-18)
-----------------
- Updated version number for PyPI. [Chris Gonnerman]
- Corrected handling of multiple group headers and footers; documented
these changes also. [Chris Gonnerman]
- Updated tutorial.html. [Chris Gonnerman]
- Merge branch 'master' of https://github.com/Solomoriah/PollyReports.
[Chris Gonnerman]
- Added tutorial files to repo. [Chris Gonnerman]
- Updated docs.rst for 1.2. [Chris Gonnerman]
v1.2 (2012-06-17)
-----------------
- Updated version number in setup.py. [Chris Gonnerman]
- Separated test rig from main PollyReports.py source file; Enabled
setting of band attributes in Report initialization. [Chris Gonnerman]
- Corrected issue with thick rules not being positioned correctly.
[Chris Gonnerman]
- Corrected issues with Rule objects in child bands. [Chris Gonnerman]
- Added initial documentation. [Chris Gonnerman]
v1.1 (2012-06-16)
-----------------
- Updated version in setup.py to make PyPI happy. [Chris Gonnerman]
v1.0 (2012-06-16)
-----------------
- Corrected bug in setup.py. [Chris Gonnerman]
- Updated for PyPI distribution. [Chris Gonnerman]
- Added onrender() event support. [Chris Gonnerman]
- Added sysvar support to Elements (to support page numbering, mainly);
also compacted test data for easier readability. [Chris Gonnerman]
- Added newpageafter option for Bands (newpagebefore was already
present) [Chris Gonnerman]
- Child band support has been added. [Chris Gonnerman]
- Group headers and footers now implemented. [Chris Gonnerman]
- Added report footer handler. [Chris Gonnerman]
- Added better test data. [Chris Gonnerman]
- Added Rule class, which is both an Element and a Renderer (in terms of
duck-typing); Corrected issue with band height calculation. [Chris
Gonnerman]
- Updated README. [Chris Gonnerman]
- Added page header and footer support. [Chris Gonnerman]