1. 04 6月, 2021 1 次提交
    • A
      This closes #409 Remove UTC timezone requirement from date.go (#853) · 58f92875
      Alluuu 提交于
      According to issue #409
      
      There is absolutely no reason for the timezone to be in UTC, and converting the local times to UTC while keeping values is hacky at least.
      
      Excel has no understanding of timezones, hence the user of this library should know what timezone their values are supposed to be, by following the timezone within their timeTime structs.
      58f92875
  2. 10 5月, 2021 1 次提交
  3. 30 4月, 2021 1 次提交
  4. 30 3月, 2021 1 次提交
  5. 03 3月, 2021 1 次提交
  6. 15 2月, 2021 1 次提交
  7. 11 11月, 2020 1 次提交
  8. 06 11月, 2020 1 次提交
  9. 04 11月, 2020 1 次提交
  10. 23 10月, 2020 1 次提交
  11. 18 10月, 2020 1 次提交
  12. 04 10月, 2020 1 次提交
    • A
      extend cell value load to support custom datetime format (#703) · f2b8798a
      Artem Kustikov 提交于
      * extend cell value load to support custom datetime format
      
      * cleanup incorrect imports
      
      * fix numeric values conversion as done in legacy Excel
      
      * fix tests coverage
      
      * revert temporary package name fix
      
      * remove personal info from test XLSX files
      
      * remove unused dependencies
      
      * update format conversion in parseTime
      
      * new UT to increase code coverage
      
      * Resolve code review issue for PR #703
      
      * Rename broken file name generated by unit test
      Co-authored-by: xurime's avatarxuri <xuri.me@gmail.com>
      f2b8798a
  13. 02 9月, 2020 1 次提交
  14. 01 9月, 2020 1 次提交
  15. 09 7月, 2020 1 次提交
  16. 29 5月, 2020 1 次提交
  17. 24 5月, 2020 1 次提交
  18. 23 5月, 2020 1 次提交
  19. 23 4月, 2020 1 次提交
  20. 31 3月, 2020 1 次提交
  21. 16 3月, 2020 1 次提交
  22. 10 3月, 2020 1 次提交
  23. 19 2月, 2020 1 次提交
  24. 03 1月, 2020 1 次提交
  25. 29 12月, 2019 1 次提交
  26. 24 12月, 2019 1 次提交
  27. 23 12月, 2019 1 次提交
  28. 22 12月, 2019 1 次提交
  29. 14 12月, 2019 1 次提交
  30. 26 10月, 2019 1 次提交
  31. 24 10月, 2019 1 次提交
  32. 23 9月, 2019 1 次提交
  33. 22 9月, 2019 1 次提交
    • C
      Allow access to more formula attributes in SetCellFormula (#484) · 3280e1b6
      Christian Fiedler 提交于
      * Allow access to more formula attributes in SetCellFormula
      
      Make SetCellFormula variadic to not break API.
      The new arguments are option arguments in which the type of
      the formula and the ref attribute may be set.
      These need to be set for an array formula to work.
      
      * Add TestWriteArrayFormula to test optional parameters of SetCellFormula
      
      TestWriteArrayFormula writes a document to the test directory that
      contains array formulas that are used to calculate standard deviations.
      The file also contains values calculated by the Go testcase, so the
      results can be verified. It should be tested, if the array formula
      works (i.e. shows a number, not an error) and that the values calculated
      by the formula and those calculated by Go are the same.
      3280e1b6
  34. 21 8月, 2019 1 次提交
  35. 09 8月, 2019 1 次提交
    • H
      Handle multi row inline strings · acd76425
      Harris 提交于
      The inline string struct is actually the same
      as the shared strings struct, reuse it.
      
      Note that Go version 1.10 is required.
      
      Fixes #462
      acd76425
  36. 07 8月, 2019 1 次提交
    • H
      Further improve read performance · e07581e9
      Harris 提交于
      Instead of re-encoding the full sheet to change the namespaces
      in the encoded bytes, read the sheet again and do the byte
      replacements there.
      
      In this case, file access ends up being more performant than
      marshaling the sheet back to XML.
      
      In the SharedStrings test, ensure the strings are actually read.
      
      Fix #439
      e07581e9
  37. 21 7月, 2019 1 次提交
  38. 27 6月, 2019 1 次提交
  39. 18 6月, 2019 1 次提交
  40. 09 6月, 2019 1 次提交