Version Description
- 2020-02-14
Download this release
Release Info
Developer | codeinwp |
Plugin | WordPress Charts and Graphs Lite |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4.0 to 3.4.1
- CHANGELOG.md +5 -0
- classes/Visualizer/Module/Admin.php +14 -0
- classes/Visualizer/Module/Chart.php +3 -0
- classes/Visualizer/Module/Language.php +12 -0
- classes/Visualizer/Plugin.php +1 -1
- css/media.css +1 -1
- index.php +1 -1
- js/mce.js +16 -2
- readme.md +16 -10
- readme.txt +26 -20
- themeisle-hash.json +1 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/autoload_real_52.php +3 -3
CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
2 |
### v3.4.0 - 2020-02-13
|
3 |
**Changes:**
|
4 |
* [Feat] Support for authentication for JSON import
|
1 |
|
2 |
+
### v3.4.1 - 2020-02-14
|
3 |
+
**Changes:**
|
4 |
+
* [Fix] Insert chart button in the classic block
|
5 |
+
* [Fix for Pro version] Import from chart did not work
|
6 |
+
|
7 |
### v3.4.0 - 2020-02-13
|
8 |
**Changes:**
|
9 |
* [Feat] Support for authentication for JSON import
|
classes/Visualizer/Module/Admin.php
CHANGED
@@ -198,9 +198,23 @@ class Visualizer_Module_Admin extends Visualizer_Module {
|
|
198 |
$this->_addFilter( 'mce_external_languages', 'add_tinymce_lang', 10, 1 );
|
199 |
$this->_addFilter( 'mce_external_plugins', 'tinymce_plugin', 10, 1 );
|
200 |
$this->_addFilter( 'mce_buttons', 'register_mce_button', 10, 1 );
|
|
|
201 |
}
|
202 |
}
|
203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
/**
|
205 |
* Load plugin translation for - TinyMCE API
|
206 |
*
|
198 |
$this->_addFilter( 'mce_external_languages', 'add_tinymce_lang', 10, 1 );
|
199 |
$this->_addFilter( 'mce_external_plugins', 'tinymce_plugin', 10, 1 );
|
200 |
$this->_addFilter( 'mce_buttons', 'register_mce_button', 10, 1 );
|
201 |
+
$this->_addFilter( 'tiny_mce_before_init', 'get_strings_for_block', 10, 1 );
|
202 |
}
|
203 |
}
|
204 |
|
205 |
+
/**
|
206 |
+
* Add the strings required for the TinyMCE buttons for the classic block (not the classic editor).
|
207 |
+
*
|
208 |
+
* @since ?
|
209 |
+
* @access friendly
|
210 |
+
*/
|
211 |
+
function get_strings_for_block( $settings ) {
|
212 |
+
$class = new Visualizer_Module_Language();
|
213 |
+
$strings = $class->get_strings();
|
214 |
+
$array = array( 'visualizer_tinymce_plugin' => json_encode( $strings ) );
|
215 |
+
return array_merge( $settings, $array );
|
216 |
+
}
|
217 |
+
|
218 |
/**
|
219 |
* Load plugin translation for - TinyMCE API
|
220 |
*
|
classes/Visualizer/Module/Chart.php
CHANGED
@@ -898,6 +898,9 @@ class Visualizer_Module_Chart extends Visualizer_Module {
|
|
898 |
$source = new Visualizer_Source_Csv( $tmpfile );
|
899 |
fclose( $handle );
|
900 |
break;
|
|
|
|
|
|
|
901 |
case 'excel':
|
902 |
// data coming in from the excel editor.
|
903 |
$source = apply_filters( 'visualizer_pro_handle_chart_data', $data, '' );
|
898 |
$source = new Visualizer_Source_Csv( $tmpfile );
|
899 |
fclose( $handle );
|
900 |
break;
|
901 |
+
case 'table':
|
902 |
+
// Import from Chart
|
903 |
+
// fall-through.
|
904 |
case 'excel':
|
905 |
// data coming in from the excel editor.
|
906 |
$source = apply_filters( 'visualizer_pro_handle_chart_data', $data, '' );
|
classes/Visualizer/Module/Language.php
CHANGED
@@ -68,6 +68,18 @@ class Visualizer_Module_Language extends Visualizer_Module {
|
|
68 |
return $translated;
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
|
73 |
$visualizerLangClass = new Visualizer_Module_Language();
|
68 |
return $translated;
|
69 |
}
|
70 |
|
71 |
+
/**
|
72 |
+
*
|
73 |
+
* The method that returns the strings array
|
74 |
+
*
|
75 |
+
* @since ?
|
76 |
+
* @access public
|
77 |
+
* @return array
|
78 |
+
*/
|
79 |
+
public function get_strings() {
|
80 |
+
return $this->strings;
|
81 |
+
}
|
82 |
+
|
83 |
}
|
84 |
|
85 |
$visualizerLangClass = new Visualizer_Module_Language();
|
classes/Visualizer/Plugin.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
-
const VERSION = '3.4.
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
+
const VERSION = '3.4.1';
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
css/media.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
Version: 3.4.
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
1 |
/*
|
2 |
+
Version: 3.4.1
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
index.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Visualizer: Tables and Charts for WordPress
|
5 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
6 |
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.
|
7 |
-
Version: 3.4.
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
4 |
Plugin Name: Visualizer: Tables and Charts for WordPress
|
5 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
6 |
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.
|
7 |
+
Version: 3.4.1
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
js/mce.js
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
(function($) {
|
4 |
tinymce.PluginManager.add('visualizer_mce_button', function( editor, url ) {
|
5 |
editor.addButton( 'visualizer_mce_button', {
|
6 |
-
title:
|
7 |
-
label:
|
8 |
icon: 'visualizer-icon',
|
9 |
onclick: function() {
|
10 |
var frame = wp.media({
|
@@ -16,4 +16,18 @@
|
|
16 |
});
|
17 |
});
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
})(jQuery);
|
3 |
(function($) {
|
4 |
tinymce.PluginManager.add('visualizer_mce_button', function( editor, url ) {
|
5 |
editor.addButton( 'visualizer_mce_button', {
|
6 |
+
title: getTranslation( editor, 'plugin_label' ),
|
7 |
+
label: getTranslation( editor, 'plugin_label' ),
|
8 |
icon: 'visualizer-icon',
|
9 |
onclick: function() {
|
10 |
var frame = wp.media({
|
16 |
});
|
17 |
});
|
18 |
|
19 |
+
/**
|
20 |
+
* Gets the translation from the editor (when classic editor is enabled)
|
21 |
+
* OR
|
22 |
+
* from the settings array inside the editor (when classic block inside gutenberg)
|
23 |
+
*/
|
24 |
+
function getTranslation(editor, slug){
|
25 |
+
var string = editor.getLang('visualizer_tinymce_plugin.' + slug);
|
26 |
+
// if the string is the same as the slug being requested for, look in the settings.
|
27 |
+
if(string === '{#visualizer_tinymce_plugin.' + slug + '}'){
|
28 |
+
string = editor.settings.visualizer_tinymce_plugin[slug];
|
29 |
+
}
|
30 |
+
return string;
|
31 |
+
}
|
32 |
+
|
33 |
})(jQuery);
|
readme.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
# Visualizer: Tables and Charts for WordPress #
|
2 |
-
**Contributors:** [
|
3 |
-
**Tags:** tables, charts, pie, visualization, graphs
|
4 |
**Requires at least:** 3.5
|
5 |
**Tested up to:** 5.3
|
6 |
**Requires PHP:** 5.6
|
@@ -11,13 +11,13 @@
|
|
11 |
A simple and powerful WordPress chart plugin to create responsive charts & tables and embed them into your site.
|
12 |
|
13 |
## Description ##
|
14 |
-
|
15 |
<p><a href="https://themeisle.com/plugins/visualizer-charts-and-graphs/" rel="nofollow">Visualizer: Tables and Charts for WordPress plugin</a> is a powerful and easy to use plugin used to create, manage and embed interactive, responsive charts & tables into your WordPress posts and pages.</p>
|
16 |
|
17 |
The plugin uses Google Visualization API, DataTables.net and ChartJS to add responsive & animated charts, graphs and tables, which support cross-browser compatibility and display perfectly on mobile devices. You can greatly customize all aspects of the charts and tables, and import the data from Excel, CSV, Google Sheets and more!
|
18 |
|
19 |
### 9 Chart types + 6 more in the pro version ###
|
20 |
-
This WordPress graph plugin provides a variety of charts that are optimized to address your WordPress data visualization needs. In the free version, it has line charts, area charts, bar charts, column charts, pie charts, geo charts, table charts, bubble charts, scatter charts. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
21 |
|
22 |
### One of the best table plugin for wordpress ###
|
23 |
On top of our responsive charts and graphs, you can also add our responsive tables to your posts and pages, and customize them however you like. Not only can you customize the design of the tables, you can add sorting capabilities, pagination, search and more. You can view a few examples of what can be done <a href="https://demo.themeisle.com/visualizer/table-chart/">here</a>, but many more things can be done, including pricing tables and product tables.
|
@@ -162,6 +162,12 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
162 |
13. Bar chart
|
163 |
|
164 |
## Changelog ##
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
### 3.4.0 - 2020-02-13 ###
|
166 |
|
167 |
* [Feat] Support for authentication for JSON import
|
@@ -302,15 +308,15 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
302 |
|
303 |
* Adds insert button in chart library.
|
304 |
* Remove frontend assets where they are not needed.
|
305 |
-
* Improve non-English charts compatibility.
|
306 |
* Adds a filter to change charts locale.
|
307 |
|
308 |
|
309 |
### 3.0.6 - 2018-02-27 ###
|
310 |
|
311 |
-
* Fix UTF-8 support while saving the data.
|
312 |
-
* Improve editing experience.
|
313 |
-
* Improves compatibility with Premium version.
|
314 |
* Adds chart button into TinyMCE editor.
|
315 |
|
316 |
|
@@ -360,7 +366,7 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
360 |
|
361 |
### 2.1.8 - 2017-07-03 ###
|
362 |
|
363 |
-
* Added chart title into library.
|
364 |
* Fixed SDK issues with dashboard widget.
|
365 |
|
366 |
|
1 |
+
# Visualizer: Tables and Charts Manager for WordPress # #
|
2 |
+
**Contributors:** [codeinwp](https://profiles.wordpress.org/codeinwp), [marius2012](https://profiles.wordpress.org/marius2012), [marius_codeinwp](https://profiles.wordpress.org/marius_codeinwp), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani), [themeisle](https://profiles.wordpress.org/themeisle), [Madalin_ThemeIsle](https://profiles.wordpress.org/Madalin_ThemeIsle), [contactashish13](https://profiles.wordpress.org/contactashish13)
|
3 |
+
**Tags:** tables, charts, pie, visualization, graphs
|
4 |
**Requires at least:** 3.5
|
5 |
**Tested up to:** 5.3
|
6 |
**Requires PHP:** 5.6
|
11 |
A simple and powerful WordPress chart plugin to create responsive charts & tables and embed them into your site.
|
12 |
|
13 |
## Description ##
|
14 |
+
|
15 |
<p><a href="https://themeisle.com/plugins/visualizer-charts-and-graphs/" rel="nofollow">Visualizer: Tables and Charts for WordPress plugin</a> is a powerful and easy to use plugin used to create, manage and embed interactive, responsive charts & tables into your WordPress posts and pages.</p>
|
16 |
|
17 |
The plugin uses Google Visualization API, DataTables.net and ChartJS to add responsive & animated charts, graphs and tables, which support cross-browser compatibility and display perfectly on mobile devices. You can greatly customize all aspects of the charts and tables, and import the data from Excel, CSV, Google Sheets and more!
|
18 |
|
19 |
### 9 Chart types + 6 more in the pro version ###
|
20 |
+
This WordPress graph plugin provides a variety of charts that are optimized to address your WordPress data visualization needs. In the free version, it has line charts, area charts, bar charts, column charts, pie charts, geo charts, table charts, bubble charts, scatter charts. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
21 |
|
22 |
### One of the best table plugin for wordpress ###
|
23 |
On top of our responsive charts and graphs, you can also add our responsive tables to your posts and pages, and customize them however you like. Not only can you customize the design of the tables, you can add sorting capabilities, pagination, search and more. You can view a few examples of what can be done <a href="https://demo.themeisle.com/visualizer/table-chart/">here</a>, but many more things can be done, including pricing tables and product tables.
|
162 |
13. Bar chart
|
163 |
|
164 |
## Changelog ##
|
165 |
+
### 3.4.1 - 2020-02-14 ###
|
166 |
+
|
167 |
+
* [Fix] Insert chart button in the classic block
|
168 |
+
* [Fix for Pro version] Import from chart did not work
|
169 |
+
|
170 |
+
|
171 |
### 3.4.0 - 2020-02-13 ###
|
172 |
|
173 |
* [Feat] Support for authentication for JSON import
|
308 |
|
309 |
* Adds insert button in chart library.
|
310 |
* Remove frontend assets where they are not needed.
|
311 |
+
* Improve non-English charts compatibility.
|
312 |
* Adds a filter to change charts locale.
|
313 |
|
314 |
|
315 |
### 3.0.6 - 2018-02-27 ###
|
316 |
|
317 |
+
* Fix UTF-8 support while saving the data.
|
318 |
+
* Improve editing experience.
|
319 |
+
* Improves compatibility with Premium version.
|
320 |
* Adds chart button into TinyMCE editor.
|
321 |
|
322 |
|
366 |
|
367 |
### 2.1.8 - 2017-07-03 ###
|
368 |
|
369 |
+
* Added chart title into library.
|
370 |
* Fixed SDK issues with dashboard widget.
|
371 |
|
372 |
|
readme.txt
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
A simple and powerful WordPress chart plugin to create responsive charts & tables and embed them into your site.
|
12 |
|
13 |
## Description ##
|
14 |
-
|
15 |
<p><a href="https://themeisle.com/plugins/visualizer-charts-and-graphs/" rel="nofollow">Visualizer: Tables and Charts for WordPress plugin</a> is a powerful and easy to use plugin used to create, manage and embed interactive, responsive charts & tables into your WordPress posts and pages.</p>
|
16 |
|
17 |
The plugin uses Google Visualization API, DataTables.net and ChartJS to add responsive & animated charts, graphs and tables, which support cross-browser compatibility and display perfectly on mobile devices. You can greatly customize all aspects of the charts and tables, and import the data from Excel, CSV, Google Sheets and more!
|
18 |
|
19 |
### 9 Chart types + 6 more in the pro version ###
|
20 |
-
This WordPress graph plugin provides a variety of charts that are optimized to address your WordPress data visualization needs. In the free version, it has line charts, area charts, bar charts, column charts, pie charts, geo charts, table charts, bubble charts, scatter charts. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
21 |
|
22 |
### One of the best table plugin for wordpress ###
|
23 |
On top of our responsive charts and graphs, you can also add our responsive tables to your posts and pages, and customize them however you like. Not only can you customize the design of the tables, you can add sorting capabilities, pagination, search and more. You can view a few examples of what can be done <a href="https://demo.themeisle.com/visualizer/table-chart/">here</a>, but many more things can be done, including pricing tables and product tables.
|
@@ -162,7 +162,13 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
162 |
13. Bar chart
|
163 |
|
164 |
== Changelog ==
|
165 |
-
= 3.4.
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
* [Feat] Support for authentication for JSON import
|
168 |
* [Feat] New chart type: Bubble
|
@@ -177,17 +183,17 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
177 |
* [Fix] Long responsive table can overflow on smaller screens
|
178 |
|
179 |
|
180 |
-
= 3.3.4 - 2019-11-15 =
|
181 |
|
182 |
* Fix issue with table chart not loading in the block editor
|
183 |
|
184 |
|
185 |
-
= 3.3.3 - 2019-11-12 =
|
186 |
|
187 |
* Tested upto WordPress 5.3
|
188 |
|
189 |
|
190 |
-
= 3.3.2 - 2019-10-03 =
|
191 |
|
192 |
* Add support for Dataset schema
|
193 |
* Horizontal Axis formatting should apply to tooltips
|
@@ -302,15 +308,15 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
302 |
|
303 |
* Adds insert button in chart library.
|
304 |
* Remove frontend assets where they are not needed.
|
305 |
-
* Improve non-English charts compatibility.
|
306 |
* Adds a filter to change charts locale.
|
307 |
|
308 |
|
309 |
### 3.0.6 - 2018-02-27 ###
|
310 |
|
311 |
-
* Fix UTF-8 support while saving the data.
|
312 |
-
* Improve editing experience.
|
313 |
-
* Improves compatibility with Premium version.
|
314 |
* Adds chart button into TinyMCE editor.
|
315 |
|
316 |
|
@@ -360,7 +366,7 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
360 |
|
361 |
### 2.1.8 - 2017-07-03 ###
|
362 |
|
363 |
-
* Added chart title into library.
|
364 |
* Fixed SDK issues with dashboard widget.
|
365 |
|
366 |
|
1 |
+
=== Visualizer: Tables and Charts Manager for WordPress # ===
|
2 |
+
Contributors: codeinwp,marius2012,marius_codeinwp,hardeepasrani,themeisle,Madalin_ThemeIsle,contactashish13
|
3 |
+
Tags: tables, charts, pie, visualization, graphs
|
4 |
+
Requires at least: 3.5
|
5 |
+
Tested up to: 5.3
|
6 |
+
Requires PHP: 5.6
|
7 |
+
Stable tag: trunk
|
8 |
+
License: GPL v2.0 or later
|
9 |
+
License URI: http://www.opensource.org/licenses/gpl-license.php
|
10 |
|
11 |
A simple and powerful WordPress chart plugin to create responsive charts & tables and embed them into your site.
|
12 |
|
13 |
## Description ##
|
14 |
+
|
15 |
<p><a href="https://themeisle.com/plugins/visualizer-charts-and-graphs/" rel="nofollow">Visualizer: Tables and Charts for WordPress plugin</a> is a powerful and easy to use plugin used to create, manage and embed interactive, responsive charts & tables into your WordPress posts and pages.</p>
|
16 |
|
17 |
The plugin uses Google Visualization API, DataTables.net and ChartJS to add responsive & animated charts, graphs and tables, which support cross-browser compatibility and display perfectly on mobile devices. You can greatly customize all aspects of the charts and tables, and import the data from Excel, CSV, Google Sheets and more!
|
18 |
|
19 |
### 9 Chart types + 6 more in the pro version ###
|
20 |
+
This WordPress graph plugin provides a variety of charts that are optimized to address your WordPress data visualization needs. In the free version, it has line charts, area charts, bar charts, column charts, pie charts, geo charts, table charts, bubble charts, scatter charts. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
21 |
|
22 |
### One of the best table plugin for wordpress ###
|
23 |
On top of our responsive charts and graphs, you can also add our responsive tables to your posts and pages, and customize them however you like. Not only can you customize the design of the tables, you can add sorting capabilities, pagination, search and more. You can view a few examples of what can be done <a href="https://demo.themeisle.com/visualizer/table-chart/">here</a>, but many more things can be done, including pricing tables and product tables.
|
162 |
13. Bar chart
|
163 |
|
164 |
== Changelog ==
|
165 |
+
= 3.4.1 - 2020-02-14 =
|
166 |
+
|
167 |
+
* [Fix] Insert chart button in the classic block
|
168 |
+
* [Fix for Pro version] Import from chart did not work
|
169 |
+
|
170 |
+
|
171 |
+
= 3.4.0 - 2020-02-13 =
|
172 |
|
173 |
* [Feat] Support for authentication for JSON import
|
174 |
* [Feat] New chart type: Bubble
|
183 |
* [Fix] Long responsive table can overflow on smaller screens
|
184 |
|
185 |
|
186 |
+
= 3.3.4 - 2019-11-15 =
|
187 |
|
188 |
* Fix issue with table chart not loading in the block editor
|
189 |
|
190 |
|
191 |
+
= 3.3.3 - 2019-11-12 =
|
192 |
|
193 |
* Tested upto WordPress 5.3
|
194 |
|
195 |
|
196 |
+
= 3.3.2 - 2019-10-03 =
|
197 |
|
198 |
* Add support for Dataset schema
|
199 |
* Horizontal Axis formatting should apply to tooltips
|
308 |
|
309 |
* Adds insert button in chart library.
|
310 |
* Remove frontend assets where they are not needed.
|
311 |
+
* Improve non-English charts compatibility.
|
312 |
* Adds a filter to change charts locale.
|
313 |
|
314 |
|
315 |
### 3.0.6 - 2018-02-27 ###
|
316 |
|
317 |
+
* Fix UTF-8 support while saving the data.
|
318 |
+
* Improve editing experience.
|
319 |
+
* Improves compatibility with Premium version.
|
320 |
* Adds chart button into TinyMCE editor.
|
321 |
|
322 |
|
366 |
|
367 |
### 2.1.8 - 2017-07-03 ###
|
368 |
|
369 |
+
* Added chart title into library.
|
370 |
* Fixed SDK issues with dashboard widget.
|
371 |
|
372 |
|
themeisle-hash.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"index.php":"
|
1 |
+
{"index.php":"7229d217418944b0205f1277fbcb9b7c"}
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit34d8983b1c0b179d8649db93e5c46bb1::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit33f237bd00c4dcdf88f0a9ce19a22bf4::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit414dbaf9f7d65653841195fbb55eae04
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit414dbaf9f7d65653841195fbb55eae04
|
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
-
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
function
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit34d8983b1c0b179d8649db93e5c46bb1
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit34d8983b1c0b179d8649db93e5c46bb1', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit34d8983b1c0b179d8649db93e5c46bb1', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
+
composerRequire34d8983b1c0b179d8649db93e5c46bb1($fileIdentifier, $file);
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
+
function composerRequire34d8983b1c0b179d8649db93e5c46bb1($fileIdentifier, $file)
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit403f55fef96523992cb42e915d2a80ac {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInit33f237bd00c4dcdf88f0a9ce19a22bf4 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit33f237bd00c4dcdf88f0a9ce19a22bf4', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit33f237bd00c4dcdf88f0a9ce19a22bf4', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|