Skip to content

Commit 4cd5475

Browse files
authored
Sync branch [skip ci]
2 parents d9aa605 + f87c5c5 commit 4cd5475

File tree

7 files changed

+76
-4
lines changed

7 files changed

+76
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#### [Version 4.0.0](https://github.com/Codeinwp/visualizer/compare/v3.11.15...v4.0.0) (2026-03-31)
2+
3+
### New Features
4+
- Introducing AI chart creation powered by D3.js
5+
- You can now import XLSX files natively
6+
- The charts library now includes a grid and list view for easier browsing
7+
- Added a new Elementor widget for displaying Visualizer charts
8+
- Improved auto-sync reliability by replacing WP-Cron with Action Scheduler
9+
10+
### Improvements
11+
- Cleaned up legacy block controls in the Block Editor
12+
13+
### Bug Fixes
14+
- Resolved an issue where lazy charts didn’t render when already in the viewport on page load
15+
- Fixed a fatal error on servers with broken FTP filesystem configuration
16+
- Addressed errors occurring in the getCSV method
17+
- Fixed an intermittent sidebar scroll issue in Chrome
18+
- Prevented a double clipboard alert when copying
19+
- Fixed a bubble chart crash on window resize when using named series in manual configuration
20+
121
##### [Version 3.11.15](https://github.com/Codeinwp/visualizer/compare/v3.11.14...v3.11.15) (2026-03-04)
222

323
- Enhanced security

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.11.15';
31+
const VERSION = '4.0.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.11.15
2+
Version: 4.0.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/
55
Description: Effortlessly create and embed responsive charts and tables with Visualizer, a powerful WordPress plugin that enhances data presentation from multiple sources.
6-
Version: 3.11.15
6+
Version: 4.0.0
77
Author: Themeisle
88
Author URI: http://themeisle.com
99
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.11.15",
3+
"version": "4.0.0",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,12 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
211211

212212
[http://docs.themeisle.com/article/691-how-to-use-google-visualization-variables](http://docs.themeisle.com/article/691-how-to-use-google-visualization-variables)
213213

214+
### How to report a security issue? ###
215+
216+
Plugin security is a core priority for us. If you identify a potential vulnerability, we ask that you disclose it responsibly.
217+
218+
Please follow the reporting protocols outlined on our [Security Page](https://themeisle.com/security/).
219+
214220
## Screenshots ##
215221

216222
1. Charts Selection
@@ -223,6 +229,29 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
223229

224230
## Changelog ##
225231

232+
#### [Version 4.0.0](https://github.com/Codeinwp/visualizer/compare/v3.11.15...v4.0.0) (2026-03-31)
233+
234+
### New Features
235+
- Introducing AI chart creation powered by D3.js
236+
- You can now import XLSX files natively
237+
- The charts library now includes a grid and list view for easier browsing
238+
- Added a new Elementor widget for displaying Visualizer charts
239+
- Improved auto-sync reliability by replacing WP-Cron with Action Scheduler
240+
241+
### Improvements
242+
- Cleaned up legacy block controls in the Block Editor
243+
244+
### Bug Fixes
245+
- Resolved an issue where lazy charts didn’t render when already in the viewport on page load
246+
- Fixed a fatal error on servers with broken FTP filesystem configuration
247+
- Addressed errors occurring in the getCSV method
248+
- Fixed an intermittent sidebar scroll issue in Chrome
249+
- Prevented a double clipboard alert when copying
250+
- Fixed a bubble chart crash on window resize when using named series in manual configuration
251+
252+
253+
254+
226255
##### [Version 3.11.15](https://github.com/Codeinwp/visualizer/compare/v3.11.14...v3.11.15) (2026-03-04)
227256

228257
- Enhanced security

readme.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,29 @@ Please follow the reporting protocols outlined on our [Security Page](https://th
229229

230230
== Changelog ==
231231

232+
#### [Version 4.0.0](https://github.com/Codeinwp/visualizer/compare/v3.11.15...v4.0.0) (2026-03-31)
233+
234+
### New Features
235+
- Introducing AI chart creation powered by D3.js
236+
- You can now import XLSX files natively
237+
- The charts library now includes a grid and list view for easier browsing
238+
- Added a new Elementor widget for displaying Visualizer charts
239+
- Improved auto-sync reliability by replacing WP-Cron with Action Scheduler
240+
241+
### Improvements
242+
- Cleaned up legacy block controls in the Block Editor
243+
244+
### Bug Fixes
245+
- Resolved an issue where lazy charts didn’t render when already in the viewport on page load
246+
- Fixed a fatal error on servers with broken FTP filesystem configuration
247+
- Addressed errors occurring in the getCSV method
248+
- Fixed an intermittent sidebar scroll issue in Chrome
249+
- Prevented a double clipboard alert when copying
250+
- Fixed a bubble chart crash on window resize when using named series in manual configuration
251+
252+
253+
254+
232255
##### [Version 3.11.15](https://github.com/Codeinwp/visualizer/compare/v3.11.14...v3.11.15) (2026-03-04)
233256

234257
- Enhanced security

0 commit comments

Comments
 (0)