WordPress Charts and Graphs Lite - Version 1.3.0.2

Version Description

  • Replaced links to github wiki
Download this release

Release Info

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

Code changes from version 1.3.0.1 to 1.3.0.2

classes/Visualizer/Module/Admin.php CHANGED
@@ -343,18 +343,9 @@ class Visualizer_Module_Admin extends Visualizer_Module {
343
  if ( $plugin_file == plugin_basename( VISUALIZER_BASEFILE ) ) {
344
  // knowledge base link
345
  $plugin_meta[] = sprintf(
346
- '<a href="http://visualizer.madpixels.net/knowledgebase/">%s</a>',
347
  esc_html__( 'Knowledge Base' )
348
  );
349
-
350
- // community link
351
- $plugin_meta[] = sprintf(
352
- '<a href="http://visualizer.madpixels.net/forums/">%s</a>',
353
- esc_html__( 'Community', Visualizer_Plugin::NAME )
354
- );
355
-
356
- // github link
357
- $plugin_meta[] = '<a href="https://github.com/madpixelslabs/visualizer">GitHub Repository</a>';
358
  }
359
 
360
  return $plugin_meta;
343
  if ( $plugin_file == plugin_basename( VISUALIZER_BASEFILE ) ) {
344
  // knowledge base link
345
  $plugin_meta[] = sprintf(
346
+ '<a href="https://github.com/madpixelslabs/visualizer/wiki">%s</a>',
347
  esc_html__( 'Knowledge Base' )
348
  );
 
 
 
 
 
 
 
 
 
349
  }
350
 
351
  return $plugin_meta;
classes/Visualizer/Plugin.php CHANGED
@@ -30,7 +30,7 @@
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
- const VERSION = '1.3.0.1';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
+ const VERSION = '1.3.0.2';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
classes/Visualizer/Render/Page/Data.php CHANGED
@@ -70,7 +70,7 @@ class Visualizer_Render_Page_Data extends Visualizer_Render_Page {
70
  echo '<p class="group-description">';
71
  esc_html_e( 'If you are unsure about how to format your data CSV then please take a look at this sample:', Visualizer_Plugin::NAME );
72
  echo ' <a href="', VISUALIZER_ABSURL, 'samples/', $this->type, '.csv" target="_blank">', $this->type, '.csv</a> ';
73
- printf( esc_html__( 'or read how you can add Google spreadsheet in following %sarticle%s.', Visualizer_Plugin::NAME ), '<a href="http://visualizer.madpixels.net/knowledgebase/how-can-i-populate-data-from-google-spreadsheet/" target="_blank">', '</a>' );
74
  echo '</p>';
75
 
76
  echo '<div>';
70
  echo '<p class="group-description">';
71
  esc_html_e( 'If you are unsure about how to format your data CSV then please take a look at this sample:', Visualizer_Plugin::NAME );
72
  echo ' <a href="', VISUALIZER_ABSURL, 'samples/', $this->type, '.csv" target="_blank">', $this->type, '.csv</a> ';
73
+ printf( esc_html__( 'or read how you can add Google spreadsheet in following %sarticle%s.', Visualizer_Plugin::NAME ), '<a href="https://github.com/madpixelslabs/visualizer/wiki/How-can-I-populate-data-from-Google-Spreadsheet%3F" target="_blank">', '</a>' );
74
  echo '</p>';
75
 
76
  echo '<div>';
index.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
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.3.0.1
7
  Author: Madpixels
8
  Author URI: http://madpixels.net
9
  License: GPL v2.0 or later
1
  <?php
2
  /*
3
  Plugin Name: WordPress Visualizer
4
+ Plugin URI: https://github.com/madpixelslabs/visualizer
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.3.0.2
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: http://goo.gl/hN9FYf
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.7.1
7
- Stable tag: 1.3.0.1
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
@@ -58,6 +58,9 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
58
 
59
  == Changelog ==
60
 
 
 
 
61
  = 1.3.0.1 =
62
  * Added Flattr button
63
 
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.7.1
7
+ Stable tag: 1.3.0.2
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
58
 
59
  == Changelog ==
60
 
61
+ = 1.3.0.2 =
62
+ * Replaced links to github wiki
63
+
64
  = 1.3.0.1 =
65
  * Added Flattr button
66