diff --git a/CHANGELOG.md b/CHANGELOG.md index 67fc4898..44c0e3e1 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +##### [Version 3.6.1](https://github.com/Codeinwp/visualizer/compare/v3.6.0...v3.6.1) (2021-08-04) + +- Fix broken dropdown style issue +- Add block support in widget area +- Add wp alpha color picker support +- Fix broken chart layout issue when add long title + #### [Version 3.6.0](https://github.com/Codeinwp/visualizer/compare/v3.5.1...v3.6.0) (2021-07-08) ### Features diff --git a/classes/Visualizer/Plugin.php b/classes/Visualizer/Plugin.php index 6a26fc41..a0b59968 100644 --- a/classes/Visualizer/Plugin.php +++ b/classes/Visualizer/Plugin.php @@ -28,7 +28,7 @@ class Visualizer_Plugin { const NAME = 'visualizer'; - const VERSION = '3.6.0'; + const VERSION = '3.6.1'; // custom post types const CPT_VISUALIZER = 'visualizer'; diff --git a/css/media.css b/css/media.css index d7b4cb8e..a5b1c1da 100644 --- a/css/media.css +++ b/css/media.css @@ -1,5 +1,5 @@ /* - Version: 3.6.0 + Version: 3.6.1 */ #visualizer-library-view { padding: 30px 10px 10px 30px; diff --git a/index.php b/index.php index d967f256..1b77a259 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ Plugin Name: Visualizer: Tables and Charts for WordPress Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/ 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. - Version: 3.6.0 + Version: 3.6.1 Author: Themeisle Author URI: http://themeisle.com Requires at least: 3.5 diff --git a/package.json b/package.json index fa76e2d5..0a3d7123 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visualizer", - "version": "3.6.0", + "version": "3.6.1", "description": "Visualizer Lite", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index e4eb1388..c32b13c0 100755 --- a/readme.txt +++ b/readme.txt @@ -163,6 +163,16 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have ` == Changelog == +##### [Version 3.6.1](https://github.com/Codeinwp/visualizer/compare/v3.6.0...v3.6.1) (2021-08-04) + +- Fix broken dropdown style issue +- Add block support in widget area +- Add wp alpha color picker support +- Fix broken chart layout issue when add long title + + + + #### [Version 3.6.0](https://github.com/Codeinwp/visualizer/compare/v3.5.1...v3.6.0) (2021-07-08) ### Features