Skip to content

Commit 5c4682b

Browse files
committed
Update to version 2.0.2
1 parent 104c5ec commit 5c4682b

5 files changed

+10
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Revision history:
4646
* Module can be loaded standalone or with RequireJS.
4747
* Change license to MIT.
4848

49-
### 2.0.1
49+
### 2.0.2
5050

5151
* Fix CSV Chinese characters and other special characters display error in Windows Excel.
5252
* Fix URL.createObjectURL(...) on Firefox.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jmaister/excellentexport",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"type": "component",
55
"description": "A quick Javascript library to create export to Excel/CSV from HTML tables automatically in the browser. No server required.",
66
"license": "MIT",

excellentexport.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ExcellentExport 2.0.1
2+
* ExcellentExport 2.0.2
33
* A client side Javascript export to Excel.
44
*
55
* @author: Jordi Burgos (jordiburgos@gmail.com)
@@ -44,7 +44,7 @@ var ExcellentExport = (function() {
4444
return blob;
4545
}
4646

47-
var version = "2.0.1";
47+
var version = "2.0.2";
4848
var uri = {excel: 'data:application/vnd.ms-excel;base64,', csv: 'data:application/csv;base64,'};
4949
var template = {excel: '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><meta name=ProgId content=Excel.Sheet> <meta name=Generator content="Microsoft Excel 11"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>'};
5050
var csvDelimiter = ",";
@@ -156,4 +156,3 @@ var ExcellentExport = (function() {
156156
global.ExcellentExport = ExcellentExport;
157157
}
158158
})(this);
159-

excellentexport.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "excellentexport",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Client side JavaScript export to Excel or CSV",
55
"license": "MIT",
66
"homepage": "http://jordiburgos.com/post/2014/excellentexport-javascript-export-to-excel-csv.html",

0 commit comments

Comments
 (0)