• R/O
  • HTTP
  • SSH
  • HTTPS

excelize: List of commits

Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets


RSS
Rev. Time Author
24a8d64 2018-09-01 20:38:30 rentiansheng

add datavalidation test and fixed struct bug issue #240

ce5b37a 2018-08-20 17:53:51 Farmerx


# fix : file close 没有关闭

ec37b11 2018-08-06 11:21:24 xuri

Fixes #256 and format document.

0548852 2018-07-30 23:09:41 rentiansheng

data validation funcation

efe3219 2018-07-30 11:06:22 xuri


Delete ISSUE_TEMPLATE.md

df6b0d9 2018-07-29 15:00:21 xuri


Create PULL_REQUEST_TEMPLATE.md

b11b95a 2018-07-27 11:11:13 xuri

Update issue templates

Issue templates have been added.

cddcf85 2018-07-26 10:46:26 xuri


Merge pull request #253 from alex-whitney/252-color-scale-cond-formatting

Use min/mid/max value for 2 and 3 color scale conditional formatting

db7a605 2018-07-25 23:47:14 Alex Whitney

Use min/mid/max value for 2 and 3 color scale conditional formatting

a885bb0 2018-07-25 23:45:09 Alex Whitney

Add failing unit tests for issue-252

a3571ee 2018-07-17 16:28:22 xuri

Bugfix: create worksheet cause file issue. Relate issue #249.

79dfe1c 2018-07-13 18:40:47 xuri

GoDoc updated.

58a7b23 2018-07-10 11:10:38 xuri


Merge pull request #246 from nad2000/retrieve-comments

added retrieval of worksheet comments

d6468fc 2018-07-07 16:59:48 xuri

- Initialize theme support;
- RGBA, HSL color convert has been added;
- go test updated

1a953b6 2018-06-30 19:55:14 Rad Cirskis

added unit tests

e3050d2 2018-06-30 19:37:14 Rad Cirskis

added retieval of worksheet comments

9cb0e93 2018-06-30 17:44:09 xuri

- Update Travis CI to include GOARCH=386 tests, relate issue #239 and #244;
- Fix doc typo

d80d6aa 2018-06-29 10:53:57 xuri


Merge pull request #234 from dolmen-go/WriteTo

Extract WriteTo method (see io.WriterTo) to expose bytes written

07d568a 2018-06-28 11:05:57 xuri


Merge pull request #241 from nad2000/issues/238

improved comment formatting

74c6091 2018-06-28 11:03:53 xuri


Update comment.go

make the comment box's height auto and having the minimum height.

13cf7a3 2018-06-27 15:03:06 xuri


Merge pull request #243 from liepumartins/patch-2

Restore date 32bit compatibility

4855a43 2018-06-26 22:41:26 Mārtiņš

Restore date 32bit compatibility, be more verbose

Do not use large int64 constants that are not available in GOARCH=386
Fix #239

741810a 2018-06-23 20:35:27 Rad Cirskis

improved commenting formatting

3a91b28 2018-06-20 16:53:30 xuri


Merge pull request #237 from liepumartins/patch-1

Ability to parse dates further in future

37c470e 2018-06-20 15:16:25 Mārtiņš

Ability to parse dates further in future

Golangs time.Duration uses nanoseconds, thus it is limited to approximately 290 years.

5db716d 2018-06-17 22:38:14 xuri


Merge pull request #155 from dolmen-go/deepcopy-with-reflect

CopySheet() using reflect instead of encoding/gob

4a1b406 2018-06-15 00:54:31 Olivier Mengué

CopySheet() using reflect instead of encoding/gob

Use github.com/mohae/deepcopy to deep copy worksheets instead of the
internal deepcopy function that was using encoding/gob serialization and
deserialization.

Rationale:
1/ using `encoding/gob` is much slower than
[`mohae/deepcopy`](https://github.com/mohae/deepcopy/)
2/ When building an application this implementation of `deepcopy` drags
the `encoding/gob` package into the binary. And this package is much
bigger than `mohae/deepcopy` (which only depends on `time` and `reflect`).

```
$ LC_ALL=C stat -f "%6z %N" $(go env GOPATH)/pkg/$(go env GOOS)_$(go env GOARCH)/github.com/mohae/deepcopy.a $(go env GOROOT)/pkg/$(go env GOOS)_$(go env GOARCH)/encoding/gob.a
10508 .../pkg/darwin_amd64/github.com/mohae/deepcopy.a
541818 .../pkg/darwin_amd64/encoding/gob.a
```

2132de1 2018-06-15 00:00:00 Olivier Mengué

Extract WriteTo method (see io.WriterTo) to expose bytes written

Extract a WriteTo() method (see io.WriterTo) that exposes the count of bytes
written and rewrite Write() to use it.

ccdefb3 2018-06-12 00:25:28 Sebastian Willing

Documentation:
* Add information about return value of NewSheet()
* Minor documentation language fixes
Samples:
* Added sample go file for dumping a XLSX file to the console

9e463b4 2018-05-27 12:25:55 xuri

- Add error return value for functions: `AddChart()`, `AddComment()`, `AddPicture()`, `AddShape()`, `AddTable()` and `SetConditionalFormat()`
- go test has been updated

Show on old repository browser