Skip to content

Commit f0df73b

Browse files
Merge pull request #3 from Codeinwp/master
Rebase
2 parents 4dd54f3 + 1231d31 commit f0df73b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+11665
-511
lines changed

.jshintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
classes/Visualizer/Gutenberg/**/*.js

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,5 @@ after_deploy:
7373
- chmod +x bin/deploy.sh
7474
- ". ./bin/deploy.sh"
7575
after_failure:
76-
- cat "logs/phpcs.log"
76+
- cat "logs/phpcs.log"
77+
- cat "logs/jslogs.log"

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,51 @@
11

2+
### v3.2.1 - 2019-05-05
3+
**Changes:**
4+
* Fix issue with async loading of scripts
5+
6+
### v3.2.0 - 2019-05-03
7+
**Changes:**
8+
* Add support for charts in AMP requests
9+
* Add support to show charts from JSON/REST endpoints
10+
* Fix loading of Google Visualization javascript files
11+
* Add simple editors for editing chart data
12+
* Tested up to WP 5.2
13+
14+
### v3.1.3 - 2019-02-24
15+
**Changes:**
16+
* Fix issue with changing column settings of the last column in table chart
17+
* Add support for query language to get subset of data from Google Spreadsheet
18+
* Fix conflict with jquery 3.3.x
19+
* Migrated PHPExcel to PhpSpreadsheet
20+
* Front end action 'print' should print the chart and fall back to printing the data
21+
* Fix issue with table chart not showing in IE
22+
* Fix issue with multiple instances of same chart not showing
23+
* Fix issue with date type column does not work with Combo charts
24+
* Tested with WP 5.1
25+
26+
### v3.1.2 - 2018-12-06
27+
**Changes:**
28+
* Fix bug "Warning: A non-numeric value encountered"
29+
* Tested with WP 5.0
30+
31+
### v3.1.1 - 2018-12-05
32+
**Changes:**
33+
* Fix issue with Gutenberg support
34+
* Fix issue with loading new Table chart
35+
* Fix options that don't work correctly with some charts
36+
37+
### v3.1.0 - 2018-12-03
38+
**Changes:**
39+
* Add Table chart
40+
* Fix date format in sample files
41+
42+
### v3.0.12 - 2018-10-11
43+
**Changes:**
44+
* Added filter to enable users to change schedule of charts.
45+
* Fixed bug with line chart with timeofday column.
46+
* Fixed bug with scheduled charts that sometimes did not show updated data.
47+
* Javascript can be customized on a per user basis that will not be wiped out on update.
48+
249
### v3.0.11 - 2018-08-15
350
**Changes:**
451
* Fixed issue with the Series Settings options for the Table Chart
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": "wordpress",
7+
"parserOptions": {
8+
"ecmaFeatures": {
9+
"jsx": true
10+
},
11+
"ecmaVersion": 2018,
12+
"sourceType": "module"
13+
},
14+
"plugins": [
15+
"react"
16+
],
17+
"rules": {
18+
"indent": [
19+
"error",
20+
"tab"
21+
],
22+
"linebreak-style": [
23+
"error",
24+
"unix"
25+
],
26+
"quotes": [
27+
"error",
28+
"single"
29+
],
30+
"semi": [
31+
"error",
32+
"always"
33+
],
34+
"no-cond-assign": "off"
35+
}
36+
}

0 commit comments

Comments
 (0)