Version Description
- Fixed resize issue in the library page.
Download this release
Release Info
Developer | codeinwp |
Plugin | WordPress Charts and Graphs Lite |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- CHANGELOG.md +6 -0
- classes/Visualizer/Plugin.php +1 -1
- classes/Visualizer/Render/Library.php +7 -7
- css/media.css +1 -1
- humans.txt +0 -12
- index.php +1 -1
- readme.txt +3 -0
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +3 -3
- vendor/composer/autoload_real_52.php +3 -3
CHANGELOG.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
### v2.0.3 - 2017-04-13
|
3 |
**Changes:**
|
4 |
- Fixed SVN deploy script.
|
1 |
|
2 |
+
### v2.0.4 - 2017-04-21
|
3 |
+
**Changes:**
|
4 |
+
- Fixed library rendering issue.
|
5 |
+
- Added git tag check for deployment.
|
6 |
+
- Added wraith for visual regression testing.
|
7 |
+
|
8 |
### v2.0.3 - 2017-04-13
|
9 |
**Changes:**
|
10 |
- Fixed SVN deploy script.
|
classes/Visualizer/Plugin.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
-
const VERSION = '2.0.
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
+
const VERSION = '2.0.4';
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
classes/Visualizer/Render/Library.php
CHANGED
@@ -119,13 +119,6 @@ class Visualizer_Render_Library extends Visualizer_Render {
|
|
119 |
$this->_renderChartBox( $placeholder_id, $chart['id'] );
|
120 |
}
|
121 |
echo '</div>';
|
122 |
-
if ( is_array( $this->pagination ) ) {
|
123 |
-
echo '<ul class=" subsubsub">';
|
124 |
-
foreach ( $this->pagination as $page ) {
|
125 |
-
echo '<li class="all">', $page, '</li>';
|
126 |
-
}
|
127 |
-
echo '</ul>';
|
128 |
-
}
|
129 |
} else {
|
130 |
echo '<div id="visualizer-library" class="visualizer-clearfix">';
|
131 |
echo '<div class="visualizer-chart">';
|
@@ -146,6 +139,13 @@ class Visualizer_Render_Library extends Visualizer_Render {
|
|
146 |
}
|
147 |
$this->_renderSidebar();
|
148 |
echo '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
}
|
150 |
|
151 |
/**
|
119 |
$this->_renderChartBox( $placeholder_id, $chart['id'] );
|
120 |
}
|
121 |
echo '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
} else {
|
123 |
echo '<div id="visualizer-library" class="visualizer-clearfix">';
|
124 |
echo '<div class="visualizer-chart">';
|
139 |
}
|
140 |
$this->_renderSidebar();
|
141 |
echo '</div>';
|
142 |
+
if ( is_array( $this->pagination ) ) {
|
143 |
+
echo '<ul class=" subsubsub">';
|
144 |
+
foreach ( $this->pagination as $page ) {
|
145 |
+
echo '<li class="all">', $page, '</li>';
|
146 |
+
}
|
147 |
+
echo '</ul>';
|
148 |
+
}
|
149 |
}
|
150 |
|
151 |
/**
|
css/media.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
Version: 2.0.
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
1 |
/*
|
2 |
+
Version: 2.0.4
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
humans.txt
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
/* TEAM */
|
2 |
-
Chef: Eugene Manuilov
|
3 |
-
Contact: eugene@manuilov.org
|
4 |
-
From: Kyiv, Ukraine
|
5 |
-
|
6 |
-
/* THANKS */
|
7 |
-
|
8 |
-
/* PLUGIN */
|
9 |
-
Created: 2013
|
10 |
-
Components: jQuery, Backbone.js, Underscore.js, Google Visualization API
|
11 |
-
IDE: NetBeans IDE 7.3.1 (Ubuntu)
|
12 |
-
VCS: Git (Bitbucket.org)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Visualizer: Charts and Graphs 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: 2.0.
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
4 |
Plugin Name: Visualizer: Charts and Graphs 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: 2.0.4
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
readme.txt
CHANGED
@@ -118,6 +118,9 @@ http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
121 |
= 2.0.0 =
|
122 |
* Improved design and layout to support multiple datasources.
|
123 |
* Added new integrations in the Pro version.
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 2.0.4 =
|
122 |
+
* Fixed resize issue in the library page.
|
123 |
+
|
124 |
= 2.0.0 =
|
125 |
* Improved design and layout to support multiple datasources.
|
126 |
* Added new integrations in the Pro version.
|
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 ComposerAutoloaderInitaf36df56f8128f3cdc5c6762ea207318::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 ComposerAutoloaderInit4e19d59497e1363da95ea1e2f1ad71c1::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 ComposerAutoloaderInit76aa6d4f4ac7a91d6290124abdf4ace2
|
|
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) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitaf36df56f8128f3cdc5c6762ea207318
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitaf36df56f8128f3cdc5c6762ea207318', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitaf36df56f8128f3cdc5c6762ea207318', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
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 ComposerAutoloaderInite6d1e12d00466981645356f762e86b7e {
|
|
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 ComposerAutoloaderInit4e19d59497e1363da95ea1e2f1ad71c1 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit4e19d59497e1363da95ea1e2f1ad71c1', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit4e19d59497e1363da95ea1e2f1ad71c1', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|