Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Improve compatibility, fix workbook's rels ID calc error | xuri | 2019-12-23 |
| | |||
* | Fix #533, add support overlapped mergecells | xuri | 2019-12-14 |
| | |||
* | Documentation updated, Go 1.10+ required | xuri | 2019-08-11 |
| | |||
* | Fixed doc corruption when deleting all merged cells | xuri | 2019-08-03 |
| | |||
* | Fix #437, recalculate offset for merged cells adjuster | xuri | 2019-07-20 |
| | |||
* | Fix #424, refactor merged cells adjuster | xuri | 2019-06-12 |
| | |||
* | Fixed #418, #420, #421, init adjust calculation chain support | xuri | 2019-06-08 |
| | | | | Update testing case | ||
* | Resolve #369,#370 | xuri | 2019-04-15 |
| | | | | | | | | | | | | | | | | | | add error return value exported functions: GetMergeCells ProtectSheet UnprotectSheet UpdateLinkedValue GetMergeCells SetSheetVisible inner functions: workSheetReader copySheet | ||
* | refactor: handler error instead of panic, | xuri | 2019-03-23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exported functions: SetCellStyle InsertCol RemoveCol RemoveRow InsertRow DuplicateRow DuplicateRowTo SetRowHeight GetRowHeight GetCellValue GetCellFormula GetCellHyperLink SetCellHyperLink SetCellInt SetCellBool SetCellFloat SetCellStr SetCellDefault GetCellStyle SetCellValue MergeCell SetSheetRow SetRowVisible GetRowVisible SetRowOutlineLevel GetRowOutlineLevel GetRows Columns SearchSheet AddTable GetPicture AutoFilter GetColVisible SetColVisible GetColOutlineLevel SetColOutlineLevel SetColWidth GetColWidth inner functions: adjustHelper adjustMergeCells adjustAutoFilter prepareCell setDefaultTimeStyle timeToExcelTime addDrawingChart addDrawingVML addDrawingPicture getTotalRowsCols checkRow addDrawingShape addTable | ||
* | Typo fixed and godoc updated | xuri | 2019-03-20 |
| | |||
* | Huge refactorig for consistent col/row numbering (#356) | Veniamin Albaev | 2019-03-20 |
* Huge refactorig for consistent col/row numbering Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes. But have to go deeper, do fixes, after do related fixes and again and again. Major improvements: 1. Tests made stronger again (But still be weak). 2. "Empty" returns for incorrect input replaces with panic. 3. Check for correct col/row/cell naming & addressing by default. 4. Removed huge amount of duplicated code. 5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all, and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName(). 6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc). * Formatting fixes |