Skip to content

Commit eb0bfe3

Browse files
Merge pull request #410 from Codeinwp/3.2.1
3.2.1
2 parents 79b0917 + fd240d3 commit eb0bfe3

File tree

9 files changed

+33
-7
lines changed

9 files changed

+33
-7
lines changed

CHANGELOG.md

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

2+
### v3.2.0 - 2019-05-03
3+
**Changes:**
4+
* Add support for charts in AMP requests
5+
* Add support to show charts from JSON/REST endpoints
6+
* Fix loading of Google Visualization javascript files
7+
* Add simple editors for editing chart data
8+
* Tested up to WP 5.2
9+
210
### v3.1.3 - 2019-02-24
311
**Changes:**
412
* Fix issue with changing column settings of the last column in table chart

classes/Visualizer/Module/Frontend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function script_loader_tag( $tag, $handle, $src ) {
8585

8686
foreach ( $scripts as $async ) {
8787
if ( $async === $handle ) {
88-
$tag = str_replace( ' src', ' async="async" defer="defer" src', $tag );
88+
$tag = str_replace( ' src', ' defer="defer" src', $tag );
8989
break;
9090
}
9191
}

classes/Visualizer/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class Visualizer_Plugin {
2929

3030
const NAME = 'visualizer';
31-
const VERSION = '3.2.0';
31+
const VERSION = '3.2.1';
3232

3333
// custom post types
3434
const CPT_VISUALIZER = 'visualizer';

css/media.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 3.2.0
2+
Version: 3.2.1
33
*/
44
#visualizer-library-view {
55
padding: 30px 10px 10px 30px;

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: Visualizer: Tables and Charts Manager for WordPress
55
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
66
Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
7-
Version: 3.2.0
7+
Version: 3.2.1
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualizer",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A simple and quite powerful WordPress chart plugin to create and embed interacti
1111

1212
## Description ##
1313

14-
<a href="http://themeisle.com/plugins/visualizer-charts-and-graphs-lite/" rel="nofollow">Visualizer: Tables and Charts Manager for WordPress plugin</a> is a simple, easy to use and quite powerful tool to create, manage and embed interactive charts & tables into your WordPress posts and pages.
14+
<a href="http://themeisle.com/plugins/visualizer-charts-and-graphs-lite/" rel="nofollow">Visualizer: Tables and Charts Manager for WordPress (Lite) plugin</a> is a simple, easy to use and quite powerful tool to create, manage and embed interactive charts & tables into your WordPress posts and pages.
1515

1616
The plugin uses Google Visualization API and DataTables.net to add responsive & animated charts/diagrams, which support cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases. Is the best Excel to WordPress solution who let's you insert charts to your wp site using a simple chart builder.
1717

@@ -145,6 +145,15 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145145
5. Charts library
146146

147147
## Changelog ##
148+
### 3.2.0 - 2019-05-03 ###
149+
150+
* Add support for charts in AMP requests
151+
* Add support to show charts from JSON/REST endpoints
152+
* Fix loading of Google Visualization javascript files
153+
* Add simple editors for editing chart data
154+
* Tested up to WP 5.2
155+
156+
148157
### 3.1.3 - 2019-02-24 ###
149158

150159
* Fix issue with changing column settings of the last column in table chart

readme.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,15 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145145
5. Charts library
146146

147147
== Changelog ==
148+
= 3.2.0 - 2019-05-03 =
149+
150+
* Add support for charts in AMP requests
151+
* Add support to show charts from JSON/REST endpoints
152+
* Fix loading of Google Visualization javascript files
153+
* Add simple editors for editing chart data
154+
* Tested up to WP 5.2
155+
156+
148157
= 3.1.3 - 2019-02-24 =
149158

150159
* Fix issue with changing column settings of the last column in table chart

themeisle-hash.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"index.php":"7a0c58624116ed52980adffda9f70044"}
1+
{"index.php":"86952ddd93206360853ef7ad5255d252"}

0 commit comments

Comments
 (0)