1. 27 6月, 2020 1 次提交
  2. 10 4月, 2020 1 次提交
  3. 06 4月, 2020 1 次提交
  4. 19 2月, 2020 1 次提交
  5. 03 1月, 2020 1 次提交
  6. 24 12月, 2019 1 次提交
  7. 22 12月, 2019 1 次提交
  8. 14 12月, 2019 1 次提交
  9. 26 10月, 2019 1 次提交
  10. 02 9月, 2019 1 次提交
  11. 01 9月, 2019 1 次提交
  12. 16 4月, 2019 1 次提交
    • M
      Resolve #382, rewrite prepareSheetXML to scale linearly (#383) · 0f9170a0
      Michael 提交于
      * Rewrite prepareSheetXML to scale linearly
      
      We don't need to backfill columns into every row for most purposes
      Provided makeContiguousColumns for setting styles where we do
      need it for a specific region.
      
      Added a benchmark to monitor progress. For 50,000 rows this went
      from about 11 seconds to 1 second. The improvements are more
      dramatic as the row/column count increases.
      
      * Assigning that row value was redundant
      0f9170a0
  13. 23 3月, 2019 1 次提交
    • xurime's avatar
      refactor: handler error instead of panic, · 40ff5dc1
      xurime 提交于
      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
      40ff5dc1
  14. 21 3月, 2019 2 次提交
  15. 20 3月, 2019 1 次提交
    • V
      Huge refactorig for consistent col/row numbering (#356) · dc012645
      Veniamin Albaev 提交于
      * 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
      dc012645
  16. 27 12月, 2018 1 次提交
    • V
      Tests refactoring · 35426ed5
      Veniamin Albaev 提交于
      Primary motivation: Avoid statefull tests with not ignorable git file tree changes.
      Multiple tests reads and overwrites signle file for won needs.
      Multiple tests reads and overwrites file under version control.
      
      Secondary motivation: Minimal tests logic aligment, separate error expectation
      and not error expectation tests. Introduce sub-test over test data sets and so far.
      
      This commit is not ideal but necessary (IMHO)
      35426ed5
  17. 31 1月, 2018 1 次提交
    • xurime's avatar
      - gofmted with -s; · 638bd44d
      xurime 提交于
      - Fix ineffectual assignments in Go code;
      - Godoc has been updated
      638bd44d
  18. 19 1月, 2018 1 次提交