Skip to content

Commit 23b31d1

Browse files
author
themeisle[bot]
committed
chore(release): 3.11.0
#### [Version 3.11.0](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]
1 parent 1aa3aed commit 23b31d1

File tree

6 files changed

+37
-4
lines changed

6 files changed

+37
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#### [Version 3.11.0](https://github.com/Codeinwp/visualizer/compare/v3.10.15...v3.11.0) (2024-05-13)
2+
3+
#### Enhancements
4+
- Added a manual data edit feature to the free version of the plugin
5+
- Improved the flow of chart creation
6+
- Added a chart information panel: backend chart title & quick shortcode access
7+
- Line and Pie charts from the ChartJS library are now available for free users, along with library selection and relative images
8+
- Improved wording in onboarding
9+
- Improved workflow for creating charts via the Visualizer Gutenberg block
10+
- Moved chart library selection to the top of the page and showing charts from the available library only
11+
- Unified chart edition (removed duplicated chart settings in block editor)
12+
- Added optional feature usage data
13+
- Enhanced security
14+
- Improved the UI of the database query option (visible database prefix, sample query, autocompleting table names) [PRO]
15+
116
##### [Version 3.10.15](https://github.com/Codeinwp/visualizer/compare/v3.10.14...v3.10.15) (2024-05-10)
217

318
> Things are getting better every day. 🚀

classes/Visualizer/Plugin.php

+1-1
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.10.15';
31+
const VERSION = '3.11.0';
3232

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

css/media.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 3.10.15
2+
Version: 3.11.0
33
*/
44
#visualizer-library-view {
55
padding: 30px 10px 10px 30px;

index.php

+1-1
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/
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.10.15
6+
Version: 3.11.0
77
Author: Themeisle
88
Author URI: http://themeisle.com
99
Requires at least: 5.2

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualizer",
3-
"version": "3.10.15",
3+
"version": "3.11.0",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.txt

+18
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,24 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
226226

227227
== Changelog ==
228228

229+
#### [Version 3.11.0](https://github.com/Codeinwp/visualizer/compare/v3.10.15...v3.11.0) (2024-05-13)
230+
231+
#### Enhancements
232+
- Added a manual data edit feature to the free version of the plugin
233+
- Improved the flow of chart creation
234+
- Added a chart information panel: backend chart title & quick shortcode access
235+
- Line and Pie charts from the ChartJS library are now available for free users, along with library selection and relative images
236+
- Improved wording in onboarding
237+
- Improved workflow for creating charts via the Visualizer Gutenberg block
238+
- Moved chart library selection to the top of the page and showing charts from the available library only
239+
- Unified chart edition (removed duplicated chart settings in block editor)
240+
- Added optional feature usage data
241+
- Enhanced security
242+
- Improved the UI of the database query option (visible database prefix, sample query, autocompleting table names) [PRO]
243+
244+
245+
246+
229247
##### [Version 3.10.15](https://github.com/Codeinwp/visualizer/compare/v3.10.14...v3.10.15) (2024-05-10)
230248

231249
- Updated internal dependencies

0 commit comments

Comments
 (0)