1. 15 2月, 2024 1 次提交
  2. 18 1月, 2024 1 次提交
  3. 09 1月, 2024 1 次提交
    • xurime's avatar
      This closes #1777, fix the GetStyle or GetConditionalStyle function to returns... · 79265655
      xurime 提交于
      This closes #1777, fix the GetStyle or GetConditionalStyle function to returns incorrect DecimalPlaces field value
      
      - Update documentation for the NewStyle function
      - Update unit tests
      - Update dependencies Go module
      - Update GitHub workflow dependencies package version
      - Update copyright agreement statement
      79265655
  4. 01 12月, 2023 1 次提交
  5. 02 11月, 2023 1 次提交
  6. 20 10月, 2023 1 次提交
  7. 06 5月, 2023 1 次提交
  8. 25 3月, 2023 1 次提交
    • xurime's avatar
      Breaking changes: changed the function signature for 4 exported functions · 60b9d029
      xurime 提交于
      - 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
      60b9d029
  9. 23 3月, 2023 1 次提交
  10. 02 1月, 2023 1 次提交
    • xurime's avatar
      This fixed worksheet protection issue · b39626fa
      xurime 提交于
      - Update example code in the documentation
      - Update unit tests
      - Rename `PictureOptions` to `GraphicOptions`
      - Adjust partial options fields data types for the `PictureOptions` and `Shape` structure
      - Update dependencies module
      b39626fa
  11. 13 11月, 2022 1 次提交
  12. 12 11月, 2022 1 次提交
  13. 28 10月, 2022 1 次提交
    • xurime's avatar
      Fix the error on getting the range of merged cells on the worksheet which... · a410b22b
      xurime 提交于
      Fix the error on getting the range of merged cells on the worksheet which contains one cell merged cell range
      
      - Parse workbook default theme for custom theme color support in the feature
      - Variables name typo fix
      - Add system foreground and background color as RGB in the IndexedColorMapping list
      a410b22b
  14. 26 10月, 2022 1 次提交
  15. 24 10月, 2022 1 次提交
    • xurime's avatar
      Support get cell value which contains a date in the ISO 8601 format · 14c6a198
      xurime 提交于
      - Support set and get font color with indexed color
      - New export variable `IndexedColorMapping`
      - Fix getting incorrect page margin settings when the margin is 0
      - Update unit tests and comments typo fixes
      - ref #65, new formula functions: AGGREGATE and SUBTOTAL
      14c6a198
  16. 14 10月, 2022 1 次提交
  17. 08 9月, 2022 1 次提交
  18. 13 8月, 2022 1 次提交
  19. 17 7月, 2022 1 次提交
  20. 29 5月, 2022 1 次提交
  21. 20 5月, 2022 1 次提交
  22. 16 5月, 2022 1 次提交
  23. 04 4月, 2022 1 次提交
  24. 19 3月, 2022 1 次提交
  25. 17 2月, 2022 1 次提交
    • xurime's avatar
      This closes #1148, resolve limitations when adding VBA project to the workbook · f87c39c4
      xurime 提交于
      Added two exported functions `SetWorkbookPrOptions` and `GetWorkbookPrOptions` to support setting and getting the code name property of the workbook
      Re-order fields of the workbook properties group to improve the compatibility
      Go Modules dependencies upgrade
      Put workbook related operating in new `workbook.go` source code
      Library introduction docs block updated
      f87c39c4
  26. 23 1月, 2022 1 次提交
  27. 11 1月, 2022 1 次提交
  28. 09 1月, 2022 1 次提交
  29. 27 12月, 2021 1 次提交
    • xurime's avatar
      This closes #1096, memory usage optimization and another 4 changes · 89b85934
      xurime 提交于
      - Unzip shared string table to system temporary file when large inner XML, reduce memory usage about 70%
      - Remove unnecessary exported variable `XMLHeader`, we can using `encoding/xml` package's `xml.Header` instead of it
      - Using constant instead of inline text for default XML path
      - Rename exported option field `WorksheetUnzipMemLimit` to `UnzipXMLSizeLimit`
      - Unit test and documentation updated
      89b85934
  30. 07 12月, 2021 1 次提交
  31. 01 12月, 2021 1 次提交
  32. 19 9月, 2021 1 次提交
  33. 15 8月, 2021 1 次提交
    • xurime's avatar
      Improve security and simplify code · 48c16de8
      xurime 提交于
      - Make variable name more semantic
      - Reduce cyclomatic complexities for the formula calculate function
      - Support specified unzip size limit on open file options, avoid zip bombs vulnerability attack
      - Typo fix for documentation and error message
      48c16de8
  34. 09 7月, 2021 1 次提交
  35. 05 7月, 2021 1 次提交
  36. 04 7月, 2021 1 次提交
  37. 22 6月, 2021 1 次提交
  38. 10 5月, 2021 1 次提交
  39. 04 4月, 2021 1 次提交
  40. 03 4月, 2021 1 次提交