forked from Wavyzz/dolibarr
62 lines
2.9 KiB
Plaintext
62 lines
2.9 KiB
Plaintext
0.2.2 (2003-10-08):
|
||
- Cleaned up class.writeexcel_biffwriter.inc.php
|
||
- Cleaned up _append() and _prepend() in class.writeexcel_biffwriter.inc.php
|
||
and class.writeexcel_worksheet.inc.php to no longer use func_get_args()
|
||
but require exactly one argument instead (internal api change)
|
||
- Changed class to support tmpfile. Because of this it is possible now to
|
||
create an excel sheet on the fly that can be send by web server and is
|
||
afterwards deleted. To provoke this behaviour you just pass an empty file
|
||
name and later on use the writexcel_workbook->send(filename) function.
|
||
(contributed by Andreas Brodowski)
|
||
- Imported and changed the PEAR::Spreadsheet Parser.php file to allow
|
||
formulas in worksheets (contributed by Andreas Brodowski)
|
||
|
||
0.2.1 (2002-11-11):
|
||
- Corrected two typos in class.writeexcel_format.inc.php
|
||
(thanks to Peter van Aarle)
|
||
- Fixed cell bg_color (thanks to Jason McCarver for the patch)
|
||
- Added support for Big/Little Endian (thanks to Marc Dilasser)
|
||
- Added FAQ
|
||
- Random cleanups
|
||
|
||
0.2.0 (2002-09-04):
|
||
- Added missing methods set_bg_color(), set_rotation(), set_text_justlast(),
|
||
set_locked(), set_hidden(), set_font_script(), set_font_shadow(),
|
||
set_font_outline() and set_font_strikeout() to
|
||
class.writeexcel_format.inc.php
|
||
- Cleaned up class.writeexcel_format.inc.php
|
||
- Moved $monthdays() in functions.writeexcel_utility.inc.php into
|
||
xl_date_list()
|
||
- Fixed all calls to call_user_func_array() and call_user_method_array()
|
||
where the first parameter was an undefined constant (thanks Arnaud Limbourg)
|
||
- Cleaned up class.writeexcel_olewriter.inc.php
|
||
- Temporarily moved class.writeexcel_formula.inc.php out of the archive
|
||
because formulas are not yet supported
|
||
- Added support for files bigger than 7 MB
|
||
(class.writeexcel_workbookbig.inc.php), requires php_ole
|
||
- Added example which creates a file bigger than 7 MB (example-bigfile.php)
|
||
- Changed dates in CHANGELOG to international notation
|
||
- Updated the README file
|
||
|
||
0.1.2 (2002-08-10):
|
||
- Fixed xl_date_list() in class.writeexcel_utility.inc.php
|
||
- Cleaned up class.writeexcel_utility.inc.php
|
||
- Renamed class.writeexcel_utility.inc.php to
|
||
functions.writeexcel_utility.inc.php (it isn't actually a class)
|
||
- Changed "pack("NN", 0xD0CF11E0, 0xA1B11AE1)" to
|
||
"pack("C8", 0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1)"
|
||
in class.writeexcel_olewriter.inc.php which seems to work around a bug in
|
||
some PHP versions (thanks to Ma<4D>tre Reizz for this one!)
|
||
|
||
0.1.1 (2002-07-30):
|
||
- Fixed several PHP warnings regarding call-time pass-by-reference and
|
||
undefined constants
|
||
- Changed "Spreadsheet::WriteExcel" to "php_writeexcel" in example-demo.php
|
||
- Changed fopen() calls to explicitely open files in binary mode
|
||
|
||
0.1.0 (2002-05-20):
|
||
- Added support for inserting bitmaps (insert_bitmap in writeexcel_worksheet)
|
||
- Some fixes for improved compatibility with the Spreadsheet::WriteExcel
|
||
examples (see example-*.php)
|
||
- Some random bugfixes
|