Skip to content

Commit 8efb05e

Browse files
release: new version
[Feat] Improved chart creation UX [Feat] New option to control the number of charts per page in the Charts Library [Feat] New option for filtering/ordering charts in the Charts Library [Feat] Support for custom codes for the boolean data type in Table charts [Fix] Support for displaying apostrophes in charts [Fix] Visualizer button layout in the Classic block [Fix] Bulk activation of plugin aborts activation of subsequent plugins
2 parents 556ed88 + 75ab385 commit 8efb05e

Some content is hidden

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

53 files changed

+1945
-5226
lines changed

.distignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ vendor/phpoffice/phpexcel/unitTests
2424
cypress
2525
docker-compose.travis.yml
2626
cypress.env.json.template
27-
cypress.json
27+
cypress.json
28+
.github

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Bug report
3+
about: Report a bug so we can get to squashing it.
4+
5+
---
6+
7+
### Description:
8+
<!-- Describe the bug in a clear and concise way. -->
9+
10+
### How to reproduce:
11+
<!-- Describe the steps needed to reproduce this. -->
12+
1.
13+
2.
14+
3.
15+
16+
### Expected behaviour:
17+
18+
### Current behaviour:
19+
20+
### Reference:
21+
<!-- Screenshots and links that show the bug -->
22+
23+
### Technical info
24+
* WordPress version: x.x.x
25+
* Plugin version: x.x.x
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Feature request
3+
about: Suggest a feature that we can implement.
4+
5+
---
6+
7+
### Description:
8+
<!-- Describe the requested feature in a clear and concise way. -->
9+
10+
### Alternatives:
11+
<!-- If we don't implement this feature, what would be the best alternatives to achieve the same functionality? -->

classes/Visualizer/Gutenberg/.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
],
1717
"rules": {
1818
"indent": [
19-
"warn",
19+
"off",
2020
"tab"
2121
],
2222
"linebreak-style": [
23-
"warn",
23+
"off",
2424
"unix"
2525
],
2626
"quotes": [

classes/Visualizer/Gutenberg/Block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ public function format_chart_data( $data, $series ) {
631631

632632
if ( $row['type'] === 'boolean' ) {
633633
foreach ( $data as $o => $col ) {
634-
$data[ $o ][ $i ] = ! empty( $col[ $i ] ) ? filter_validate( $col[ $i ], FILTER_VALIDATE_BOOLEAN ) : null;
634+
$data[ $o ][ $i ] = ! empty( $col[ $i ] ) ? filter_var( $col[ $i ], FILTER_VALIDATE_BOOLEAN ) : null;
635635
}
636636
}
637637

classes/Visualizer/Gutenberg/build/block.css

Lines changed: 1 addition & 239 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/build/block.js

Lines changed: 69 additions & 2479 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)