From d1c8e124c4e81d2e273194ed41d5276ee45ebbf5 Mon Sep 17 00:00:00 2001 From: A---- Date: Fri, 20 Nov 2015 09:04:26 +0100 Subject: [PATCH] Release 1.1.4 --- README.md | 4 ++++ bower.json | 2 +- highcharts-export-clientside.js | 2 +- manifest.json | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f84e7c..1d3b2c9 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/bower.json b/bower.json index 74905ee..63e8fa2 100644 --- a/bower.json +++ b/bower.json @@ -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---- " diff --git a/highcharts-export-clientside.js b/highcharts-export-clientside.js index c3e7e13..ba71ab6 100644 --- a/highcharts-export-clientside.js +++ b/highcharts-export-clientside.js @@ -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 }; diff --git a/manifest.json b/manifest.json index 304a881..a25414f 100644 --- a/manifest.json +++ b/manifest.json @@ -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----", @@ -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/" ],