1. 25 9月, 2017 1 次提交
  2. 11 8月, 2017 1 次提交
    • S
      version bump 0.11.2: proper plaintext parsing · 5b67ac08
      SheetJS 提交于
      - dollar currencies and percentages properly detected as numbers
      - parse potential CDATA segments in XLSX (fixes #775 h/t @awb99)
      - IE8 issues with regex
      - altjs demos
      
      Issues:
      - fixes #673 h/t @huhm
      - fixes #748 h/t @sangpuion
      - fixes #749 h/t @GreggOD
      - fixes #772 h/t @sangpuion @jyyan
      5b67ac08
  3. 10 8月, 2017 1 次提交
    • S
      improved plaintext parsing · 9ba09bab
      SheetJS 提交于
      - fuzzy number check disregards commas (fixes #709 h/t @mz121star)
      - updated to CFB 0.12.1
      - parse_dom_table and html_to_sheet raw option
      - canvas-datagrid demo
      - docs and TS definition update
      9ba09bab
  4. 10 5月, 2017 1 次提交
    • S
      version bump 0.10.0: cleanup · a8736580
      SheetJS 提交于
      - updated SSF to 0.9.2
      - XLSB style records and number format writing
      - CSV avoid parseFloat (fixes #646 h/t @jabbermarky)
      - CSV recognize mac line ending (fixes #648 h/t @charlesread)
      - BIFF2 format table refactored to align with SSF
      - BIFF5 image data exposure
      - SSF custom format auto table update (fixes #267 h/t @Fangmingdu)
      - eslint more checks
      - browser test timeout extended to 10 seconds
      a8736580
  5. 20 4月, 2017 1 次提交
  6. 08 4月, 2017 1 次提交
    • S
      experimental dense representation · f43cacaf
      SheetJS 提交于
      - browser demo save file in global (fixes #573 h/t @WildDusk)
      - flesh out XLSB record expectations (fixes #624 h/t @pgeeh)
      - `dense` mode (fixes #34 h/t @schleumer)
      f43cacaf
  7. 10 3月, 2017 1 次提交
    • S
      version bump 0.9.0: merged ODS into XLSX · 54b528ea
      SheetJS 提交于
      The optional ODS module has been completely merged into xlsx.js and the
      corresponding scripts have been removed.  The new xlsx.js file provides
      appropriate ODS exports, so fixing is a matter of removing ods.js refs.
      54b528ea
  8. 09 3月, 2017 1 次提交
    • S
      version bump 0.8.8: HTML · 7b6fb7b3
      SheetJS 提交于
      - read MSO HTML (fixes #419 h/t @vineetl fixes #458 h/t @tienne)
      - roll out xml namespace fix (closes #362 h/t @PierreOCXP)
      - cellDates clarifications
      7b6fb7b3
  9. 05 3月, 2017 1 次提交
  10. 24 2月, 2017 1 次提交
    • S
      version bump 0.8.6: module flush · 5ae6b196
      SheetJS 提交于
      - fixes #571 h/t @FredrikL @mooyoul
      - pin npm version in travis, see https://github.com/npm/npm/issues/15855
      - updated CFB (fixes #569 h/t @e12009)
      - remove BOM for some SpreadsheetML files
      
      case insensitive zip file search fixes:
      - fixes #439 h/t @chikh
      - fixes #440 h/t @chikh
      - fixes #567 h/t @duzun
      5ae6b196
  11. 04 2月, 2017 1 次提交
    • S
      version bump 0.8.2: ODS and cleanup · 86d6a093
      SheetJS 提交于
      - README and example cleanup
      - basic XLSB and ODS write support
      - flow typecheck for ODS file
        Note: xlsx.js flow fails: https://github.com/facebook/flow/issues/380
      - exposed jszip compression (fixes #220, closes #284)
      
      README issues:
      
      |  id  | author         | comment                                      |
      |-----:|:---------------|:---------------------------------------------|
      | #202 | @sao93859      | closes #202                                  |
      | #211 | @alexanderchan | closes #211 corrected examples               |
      | #327 | @cskaandorp    | changed saveAs example to match write tests  |
      | #424 | @dskrvk        | added note about s2roa h/t @LeonardoPatignio |
      | #496 | @jimmywarting  | closes #496 adapted rABS examples with rAAS  |
      
      ODS file format issues:
      
      |  id  | author         | comment                                      |
      |-----:|:---------------|:---------------------------------------------|
      | #148 | @user4815162342| closes #148 h/t @ziacik                      |
      | #166 | @paulproteus   | closes #166 rudimentary ODS write support    |
      | #177 | @ziacik        | closes #177                                  |
      | #179 | @ziacik        | closes #179 use JSON when available          |
      | #317 | @ziacik        | closes #317                                  |
      | #328 | @think01       | closes #328                                  |
      | #383 | @mdamt         | closes #383 duplicate cells should be copied |
      | #430 | @RB-Lab        | closes #430                                  |
      | #546 | @lgodard       | closes #546 thanks to other changes          |
      86d6a093
  12. 31 12月, 2016 1 次提交
    • S
      version bump 0.8.1: fixes to support node 4+ · 2a756fff
      SheetJS 提交于
      - codepage updated to 1.6.0 (latest)
      - clean up Makefile
      - adapted .travis.yml to support 0.8
      - removed test files that drifted from baseline
      - removed XLSB pseudo-inverse tests due to fails in node 4+
      2a756fff
  13. 03 4月, 2015 1 次提交
  14. 10 10月, 2014 1 次提交
  15. 19 8月, 2014 1 次提交
  16. 30 6月, 2014 1 次提交
    • S
      version bump 0.7.7: needs more cowbell · 6bc24374
      SheetJS 提交于
      - parsexmltag and other hot functions now better optimized for v8
      - monomorphic functions (different types -> different funcs)
      - more efficient decode_range implementation when source is trusted
      - regular expressions cached and simplified without breaking correctness
      - more efficient utf8 techniques when available
      - XLSX: large functions broken down into sub-functions (e.g. `parse_ws_xml`)
      - XLSB: avoid unnecessary binds
      - XLSB: assume no exotic codepage exists (no one else tries to write XLSB)
      - demo exposes rABS / worker / transferable options
      - more tests
      - jszip updated to 2.3.0
      - SSF updated to 0.8.1
      - codepage updated to 1.3.1
      6bc24374
  17. 05 6月, 2014 1 次提交
    • S
      version bump 0.7.6: IE compatibility · 44b55c5c
      SheetJS 提交于
      - jscs linting to check for trailing comma issues (h/t @altkatz)
      - IE: phased out lazy string indexing in favor of charCodeAt
      - XLSX: replaced certain operations in hot functions with faster alternatives
      - updated SSF to 0.7.1
      - improved coverage in tests
      44b55c5c
  18. 22 5月, 2014 1 次提交
    • S
      version bump 0.7.2: bughunt · e1f8dbb8
      SheetJS 提交于
      - read BOM, handle UTF16LE-encoded XML
      - handle namespaces in [Content_Types].xml
      - parse workbook rels to determine sheet files
      - numbers OSX boolean support (apparently requires "0" or "1")
      - XLSX force "General" style to be serialized, omit implied cell type and style
      - updated SSF to 0.7.0 (h/t @sysarchitect)
      - updated jszip to 2.2.2
      - removed old tests/files path, replaced with test_files
      - themes written
      - ignore potential existence of thumbnail when calculating relationship ids
      e1f8dbb8
  19. 18 2月, 2014 1 次提交
  20. 29 1月, 2014 1 次提交
  21. 26 1月, 2014 1 次提交
  22. 23 1月, 2014 1 次提交
  23. 23 11月, 2013 1 次提交
  24. 13 11月, 2013 1 次提交
  25. 10 10月, 2013 8 次提交