57f8a2cd0e041f044f2939a8694ae97e83938abe
[p5sagit/Excel-Template.git] / Changes
1 Revision history for Perl distribution Excel::Template
2
3     Added missing cell comment documentation
4
5 0.33 Sun Feb 20 20:07:43 CET 2011
6     Implemented the COMMENT argument
7
8 0.32 Mon Jul  5 18:58:05 CEST 2010
9     Official release for development release 0.31_1
10
11 0.31_1 Mon Jun 28 16:51:44 CEST 2010
12     - Add autofilter to worksheet
13     - Swichting to Module::Install
14
15 0.31 Mo Dec 17 13:41:00 2007
16     - Add hide_gridlines to worksheet
17
18 0.30 Sa Dec 01 00:00:00 2007
19     - Add write_date_time to write a datetime-value into a cell
20
21 0.29 Mon Oct 08 12:00:00 2007
22     - Added merge_range as written by Stevan Little
23
24 0.28 Fri Jul 31 22:00:00 2005
25     - Added landscape and portrait orientations for worksheets
26
27 0.27 Tue Jul 25 10:00:00 2006
28     - Fixed how widths are whitelisted to allow '.' for fractions
29
30 0.26 Fri Jun 02 15:30:00 2006
31     - Fixed how widths are whitelisted to allow '.' for fractions
32     - Fixed how certain formats are copied
33     - Added <image>
34     - Added <freezepanes>
35
36 0.25 Thu May 26 11:00:00 2005
37     - Changed how the template file is opened to use 3-arg open() if available
38
39 0.24 Thu Mar 10 11:00:00 2005
40     - Implemented the KEEP_LEADING_ZEROS node
41       - This wraps the keep_leading_zeros() worksheet method
42     - Improved code coverage with more and better tests
43       - Am now above 90% coverage.
44       - Fixed bug involving relative values.
45       - Fixed bug involving formats when multiple Excel-Template objects ran in
46         the same process.
47     - Improved POD linking
48       - Every module/node reference in POD should link to the appropriate POD
49
50 0.23 Fri Feb 25 15:00:00 2005
51     - Improved code coverage with more and better tests
52     - Fixed POD bug with Devel::Cover results
53     - Fixed bugs found in Factory::register while writing tests
54       - Base class wasn't loaded when class was registered.
55       - If registered class didn't exist, wouldn't die until parse()
56
57 0.22 Thu Feb 24 15:00:00 2005
58     - new() now accepts either FILE or FILENAME
59     - parse() now accepts a filehandle or a filename
60
61 0.21 Thu Feb 24 12:00:00 2005
62     - Fixed documentation bug in BACKREF (Thanks to Paul Williams)
63     - Added code to Makefile.PL to skip .swp files in the Makefile
64     - Added RENDERER option to new()
65       - Deprecated BIG_FILE
66     - Added pod.t and pod_coverage.t
67     - Tests now run under 5.005_02 without warnings
68
69 0.20 Wed Jan 26 12:00:00 2005
70     - Removed PM_FILTER by adding an optional USE_UNICODE runtime parameter.
71     - Added a "type" attribute to CELL to allow printing by the write_*() family
72
73 0.19 Wed Dec 08 12:00:00 2004
74     - Fixed META.yml
75     - Added more values to the MANIFEST.SKIP
76     - Fixed PM_FILTER to work on Win32 (Thanks, Corion!)
77     - Improved POD
78
79 0.18 Fri Nov 12 14:45:00 2004
80     - Removed 'use warnings' from all tests
81     - All warnings are suppressed unless $^W is true
82     - Added 'height' value for ROW
83     - Added 'width' value for CELL
84     - Fixed PM_FILTER to work on Redhat
85
86 0.17 Sat Nov 06 23:30:00 2004
87     - Added worksheet protection
88     - Fixed several bugs found by adding more tests
89         - SCOPE node actually works
90         - CONDITIONAL / IF now handles string values correctly
91
92 0.16 Fri Nov 05 13:30:00 2004
93     - Fixed Makefile.PL so that it uses PM_FILTER instead of rolling its own
94         - This means that the Unicode handling is cleaner from a source
95           perspective
96     - Added MANIFEST.SKIP to skip /.svn/ and 'vi' .swp files during distcheck
97     - Finally have a semi-real testing suite!
98         - Added minimal Spreadsheet::WriteExcel mockobject
99     - Fixed several bugs in formats found by building tests
100       - HIDDEN node now actually works
101       - LOCKED node now actually works
102
103 0.15 Thu Nov 04 16:15:00 2004
104     - Fixed bugs that were:
105         - preventing a worksheet from using a variable name in a loop
106         - allowing two worksheets to have the same name
107         - preventing a worksheet from being called '0' or '0.0'
108     - Added back-references. This allows for one cell to refer to another
109       cell in an Excel-aware way, especially in formulas.
110     - Added the following nodes:
111         - BACKREF
112         - RANGE
113
114 0.14 Thu Nov 04 13:30:00 2004
115     - Added new format support for (nearly) all formats supported by
116       Spreadsheet::WriteExcel
117     - Fixed email address everywhere
118
119 0.13 Thu Oct 29 07:30:00 2004
120     - Fixed email address and added GoogleGroup
121
122 0.12 Thu Apr 08 07:30:00 2004
123     - Fixed bug regarding empty arrays as loop variables
124
125 0.11 Wed Mar 17 16:00:00 2004
126     - Fixed bug introduced in 0.10 (Loops were not case-insensitive)
127
128 0.10 Wed Mar 17 16:00:00 2004
129     - Parameters are now case-insensitive
130
131 0.09 Mon Feb 02 16:00:00 2004
132     - Fixed bug with multiple worksheets
133
134 0.08 Fri Jan 30 14:00:00 2004
135     - Added Base to the params for XML::Parser to allow for entity includes
136
137 0.07 Fri Jan 23 08:30:00 2004
138     - Fixed the MANIFEST to account for missing files
139
140 0.06 Mon Jan 20 11:00:00 2004
141     - Added formulas (no back-references yet)
142     - Improved POD a little
143
144 0.05 Wed Jan 16 12:30:00 2004
145     - Fixed a bug in formats
146
147 0.04 Wed Jan 16 12:00:00 2004
148     - Added BIG_FILES as an option, which will use
149       Spreadsheet::WriteExcel::Big as the renderer (yet unimplemented)
150     - Changed the output() method to use a tied IO::Scalar (which is
151       now a requirement.
152     - Firmed up the infrastructure in Excel::Template::Format
153     - Added the following tags
154           - FORMAT
155           - HIDDEN
156           - LOCKED
157           - OUTLINE
158           - SHADOW
159           - STRIKEOUT
160
161 0.03 Wed Dec 03 20:30:00 2003
162     - Added XML::Parser as a required pre-requisite module
163     - Added Italic format
164     - Removed $VERSION from Excel::Template::Base (Unneeded)
165     - No documentation or testing changes
166
167 0.02 Sun Nov 30 17:00:00 2003
168     - documentation improvements
169     - No actual functional changes
170
171 0.01 Tue Nov 18 14:23:42 2003
172     - original version; created by ExtUtils::ModuleMaker 0.32