WordPress Charts and Graphs Lite - Version 3.1.2

Version Description

  • 2018-12-06
Download this release

Release Info

Developer codeinwp
Plugin Icon WordPress Charts and Graphs Lite
Version 3.1.2
Comparing to
See all releases

Code changes from version 3.1.1 to 3.1.2

CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
 
 
 
 
 
 
2
  ### v3.1.1 - 2018-12-05
3
  **Changes:**
4
  * Fix issue with Gutenberg support
1
 
2
+ ### v3.1.2 - 2018-12-06
3
+ **Changes:**
4
+ * Fix bug "Warning: A non-numeric value encountered"
5
+ * Tested with WP 5.0
6
+
7
  ### v3.1.1 - 2018-12-05
8
  **Changes:**
9
  * Fix issue with Gutenberg support
classes/Visualizer/Module/Admin.php CHANGED
@@ -215,8 +215,10 @@ class Visualizer_Module_Admin extends Visualizer_Module {
215
  wp_enqueue_style( 'visualizer-media', VISUALIZER_ABSURL . 'css/media.css', array( 'media-views' ), Visualizer_Plugin::VERSION );
216
 
217
  // Load all the assets for the different libraries we support.
218
- $deps = Visualizer_Render_Sidebar_Google::enqueue_assets( array( 'media-editor' ) );
219
- $deps += Visualizer_Render_Sidebar_Type_DataTable::enqueue_assets( array( 'media-editor' ) );
 
 
220
 
221
  wp_enqueue_script( 'visualizer-media-model', VISUALIZER_ABSURL . 'js/media/model.js', $deps, Visualizer_Plugin::VERSION, true );
222
  wp_enqueue_script( 'visualizer-media-collection', VISUALIZER_ABSURL . 'js/media/collection.js', array( 'visualizer-media-model' ), Visualizer_Plugin::VERSION, true );
215
  wp_enqueue_style( 'visualizer-media', VISUALIZER_ABSURL . 'css/media.css', array( 'media-views' ), Visualizer_Plugin::VERSION );
216
 
217
  // Load all the assets for the different libraries we support.
218
+ $deps = array(
219
+ Visualizer_Render_Sidebar_Google::enqueue_assets( array( 'media-editor' ) ),
220
+ Visualizer_Render_Sidebar_Type_DataTable::enqueue_assets( array( 'media-editor' ) ),
221
+ );
222
 
223
  wp_enqueue_script( 'visualizer-media-model', VISUALIZER_ABSURL . 'js/media/model.js', $deps, Visualizer_Plugin::VERSION, true );
224
  wp_enqueue_script( 'visualizer-media-collection', VISUALIZER_ABSURL . 'js/media/collection.js', array( 'visualizer-media-model' ), Visualizer_Plugin::VERSION, true );
classes/Visualizer/Plugin.php CHANGED
@@ -28,7 +28,7 @@
28
  class Visualizer_Plugin {
29
 
30
  const NAME = 'visualizer';
31
- const VERSION = '3.1.1';
32
 
33
  // custom post types
34
  const CPT_VISUALIZER = 'visualizer';
28
  class Visualizer_Plugin {
29
 
30
  const NAME = 'visualizer';
31
+ const VERSION = '3.1.2';
32
 
33
  // custom post types
34
  const CPT_VISUALIZER = 'visualizer';
css/library.css CHANGED
@@ -294,4 +294,9 @@ button.media-modal-close {
294
 
295
  .dataTables_scrollBody {
296
  overflow: hidden !important;
 
 
 
 
 
297
  }
294
 
295
  .dataTables_scrollBody {
296
  overflow: hidden !important;
297
+ }
298
+
299
+ .dataTables_wrapper {
300
+ height: 300px;
301
+ overflow: hidden !important;
302
  }
css/media.css CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- Version: 3.1.1
3
  */
4
  #visualizer-library-view {
5
  padding: 30px 10px 10px 30px;
1
  /*
2
+ Version: 3.1.2
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 Manager for WordPress (Lite)
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.1.1
8
  Author: Themeisle
9
  Author URI: http://themeisle.com
10
  License: GPL v2.0 or later
4
  Plugin Name: Visualizer: Tables and Charts Manager for WordPress (Lite)
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.1.2
8
  Author: Themeisle
9
  Author URI: http://themeisle.com
10
  License: GPL v2.0 or later
readme.md CHANGED
@@ -1,8 +1,8 @@
1
  # Visualizer: Tables and Charts Manager for WordPress (Lite) # #
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), [rozroz](https://profiles.wordpress.org/rozroz)
3
  **Tags:** chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api, data tables
4
  **Requires at least:** 3.5
5
- **Tested up to:** 4.9
6
  **Stable tag:** trunk
7
  **License:** GPL v2.0 or later
8
  **License URI:** http://www.opensource.org/licenses/gpl-license.php
@@ -145,6 +145,12 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145
  5. Charts library
146
 
147
  ## Changelog ##
 
 
 
 
 
 
148
  ### 3.1.1 - 2018-12-05 ###
149
 
150
  * Fix issue with Gutenberg support
1
  # Visualizer: Tables and Charts Manager for WordPress (Lite) # #
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:** chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api, data tables
4
  **Requires at least:** 3.5
5
+ **Tested up to:** 5.0
6
  **Stable tag:** trunk
7
  **License:** GPL v2.0 or later
8
  **License URI:** http://www.opensource.org/licenses/gpl-license.php
145
  5. Charts library
146
 
147
  ## Changelog ##
148
+ ### 3.1.2 - 2018-12-06 ###
149
+
150
+ * Fix bug "Warning: A non-numeric value encountered"
151
+ * Tested with WP 5.0
152
+
153
+
154
  ### 3.1.1 - 2018-12-05 ###
155
 
156
  * Fix issue with Gutenberg support
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Visualizer: Tables and Charts Manager for WordPress (Lite) # ===
2
- Contributors: codeinwp,marius2012,marius_codeinwp,hardeepasrani,themeisle,Madalin_ThemeIsle,rozroz
3
  Tags: chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api, data tables
4
  Requires at least: 3.5
5
- Tested up to: 4.9
6
  Stable tag: trunk
7
  License: GPL v2.0 or later
8
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -145,6 +145,12 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145
  5. Charts library
146
 
147
  == Changelog ==
 
 
 
 
 
 
148
  = 3.1.1 - 2018-12-05 =
149
 
150
  * Fix issue with Gutenberg support
1
  === Visualizer: Tables and Charts Manager for WordPress (Lite) # ===
2
+ Contributors: codeinwp,marius2012,marius_codeinwp,hardeepasrani,themeisle,Madalin_ThemeIsle,contactashish13
3
  Tags: chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api, data tables
4
  Requires at least: 3.5
5
+ Tested up to: 5.0
6
  Stable tag: trunk
7
  License: GPL v2.0 or later
8
  License URI: http://www.opensource.org/licenses/gpl-license.php
145
  5. Charts library
146
 
147
  == Changelog ==
148
+ = 3.1.2 - 2018-12-06 =
149
+
150
+ * Fix bug "Warning: A non-numeric value encountered"
151
+ * Tested with WP 5.0
152
+
153
+
154
  = 3.1.1 - 2018-12-05 =
155
 
156
  * Fix issue with Gutenberg support
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"index.php":"d0891983de124d6ce2d781aa89ec2813"}
1
+ {"index.php":"2e2ff6d62f10ed7a881b3a41c08853ee"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInite6b2c0543b474221a562bf00bdba0569::getLoader();
vendor/autoload_52.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
- return ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414::getLoader();
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
+ return ComposerAutoloaderInit4ad86f364a7268b942347c843bf040e9::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequirec21036b33b232f157458b22cbd73c961($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequirec21036b33b232f157458b22cbd73c961($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInite6b2c0543b474221a562bf00bdba0569
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInite6b2c0543b474221a562bf00bdba0569', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInite6b2c0543b474221a562bf00bdba0569', '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
+ composerRequiree6b2c0543b474221a562bf00bdba0569($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequiree6b2c0543b474221a562bf00bdba0569($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 ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ class ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414 {
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
+ class ComposerAutoloaderInit4ad86f364a7268b942347c843bf040e9 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit4ad86f364a7268b942347c843bf040e9', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit4ad86f364a7268b942347c843bf040e9', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);