WordPress Charts and Graphs Lite - Version 1.1.4

Version Description

  • Bug with float values has been fixed.
Download this release

Release Info

Developer madpixels
Plugin Icon WordPress Charts and Graphs Lite
Version 1.1.4
Comparing to
See all releases

Code changes from version 1.1.3 to 1.1.4

classes/Visualizer/Plugin.php CHANGED
@@ -30,7 +30,7 @@
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
- const VERSION = '1.1.3';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
+ const VERSION = '1.1.4';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
classes/Visualizer/Source.php CHANGED
@@ -131,9 +131,7 @@ abstract class Visualizer_Source {
131
 
132
  switch ( $series['type'] ) {
133
  case 'number':
134
- $data[$i] = is_float( $data[$i] )
135
- ? floatval( $data[$i] )
136
- : intval( $data[$i] );
137
  break;
138
  case 'boolean':
139
  $data[$i] = filter_validate( $data[$i], FILTER_VALIDATE_BOOLEAN );
131
 
132
  switch ( $series['type'] ) {
133
  case 'number':
134
+ $data[$i] = floatval( $data[$i] );
 
 
135
  break;
136
  case 'boolean':
137
  $data[$i] = filter_validate( $data[$i], FILTER_VALIDATE_BOOLEAN );
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WordPress Visualizer
4
  Plugin URI: http://visualizer.madpixels.net
5
  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: 1.1.3
7
  Author: Madpixels
8
  Author URI: http://madpixels.net
9
  License: GPL v2.0 or later
3
  Plugin Name: WordPress Visualizer
4
  Plugin URI: http://visualizer.madpixels.net
5
  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: 1.1.4
7
  Author: Madpixels
8
  Author URI: http://madpixels.net
9
  License: GPL v2.0 or later
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  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
5
  Requires at least: 3.5
6
  Tested up to: 3.6
7
- Stable tag: 1.1.3
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
@@ -52,6 +52,9 @@ Read how to [create a chart](http://visualizer.madpixels.net/knowledgebase/how-c
52
 
53
  == Changelog ==
54
 
 
 
 
55
  = 1.1.3 =
56
  * Issue with "fseek warning" for Google Spreadsheet document source, was fixed.
57
 
4
  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
5
  Requires at least: 3.5
6
  Tested up to: 3.6
7
+ Stable tag: 1.1.4
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
52
 
53
  == Changelog ==
54
 
55
+ = 1.1.4 =
56
+ * Bug with float values has been fixed.
57
+
58
  = 1.1.3 =
59
  * Issue with "fseek warning" for Google Spreadsheet document source, was fixed.
60