Skip to content

Commit

Permalink
Update to version 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaister committed Feb 17, 2021
1 parent baf17bb commit 38ce71b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@

# Revision history:

### 3.6.0

* Added sponsor link to the project [:heart: Sponsor ExcellentExport.js project:heart:](https://github.com/sponsors/jmaister)
* Transform the project from JavaScript to TypeScript
* Configure Jest as test runner
* _Update npm dependencies to fix vulnerabilities_

### 3.5.0

* Add fixValue and fixArray functions to configuration: these configuration functions can be used to manipulate the values of the cells.
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.5.0
* ExcellentExport 3.6.0
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos ([email protected])
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "excellentexport",
"version": "3.5.0",
"version": "3.6.0",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "http://jordiburgos.com",
Expand Down
4 changes: 2 additions & 2 deletions src/excellentexport.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.5.0
* ExcellentExport 3.6.0
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos ([email protected])
Expand Down Expand Up @@ -57,7 +57,7 @@ const ExcellentExport = function() {
});
};

const version = "3.5.0";
const version = "3.6.0";
const 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>'};
let csvDelimiter = ",";
let csvNewLine = "\r\n";
Expand Down

0 comments on commit 38ce71b

Please sign in to comment.