excelize/test
xuri 60b9d029a6
Breaking changes: changed the function signature for 4 exported functions
- Change
    `func (f *File) AddVBAProject(bin string) error`
    to
    `func (f *File) AddVBAProject(file []byte) error`
- Change
    `func (f *File) GetComments() (map[string][]Comment, error)`
    to
    `func (f *File) GetComments(sheet string) ([]Comment, error)`
- Change
    `func (f *File) AddTable(sheet, rangeRef string, opts *TableOptions) error`
    to
    `func (f *File) AddTable(sheet string, table *Table) error`
- Change
    `func (sw *StreamWriter) AddTable(rangeRef string, opts *TableOptions) error`
    to
    `func (sw *StreamWriter) AddTable(table *Table) error`
- Rename exported data type `TableOptions` to `Table`
- Simplify the assert statements in the unit tests
- Update documents for the functions
- Update unit tests
2023-03-25 13:30:13 +08:00
..
images Add support for insert BMP format images 2023-02-05 01:30:38 +08:00
BadWorkbook.xlsx Testing files updated 2019-09-02 21:52:55 +08:00
Book1.xlsx This closes #1296, add new function `GetRowOpts` for stream reader (#1297) 2022-08-11 00:20:48 +08:00
CalcChain.xlsx Testing files updated 2019-09-02 21:52:55 +08:00
MergeCell.xlsx Testing files updated 2019-09-02 21:52:55 +08:00
OverflowNumericCell.xlsx Testing files updated 2019-09-02 21:52:55 +08:00
SharedStrings.xlsx Documentation updated, Go 1.10+ required 2019-08-11 00:36:14 +08:00
encryptAES.xlsx support ECMA-376 document standard encryption, ref #199 2020-09-02 23:14:19 +08:00
encryptSHA1.xlsx Resolve #199, init password protection spreadsheet support 2020-09-01 00:47:44 +08:00
vbaProject.bin Breaking changes: changed the function signature for 4 exported functions 2023-03-25 13:30:13 +08:00