-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Comparing changes
Open a pull request
base repository: qax-os/excelize
base: v1.4.1
head repository: qax-os/excelize
compare: v2.0.0
Commits on Jan 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 969f4e2 - Browse repository at this point
Copy the full SHA 969f4e2View commit details
Commits on Jan 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 034de7a - Browse repository at this point
Copy the full SHA 034de7aView commit details -
Merge pull request #330 from zhangleijlu/master
Resolve #318, add new functions `SetPageLayout` and `GetPageLayout`
Configuration menu - View commit details
-
Copy full SHA for 055d3fa - Browse repository at this point
Copy the full SHA 055d3faView commit details
Commits on Jan 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 5dd00b9 - Browse repository at this point
Copy the full SHA 5dd00b9View commit details
Commits on Jan 10, 2019
-
Merge pull request #332 from mmitton/331_style_fill
Do not create a blank fill if no fill is specified in the style format
Configuration menu - View commit details
-
Copy full SHA for b0ed4c1 - Browse repository at this point
Copy the full SHA b0ed4c1View commit details -
New feature: File.DuplicateRowTo() duplicate row to specified row pos…
…ition. DuplicateRowTo() is similar to DuplicateRow() but copies specified row not just after specified source row but to any other specified position below or above source row. Also I made minor modifications of tests: using filepath.Join() instead of direct unix-way paths strings to avoid possible tests fails on other OS.
Configuration menu - View commit details
-
Copy full SHA for 725c1a0 - Browse repository at this point
Copy the full SHA 725c1a0View commit details
Commits on Jan 11, 2019
-
Merge pull request #334 from albenik/duplicate_row
Resolve #333 New feature: File.DuplicateRowTo() duplicate row to a specified row position
Configuration menu - View commit details
-
Copy full SHA for 7f1323f - Browse repository at this point
Copy the full SHA 7f1323fView commit details
Commits on Jan 13, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 81948d9 - Browse repository at this point
Copy the full SHA 81948d9View commit details
Commits on Jan 17, 2019
-
Merge pull request #337 from kkxkkxkkgh/paper-size
The function SetPageLayout support set paper size
Configuration menu - View commit details
-
Copy full SHA for 0c5c99e - Browse repository at this point
Copy the full SHA 0c5c99eView commit details
Commits on Jan 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for daf32a3 - Browse repository at this point
Copy the full SHA daf32a3View commit details
Commits on Jan 24, 2019
-
Merge pull request #340 from rentiansheng/datavalidation_formula_error
fix: datavalidation list error, formula > 255 issue #339
Configuration menu - View commit details
-
Copy full SHA for 36fc39f - Browse repository at this point
Copy the full SHA 36fc39fView commit details
Commits on Jan 29, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b7b925c - Browse repository at this point
Copy the full SHA b7b925cView commit details
Commits on Feb 2, 2019
-
* TestTitleToNumber: more test cases * TitleToNumber: drop use of math.Pow() Compute using pure integers * TitleToNumber: simplify Remove unecessary casts to int
Configuration menu - View commit details
-
Copy full SHA for e780e41 - Browse repository at this point
Copy the full SHA e780e41View commit details
Commits on Feb 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0072bb7 - Browse repository at this point
Copy the full SHA 0072bb7View commit details
Commits on Feb 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c223815 - Browse repository at this point
Copy the full SHA c223815View commit details
Commits on Feb 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1427027 - Browse repository at this point
Copy the full SHA 1427027View commit details
Commits on Feb 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1aed1d7 - Browse repository at this point
Copy the full SHA 1aed1d7View commit details
Commits on Feb 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f66212d - Browse repository at this point
Copy the full SHA f66212dView commit details
Commits on Mar 6, 2019
-
Implement consistent row addressing by Excel row number starting with…
… 1 (#350) * Implement consistent row addressing by Excel row number starting with 1 1. Added second versions for all row manipulation methods with zero-based row addressing. 2. Fixed methods documentation to explicitly describe which row addressing used in method. 3. Added WARNING to README.md. 4. Cosmetic change: All row test moved to file `rows_test.go`. * TravisCI: go1.12 added to tests matrix * BACKWARD INCOMPARTIBLE: Use only Excel numbering logic from 1 row * README updated
Configuration menu - View commit details
-
Copy full SHA for 12c1e24 - Browse repository at this point
Copy the full SHA 12c1e24View commit details
Commits on Mar 7, 2019
-
update README and functions docs (#351)
* update README and functions docs * update README and functions docs
Configuration menu - View commit details
-
Copy full SHA for 164a3e1 - Browse repository at this point
Copy the full SHA 164a3e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b974df4 - Browse repository at this point
Copy the full SHA b974df4View commit details -
Merge pull request #352 from caozhiyi/master
update go test and function docs
Configuration menu - View commit details
-
Copy full SHA for 092f16c - Browse repository at this point
Copy the full SHA 092f16cView commit details
Commits on Mar 19, 2019
-
Huge refactorig for consistent col/row numbering (#356)
* 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
Configuration menu - View commit details
-
Copy full SHA for dc01264 - Browse repository at this point
Copy the full SHA dc01264View commit details
Commits on Mar 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for beff7b4 - Browse repository at this point
Copy the full SHA beff7b4View commit details -
resolve #360, fix axis parse issue when add / get pictures;
typo fixed and go test updated
Configuration menu - View commit details
-
Copy full SHA for 40ea8eb - Browse repository at this point
Copy the full SHA 40ea8ebView commit details
Commits on Mar 21, 2019
-
SetCellFloat for floats with specific precision (#361)
This allows the user to set a floating point value into a cell with a specific number of places after the decimal. Closes #357
Configuration menu - View commit details
-
Copy full SHA for b2c12d7 - Browse repository at this point
Copy the full SHA b2c12d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70b1a29 - Browse repository at this point
Copy the full SHA 70b1a29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d197c6 - Browse repository at this point
Copy the full SHA 7d197c6View commit details
Commits on Mar 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 677a22d - Browse repository at this point
Copy the full SHA 677a22dView commit details
Commits on Mar 23, 2019
-
Add benchmark for adding images to sheet (#367)
* Add benchmark for adding images to sheet This should help track performance regressions in future changes. * Only transform sheet name if necessary
Configuration menu - View commit details
-
Copy full SHA for 2874d75 - Browse repository at this point
Copy the full SHA 2874d75View commit details -
refactor: handler error instead of panic,
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
Configuration menu - View commit details
-
Copy full SHA for 40ff5dc - Browse repository at this point
Copy the full SHA 40ff5dcView commit details
Commits on Mar 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f0244c0 - Browse repository at this point
Copy the full SHA f0244c0View commit details
Commits on Mar 25, 2019
-
Adding the same image should create a drawing referencing the already stored copy of the image. Closes #359
Configuration menu - View commit details
-
Copy full SHA for a94dcb9 - Browse repository at this point
Copy the full SHA a94dcb9View commit details
Commits on Mar 26, 2019
-
resolve #359, optimize for saving duplicate images
Do not save duplicate images
Configuration menu - View commit details
-
Copy full SHA for eca6618 - Browse repository at this point
Copy the full SHA eca6618View commit details
Commits on Apr 4, 2019
-
Fixed bug in column cell to check.
The target cell for calclator the width was shifted by 1.
Configuration menu - View commit details
-
Copy full SHA for 28c02e3 - Browse repository at this point
Copy the full SHA 28c02e3View commit details -
Fixed bug in the calculation target cell(row).
The target cell for calclator the height was shifted by 1.
Configuration menu - View commit details
-
Copy full SHA for b0acd92 - Browse repository at this point
Copy the full SHA b0acd92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8134197 - Browse repository at this point
Copy the full SHA 8134197View commit details
Commits on Apr 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 4e7d93a - Browse repository at this point
Copy the full SHA 4e7d93aView commit details
Commits on Apr 9, 2019
-
Fix out of range panic when removing formula.
Fix file corruption issue when deleting a sheet containing a formula.
Configuration menu - View commit details
-
Copy full SHA for 841ff4a - Browse repository at this point
Copy the full SHA 841ff4aView commit details
Commits on Apr 12, 2019
-
Merge pull request #379 from yoshhiide/bug-calc-position-object
fix calc object position for addPicture
Configuration menu - View commit details
-
Copy full SHA for 8fff533 - Browse repository at this point
Copy the full SHA 8fff533View commit details
Commits on Apr 13, 2019
-
Merge pull request #381 from aplulu/fix_calcchain
Fix two bugs related to Formula
Configuration menu - View commit details
-
Copy full SHA for 031ae30 - Browse repository at this point
Copy the full SHA 031ae30View commit details
Commits on Apr 14, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c423617 - Browse repository at this point
Copy the full SHA c423617View commit details
Commits on Apr 15, 2019
-
add error return value exported functions: GetMergeCells ProtectSheet UnprotectSheet UpdateLinkedValue GetMergeCells SetSheetVisible inner functions: workSheetReader copySheet
Configuration menu - View commit details
-
Copy full SHA for f2df344 - Browse repository at this point
Copy the full SHA f2df344View commit details
Commits on Apr 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a88459d - Browse repository at this point
Copy the full SHA a88459dView commit details -
Resolve #382, rewrite prepareSheetXML to scale linearly (#383)
* 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
Configuration menu - View commit details
-
Copy full SHA for 0f9170a - Browse repository at this point
Copy the full SHA 0f9170aView commit details
Commits on Apr 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0660f30 - Browse repository at this point
Copy the full SHA 0660f30View commit details -
Configuration menu - View commit details
-
Copy full SHA for b45c4b0 - Browse repository at this point
Copy the full SHA b45c4b0View commit details
Commits on Apr 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 095b5fb - Browse repository at this point
Copy the full SHA 095b5fbView commit details
Commits on Apr 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 29b2854 - Browse repository at this point
Copy the full SHA 29b2854View commit details
Commits on Apr 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 01a418b - Browse repository at this point
Copy the full SHA 01a418bView commit details
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.