Skip to content

Commit

Permalink
Release 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
A---- committed Nov 20, 2015
1 parent 6355991 commit d1c8e12
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ The only dependencies you must use are HighCharts and HighCharts exporting modul

## Changelog

### v1.1.4 – 2015-11-20

* New option to add BOM to CSV/XLS files. This fixes an issue in Microsoft Excel where file encoding sometimes where not recognized properly (#20)

### v1.1.3 – 2015-10-02

* Fixing an issue where the exported image would be cropped when both `scale` and `sourceWidth`/`sourceHeight` have been specified (#16)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "highcharts-export-clientside",
"main": "highcharts-export-clientside.js",
"version": "1.1.3",
"version": "1.1.4",
"homepage": "http://a----.github.io/highcharts-export-clientside/",
"authors": [
"A---- <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion highcharts-export-clientside.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
hasCSVOptions: hasCSVOptions,
csvOpt: csvOpt,
useLocalDecimalPoint: csvOpt.get("useLocalDecimalPoint"),
useBOM: csvOpt.get("useBOM") == true || csvOpt.get("useBOM") == opt.get("type");
useBOM: csvOpt.get("useBOM") == true || csvOpt.get("useBOM") == opt.get("type"),
optionsToCopy: optionsToCopy,
oldOptions: oldOptions
};
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts-export-clientside",
"version": "1.1.3",
"version": "1.1.4",
"title": "Highcharts Client-Side Export Module",
"author": {
"name": "A----",
Expand Down Expand Up @@ -33,7 +33,7 @@
"homepage": "http://a----.github.io/highcharts-export-clientside/",
"docs": "http://a----.github.io/highcharts-export-clientside/",
"bugs": "https://github.com/A----/highcharts-export-clientside/issues",
"download": "https://github.com/A----/highcharts-export-clientside/archive/1.1.3.zip",
"download": "https://github.com/A----/highcharts-export-clientside/archive/1.1.4.zip",
"demo": [
"http://jsfiddle.net/pscjzhe4/1/"
],
Expand Down

0 comments on commit d1c8e12

Please sign in to comment.