diff --git a/package.xml b/package.xml index e6fce02..7240841 100644 --- a/package.xml +++ b/package.xml @@ -24,15 +24,22 @@ - 0.5 - 2003-10-01 + 0.6 + 2003-11-15 New features: - -added rowcolToCell() utility method for easy writing of formula's cell references (JT Hughes). - -added Worksheet::setOutline() method (Herman Kuiper) - -added Format::setFontFamily() method (Donnie Miller) + - allow semicolon as argument separator (Axel Pratzner) + - added experimental Excel97 generation. You can test it with setVersion(): +$workbook = new Spreadsheet_Excel_Writer('prueba_A.xls'); +$workbook->setVersion(8); + Beware! this method will be deprecated in a future release (when + Excel97 becomes the default). It is only available for testing + purposes. Use it at your own risk. + - strings longer than 255 bytes are now available using the experimental + Excel97 generation. But not all Excel97 features are available yet! Bug fixes: - -fixed bug #21, cyrillic characters in sheet references (arhip at goldentele dot com) + - Fixed bug #225, error in writeUrl() (jamesn at tocquigny dot com) + - Fixed bug #59, retval undefined for writeRow() (Bertrand) OLE @@ -47,6 +54,7 @@ Format.php Worksheet.php Parser.php + Validator.php @@ -96,5 +104,17 @@ -fixed swapping of arguments in variable arguments functions (JT Hughes) + + 0.5 + 2003-10-01 + + New features: + -added rowcolToCell() utility method for easy writing of formula's cell references (JT Hughes). + -added Worksheet::setOutline() method (Herman Kuiper) + -added Format::setFontFamily() method (Donnie Miller) + Bug fixes: + -fixed bug #21, cyrillic characters in sheet references (arhip at goldentele dot com) + +