README.rdoc in write_xlsx-0.60.0 vs README.rdoc in write_xlsx-0.61.0

- old
+ new

@@ -1,8 +1,8 @@ = write_xlsx -gem to create a new file in the Excel 2007+ XLSX format, and you can use the same interface as writeexcel gem. write_xlsx is converted from Perl's module Excel::Writer::XLSX-0.58, https://github.com/jmcnamara/excel-writer-xlsx . +gem to create a new file in the Excel 2007+ XLSX format, and you can use the same interface as writeexcel gem. write_xlsx is converted from Perl's module Excel::Writer::XLSX-0.60, https://github.com/jmcnamara/excel-writer-xlsx . == Description The WriteXLSX supports the following features: * Multiple worksheets @@ -13,10 +13,11 @@ * Images * Charts * Autofilters * Data validation * Conditional formatting +* Macros * Tables * Shapes * Sparklines * Hyperlinks * Rich string formats @@ -72,9 +73,18 @@ worksheet.write('A4', '=SIN(PI()/4)') workbook.close == Recent change +2013-02-23 v0.61.0 + Allow a cell url string to be over written with a number or formula + using a second write() call to the same cell. The url remains intact. + + Added Worksheet#set_default_row method to set worksheet default values + for rows. + + Added Chart#size method to set the chart dimensions. + 2013-02-19 v0.60.0 Added Excel form buttons via the worksheet insert_button() method. This allows the user to tie the button to an embedded macro imported using add_vba_project(). The portal to the dungeon dimensions is now fully open.