Skip to content

Commit 1422f29

Browse files
Merge branch 'development' of https://github.com/codeinwp/visualizer into issue-217
2 parents 23550be + a8ab884 commit 1422f29

Some content is hidden

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

78 files changed

+7849
-380
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
### v3.0.12 - 2018-10-11
3+
**Changes:**
4+
* Added filter to enable users to change schedule of charts.
5+
* Fixed bug with line chart with timeofday column.
6+
* Fixed bug with scheduled charts that sometimes did not show updated data.
7+
* Javascript can be customized on a per user basis that will not be wiped out on update.
8+
29
### v3.0.11 - 2018-08-15
310
**Changes:**
411
* 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)