diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ddfc6dc..fcdc0b4e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +#### [Version 3.11.0](https://github.com/Codeinwp/visualizer/compare/v3.10.15...v3.11.0) (2024-05-13) + +#### Enhancements +- Added a manual data edit feature to the free version of the plugin +- Improved the flow of chart creation +- Added a chart information panel: backend chart title & quick shortcode access +- Line and Pie charts from the ChartJS library are now available for free users, along with library selection and relative images +- Improved wording in onboarding +- Improved workflow for creating charts via the Visualizer Gutenberg block +- Moved chart library selection to the top of the page and showing charts from the available library only +- Unified chart edition (removed duplicated chart settings in block editor) +- Added optional feature usage data +- Enhanced security +- Improved the UI of the database query option (visible database prefix, sample query, autocompleting table names) [PRO] + ##### [Version 3.10.15](https://github.com/Codeinwp/visualizer/compare/v3.10.14...v3.10.15) (2024-05-10) > Things are getting better every day. 🚀 diff --git a/classes/Visualizer/Plugin.php b/classes/Visualizer/Plugin.php index c23c1302..ba741008 100644 --- a/classes/Visualizer/Plugin.php +++ b/classes/Visualizer/Plugin.php @@ -28,7 +28,7 @@ class Visualizer_Plugin { const NAME = 'visualizer'; - const VERSION = '3.10.15'; + const VERSION = '3.11.0'; // custom post types const CPT_VISUALIZER = 'visualizer'; diff --git a/css/media.css b/css/media.css index b5e29d61..2f56c458 100644 --- a/css/media.css +++ b/css/media.css @@ -1,5 +1,5 @@ /* - Version: 3.10.15 + Version: 3.11.0 */ #visualizer-library-view { padding: 30px 10px 10px 30px; diff --git a/index.php b/index.php index 525e8764..5d582ce1 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/ 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.10.15 + Version: 3.11.0 Author: Themeisle Author URI: http://themeisle.com Requires at least: 5.2 diff --git a/package.json b/package.json index 29d4a4b5..3623ea88 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visualizer", - "version": "3.10.15", + "version": "3.11.0", "description": "Visualizer Lite", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index a995f3c2..d2239f8b 100755 --- a/readme.txt +++ b/readme.txt @@ -226,6 +226,24 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have ` == Changelog == +#### [Version 3.11.0](https://github.com/Codeinwp/visualizer/compare/v3.10.15...v3.11.0) (2024-05-13) + +#### Enhancements +- Added a manual data edit feature to the free version of the plugin +- Improved the flow of chart creation +- Added a chart information panel: backend chart title & quick shortcode access +- Line and Pie charts from the ChartJS library are now available for free users, along with library selection and relative images +- Improved wording in onboarding +- Improved workflow for creating charts via the Visualizer Gutenberg block +- Moved chart library selection to the top of the page and showing charts from the available library only +- Unified chart edition (removed duplicated chart settings in block editor) +- Added optional feature usage data +- Enhanced security +- Improved the UI of the database query option (visible database prefix, sample query, autocompleting table names) [PRO] + + + + ##### [Version 3.10.15](https://github.com/Codeinwp/visualizer/compare/v3.10.14...v3.10.15) (2024-05-10) - Updated internal dependencies