Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | save bytes on memory instead of string | Lunny Xiao | 2018-05-07 |
| | |||
* | Fix document typo. | Ri Xu | 2018-05-03 |
| | |||
* | Fix typo and adding Chinese version document. | Ri Xu | 2018-04-23 |
| | |||
* | - Add protection properties associated with the cell support, relate issue #191; | Ri Xu | 2018-03-07 |
| | | | | - godoc and go test has been updated | ||
* | - gofmted with -s; | Ri Xu | 2018-01-31 |
| | | | | | - Fix ineffectual assignments in Go code; - Godoc has been updated | ||
* | Avoid looping over unused rows and columns in SetCellStyle. | Martin Sandve Alnæs | 2018-01-29 |
| | | | | | | | | | The recent improvement to SetCellStyle still loops over all the rows before the area, moving the area checks into the loop is more concise and faster. Since the loop now covers the correct area by construction, the inner loop check checkCellInArea is no longer needed. | ||
* | make SetCellStyle quicker by skipping conversions in checkCellInArea, and ↵ | mbresson | 2018-01-19 |
| | | | | | | skipping area checks when we are sure the cell can't be before or past the current row/col Signed-off-by: Matthieu Bresson | ||
* | Travis CI config updated and typo fixed. | Ri Xu | 2017-12-01 |
| | |||
* | - 24 hour time format supported, relate issue #163; | Ri Xu | 2017-12-01 |
| | | | | - godoc and go test updated | ||
* | Improve code readability. | Ri Xu | 2017-09-30 |
| | |||
* | Handle coordinate parse exception, relate issue #122. | Ri Xu | 2017-09-19 |
| | |||
* | - API changed, use worksheet name instead of "sheet" + index, related issue ↵ | Ri Xu | 2017-09-13 |
| | | | | | | #25, #43, #47, #51, #89, #101, #116 and #120. - go test updated | ||
* | - Conditional format with formula support, relate issue #75; | Ri Xu | 2017-08-18 |
| | | | | - go test and readme update | ||
* | Document updated. | Ri Xu | 2017-08-11 |
| | |||
* | - Init conditional format support, relate issue #75; | Ri Xu | 2017-08-11 |
| | | | | - go test and godoc updated | ||
* | Add missing element `xfId` of the styles to fix issue #93. | Ri Xu | 2017-08-07 |
| | |||
* | - Fix `completeCol()` make extra rows, relate issue #87; | Ri Xu | 2017-07-27 |
| | | | | - godoc updated | ||
* | - Support set custom number format, relate issue #86; | Ri Xu | 2017-07-27 |
| | | | | - go test and godoc updated | ||
* | - Add number format code with unicode values, relate issue #86; | Ri Xu | 2017-07-26 |
| | | | | - godoc updated | ||
* | - Fix missing element in worksheet, workbook and styles. Related issue #81; | Ri Xu | 2017-07-15 |
| | | | | - Format code and update readme | ||
* | Currency format code added. | Ri Xu | 2017-07-15 |
| | |||
* | Add currency format code and go test updated. | Ri Xu | 2017-07-15 |
| | |||
* | - Display negative numbers by applying a red color supported; | Ri Xu | 2017-07-15 |
| | | | | - go test updated | ||
* | - Currency format supported, relate issue #80; | Ri Xu | 2017-07-14 |
| | | | | - go test and godoc updated | ||
* | - New function `NewStyle()` added and function `SetCellStyle()` has been ↵ | Ri Xu | 2017-06-29 |
| | | | | | | exported, relate issue #72; - go test and go doc updated | ||
* | Function `GetCellValue()` performance improvement by avoid repeating ↵ | Ri Xu | 2017-06-29 |
| | | | | deserialization, relate issue #70. | ||
* | - Make function `TitleToNumber()` exportable, note that function ↵ | Ri Xu | 2017-06-27 |
| | | | | | | `ToAlphaString()` return value calculation changes, get more info from go doc. Relate issue #63; - Readme and go doc updated | ||
* | - Function `formattedValue()` performance improvement by avoid repeating ↵ | Ri Xu | 2017-06-26 |
| | | | | | | deserialization, relate issue #64; - Make function `ToAlphaString()` exportable, relate issue #63 | ||
* | - Fixed coordinate parse error in function `SetCellStyle()`, relate issue #60; | Ri Xu | 2017-06-12 |
| | | | | - Simplified code | ||
* | - Formatted cell data support, fix issue #48; | Ri Xu | 2017-05-05 |
| | | | | | - Function `SetCellValue()` support `time.Time` data type parameter, relate issue #49; - go doc and go test updated | ||
* | - Font bold, italic and underline style support. Relate issue #45; | Ri Xu | 2017-04-25 |
| | | | | | - Function `GetRows()` doc updated, relate issue #43; - go test and embed template updated | ||
* | - Set number format for a cell support; | Ri Xu | 2017-04-07 |
| | | | | - go test updated | ||
* | Godoc updated. | Ri Xu | 2017-03-30 |
| | |||
* | - Set text in cell align support, note that the parameters of the ↵ | Ri Xu | 2017-03-26 |
| | | | | | | `SetCellStyle` function have changed; - go test updated | ||
* | - Set cell background color and style support; | Ri Xu | 2017-03-19 |
| | | | | | | - Rename function `SetBorder` to `SetCellStyle`; - Complete `xlsxColor` structure definition; - go test updated | ||
* | Performance improvement | Ri Xu | 2017-03-12 |
| | |||
* | - Complete the element `sheetFormatPr` struct definition; | Ri Xu | 2017-03-10 |
| | | | | | | - Partial logic performance optimization, use pointer reference instead of a pass the variable value; - Add comments for content types struct definition; - Update go test `TestSetBorder` section | ||
* | - New feature: border setting support (Related issue #21); | Ri Xu | 2017-03-06 |
- Function parameter code is simplified; - Fix element `Tint` value parsing error in worksheet; - Update go test |