Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Tags: box/spout

Tags

v3.3.0

Toggle v3.3.0's commit message
Update documentation with number format

v3.2.0

Toggle v3.2.0's commit message
Fix constant usage in example

v3.1.0

Toggle v3.1.0's commit message
Add support for cells in error when writing XLSX and ODS

When appending data to an existing sheet, it was possible to get cells in error when reading (DIV/0 for instance). When trying to write them back, `addRow` would throw because `Cell`s in error were not supported by the writers.

v3.0.1

Toggle v3.0.1's commit message
Fix reading of 1904 dates option

Whether the spreadsheet is using 1904 dates or not is controlled by a XML property. Its value can be the string "false" that is not mapped to the boolean "false" but to the boolean "true"... Therefore Spout was previously using the wrong date system when this property was set.

v3.0.0

Toggle v3.0.0's commit message
Merge branch 'master' into develop_3.0

v2.7.3

Toggle v2.7.3's commit message
Change Worksheet function visibility from private to protected in ord…

…er to class extending. We have created small package on top of the Spout for support cell number format and per cell styles.

v2.7.2

Toggle v2.7.2's commit message
Prevent error when close() called while writer already closed (#402)

v2.7.1

Toggle v2.7.1's commit message
Fix crash when using associative array with empty row (#354)

v2.7.0

Toggle v2.7.0's commit message
Move ReaderCommonOptions class to Common folder (#343)

v2.6.0

Toggle v2.6.0's commit message
Apply custom style to empty cells if needed (#307)

Fixes #295

If a row should be written with a custom style, the handling of empty cells should change.
Instead of being skipped entirely, empty cells will be applied the custom style, if this style has custom background color or borders.
If not, then the cell definition can still be skipped.