forked from SheetJS/sheetjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump 0.8.3: BIFF2 read/write
- basic support for parsing BIFF2-4 - basic support for writing BIFF2 - cleaned up some bad substr uses for IE6 compatibility - added flow type annotations for xlsx.flow.js - added numerous null guards (fixes SheetJS#255 h/t @martinheidegger) - README cleanup (fixes SheetJS#539 h/t @oliversalzburg) - pin jszip to local version (closes SheetJS#408 h/t @limouri) bower issues: | id | author | comment | |-----:|:------------------|:------------------------------------------| | SheetJS#254 | @kkirsche | fixes SheetJS#254 by removing version from json | | SheetJS#165 | @vincentcialdella | fixes SheetJS#165 by changing default script | | SheetJS#180 | @owencraig | fixes SheetJS#180 by using xlsx.core.min.js | format issues: | id | author | comment | |-----:|:------------------|:------------------------------------------| | SheetJS#271 | @morstaine | fixes SheetJS#271 by reworking related parse fns | | SheetJS#504 | @JanSchuermannPH | fixes SheetJS#504 detect FullPaths h/t @Mithgol | | SheetJS#508 | @basma-emad | fixes SheetJS#508 offending file used `x:` NS |
- Loading branch information
1 parent
06670ae
commit ab2eceb
Showing
79 changed files
with
12,662 additions
and
10,963 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
XLSX.version = '0.8.2'; | ||
XLSX.version = '0.8.3'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
/*:: | ||
declare type Block = any; | ||
declare type BufArray = { | ||
newblk(sz:number):Block; | ||
next(sz:number):Block; | ||
end():any; | ||
push(buf:Block):void; | ||
}; | ||
type RecordHopperCB = {(d:any, R:any, RT:number):?boolean;}; | ||
type EvertType = {[string]:string}; | ||
type EvertNumType = {[string]:number}; | ||
type EvertArrType = {[string]:Array<string>}; | ||
type StringConv = {(string):string}; | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.