Revision history for Perl module Spreadsheet::WriteExcelXML.


0.08 December 1 2004

    + Enabled the Page Setup methods as per Spreadsheet::WriteExcel:
          set_landscape()
          set_portrait()
          set_paper()
          center_horizontally()
          center_vertically()
          set_margins()
          set_header()
          set_footer()
          repeat_rows()
          repeat_columns()
          hide_gridlines()
          print_row_col_headers()
          print_area()
          fit_to_pages()
          set_print_scale()
          set_h_pagebreaks()
          set_v_pagebreaks()

    + Added the print_gridlines() method since printed gridlines are
      off by default in Excel XML. This option was also available via
      the less obvious hide_gridlines() method.

    + Added the headers.pl example.

    + Added page_setup tests 34_page_setup.t, 35_print_area.t and
      36_print_repeat.t.


0.07 November 11 2004

    + Added automatic Unicode handling via utf8 in perl 5.8 and
      later.
      Added several unicode_*.pl examples in different encodings.
      Thanks to Sean Burke for the sample encodings.

    + Added add_write_handler() method to allow users to add
      their own data handlers to write().

    + Added write_handler examples.

    + Added write_to_scalar.pl example in order to answer frequently
      asked question about writing an Excel file to a scalar.

    + Added indent.pl, mod_perl1.pl, mod_perl2.pl and diag_border.pl
      examples.


0.06 August 19 2004

    + Enabled merge_range() as per Spreadsheet::WriteExcel.

    + Added merge.t test for the above behaviour.

    + Added merge1.pl to merge5.pl examples.

    ! Renamed the Excel 5 style merge() format to the more correct
      center_across().

    + Added support for array formulas as suggested by
      Masaaki Hirose.

    + Added array_formula.t test for the above behaviour.

    + Added array_formula.pl example.


0.05 July 2 2004

    ! Fixed bug with implicit <Cell> ss:Index attribute.

    + Added index.t test for the above behaviour.


0.04 July 1 2004

    ! Added XML escape for "\n" and test. Used in set_text_wrap().
      Thanks to Masaaki Hirose and Marc Rosenthal for reports.

    + Enabled set_row() as per Spreadsheet::WriteExcel.

    + Enabled set_column() as per Spreadsheet::WriteExcel.

    + Added tests for set_row() and set_column().


0.03 May 13 2004

    + Added write_date_time() to write dates in Excel XML's
      simplified ISO8601 format.

    + Enabled write_url() as per Spreadsheet::WriteExcel.

    + Added hyperlink.pl and date_time.pl examples.

    + Added web_component.pl example.

    + Added tests for write_date_time().


0.02 April 25 2004

    ! Fixed a Windows case insensitive bug.


0.01 April 24 2004

    First CPAN release.

    + Write strings.

    + Write numbers.

    + Write formulas.

    + Formatting.