Skip to content

Commit b5c2ee8

Browse files
author
cristian-ungureanu
committed
Merge branch 'master' of https://github.com/Codeinwp/visualizer into development
2 parents 71a18f3 + 0437b39 commit b5c2ee8

File tree

6 files changed

+84
-5
lines changed

6 files changed

+84
-5
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
#### [Version 3.7.0](https://github.com/Codeinwp/visualizer/compare/v3.6.1...v3.7.0) (2021-10-07)
2+
3+
#### Features
4+
- Add option to enable/disable save the chart image
5+
- Enhanced caching
6+
7+
#### Fixes
8+
- Fix undefined variable errors when using Gutenberg blocks
9+
- Fix broken chart in iOS and Safari
10+
- Fix custom refresh time support for DB chart
11+
- Fix table placed inside accordion cannot be scrolled down (refreshes all the time)
12+
- Fix pagination doesn't work in the library
13+
- Fix HTML entities in JSON break Visualizer Table Chart
14+
- Fix string type columns affect the target of the formatting applied to a number column
15+
16+
##### [Version 3.6.1](https://github.com/Codeinwp/visualizer/compare/v3.6.0...v3.6.1) (2021-08-04)
17+
18+
- Fix broken dropdown style issue
19+
- Add block support in widget area
20+
- Add wp alpha color picker support
21+
- Fix broken chart layout issue when add long title
22+
23+
#### [Version 3.6.0](https://github.com/Codeinwp/visualizer/compare/v3.5.1...v3.6.0) (2021-07-08)
24+
25+
### Features
26+
* Adds option to render chart as image
27+
* Automatically render chart as image on AMP
28+
29+
### Fixes
30+
* [Chart Type: TABLE] When adding a blank header, the last column of the table disappears
31+
* Styling is not applied to Chart Area for Table Chart ( Margin, Width, Height)
32+
* Improve compatibility with Site Kit by Google
33+
* Loading icon doesn't disappear until you edit the chart again [Line Chart]
34+
* Broken chart if used inside an accordion (expand/collapse)
35+
136
##### [Version 3.5.1](https://github.com/Codeinwp/visualizer/compare/v3.5.0...v3.5.1) (2021-05-25)
237

338

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.5.1';
31+
const VERSION = '3.7.0';
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.5.1
2+
Version: 3.7.0
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
@@ -3,7 +3,7 @@
33
Plugin Name: Visualizer: Tables and Charts for WordPress
44
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
55
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.
6-
Version: 3.5.1
6+
Version: 3.7.0
77
Author: Themeisle
88
Author URI: http://themeisle.com
99
Requires at least: 3.5

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.5.1",
3+
"version": "3.7.0",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: codeinwp,themeisle,marius2012,marius_codeinwp,hardeepasrani,rozroz,Madalin_ThemeIsle
33
Tags: tables, charts, pie, visualization, graphs
44
Requires at least: 3.5
5-
Tested up to: 5.7
5+
Tested up to: 5.8
66
Requires PHP: 5.6
77
Stable tag: trunk
88
License: GPL v2.0 or later
@@ -163,6 +163,50 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
163163

164164
== Changelog ==
165165

166+
#### [Version 3.7.0](https://github.com/Codeinwp/visualizer/compare/v3.6.1...v3.7.0) (2021-10-07)
167+
168+
#### Features
169+
- Add option to enable/disable save the chart image
170+
- Enhanced caching
171+
172+
#### Fixes
173+
- Fix undefined variable errors when using Gutenberg blocks
174+
- Fix broken chart in iOS and Safari
175+
- Fix custom refresh time support for DB chart
176+
- Fix table placed inside accordion cannot be scrolled down (refreshes all the time)
177+
- Fix pagination doesn't work in the library
178+
- Fix HTML entities in JSON break Visualizer Table Chart
179+
- Fix string type columns affect the target of the formatting applied to a number column
180+
181+
182+
183+
184+
##### [Version 3.6.1](https://github.com/Codeinwp/visualizer/compare/v3.6.0...v3.6.1) (2021-08-04)
185+
186+
- Fix broken dropdown style issue
187+
- Add block support in widget area
188+
- Add wp alpha color picker support
189+
- Fix broken chart layout issue when add long title
190+
191+
192+
193+
194+
#### [Version 3.6.0](https://github.com/Codeinwp/visualizer/compare/v3.5.1...v3.6.0) (2021-07-08)
195+
196+
### Features
197+
* Adds option to render chart as image
198+
* Automatically render chart as image on AMP
199+
200+
### Fixes
201+
* [Chart Type: TABLE] When adding a blank header, the last column of the table disappears
202+
* Styling is not applied to Chart Area for Table Chart ( Margin, Width, Height)
203+
* Improve compatibility with Site Kit by Google
204+
* Loading icon doesn't disappear until you edit the chart again [Line Chart]
205+
* Broken chart if used inside an accordion (expand/collapse)
206+
207+
208+
209+
166210
##### [Version 3.5.1](https://github.com/Codeinwp/visualizer/compare/v3.5.0...v3.5.1) (2021-05-25)
167211

168212

0 commit comments

Comments
 (0)