WordPress Charts and Graphs Lite - Version 1.7.1

Version Description

Download this release

Release Info

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

Code changes from version 1.7.0 to 1.7.1

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
2
- Fixed bad link on grid lines
3
 
4
 
5
 
6
- Release 1.7.0
1
 
2
+
3
+
4
+
5
+
6
 
7
 
8
 
 
classes/Visualizer/Plugin.php CHANGED
@@ -29,7 +29,7 @@
29
  class Visualizer_Plugin {
30
 
31
  const NAME = 'visualizer';
32
- const VERSION = '1.7.0';
33
 
34
  // custom post types
35
  const CPT_VISUALIZER = 'visualizer';
29
  class Visualizer_Plugin {
30
 
31
  const NAME = 'visualizer';
32
+ const VERSION = '1.7.1';
33
 
34
  // custom post types
35
  const CPT_VISUALIZER = 'visualizer';
classes/Visualizer/Render/Sidebar/Graph.php CHANGED
@@ -426,12 +426,12 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
426
  '%s<br><br>%s<br><br>%s',
427
  esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', 'visualizer' ),
428
  sprintf(
429
- esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%1$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #%3$% percentage format then your values will be multiplied by 100.', 'visualizer' ),
430
  '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
431
  '</a>'
432
  ),
433
  sprintf(
434
- esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%1$s.', 'visualizer' ),
435
  '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
436
  '</a>'
437
  )
@@ -455,12 +455,12 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
455
  '%s<br><br>%s<br><br>%s',
456
  esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', 'visualizer' ),
457
  sprintf(
458
- esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%1$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #%3$% percentage format then your values will be multiplied by 100.', 'visualizer' ),
459
  '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
460
  '</a>'
461
  ),
462
  sprintf(
463
- esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%1$s.', 'visualizer' ),
464
  '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
465
  '</a>'
466
  )
426
  '%s<br><br>%s<br><br>%s',
427
  esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', 'visualizer' ),
428
  sprintf(
429
+ esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%2$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #&#37;&#37; percentage format then your values will be multiplied by 100.','visualizer' ),
430
  '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
431
  '</a>'
432
  ),
433
  sprintf(
434
+ esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.','visualizer' ),
435
  '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
436
  '</a>'
437
  )
455
  '%s<br><br>%s<br><br>%s',
456
  esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', 'visualizer' ),
457
  sprintf(
458
+ esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%2$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #&#37;&#37; percentage format then your values will be multiplied by 100.','visualizer' ),
459
  '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
460
  '</a>'
461
  ),
462
  sprintf(
463
+ esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.','visualizer' ),
464
  '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
465
  '</a>'
466
  )
css/media.css CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- Version: 1.7.0
3
  */
4
  #visualizer-library-view {
5
  padding: 30px 10px 10px 30px;
1
  /*
2
+ Version: 1.7.1
3
  */
4
  #visualizer-library-view {
5
  padding: 30px 10px 10px 30px;
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: 1.7.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: 1.7.1
8
  Author: Themeisle
9
  Author URI: http://themeisle.com
10
  License: GPL v2.0 or later
languages/visualizer.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL v2.0 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Visualizer: Charts and Graphs Lite 1.6.6\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
7
- "POT-Creation-Date: 2016-10-20 11:18:21+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -94,32 +94,32 @@ msgid "Pro Addon"
94
  msgstr ""
95
 
96
  #: classes/Visualizer/Module/Chart.php:332
97
- #: classes/Visualizer/Module/Chart.php:394
98
  msgid "Please, enter the URL of CSV file:"
99
  msgstr ""
100
 
101
  #: classes/Visualizer/Module/Chart.php:333
102
- #: classes/Visualizer/Module/Chart.php:395
103
  msgid "You have entered invalid URL. Please, insert proper URL."
104
  msgstr ""
105
 
106
- #: classes/Visualizer/Module/Chart.php:409
107
  msgid "Save Chart"
108
  msgstr ""
109
 
110
- #: classes/Visualizer/Module/Chart.php:410
111
  msgid "Create Chart"
112
  msgstr ""
113
 
114
- #: classes/Visualizer/Module/Chart.php:412
115
  msgid "Insert Chart"
116
  msgstr ""
117
 
118
- #: classes/Visualizer/Module/Chart.php:471
119
  msgid "CSV file with chart data was not uploaded. Please, try again."
120
  msgstr ""
121
 
122
- #: classes/Visualizer/Module/Chart.php:486
123
  msgid "CSV file is broken or invalid. Please, try again."
124
  msgstr ""
125
 
@@ -496,6 +496,23 @@ msgid "Enter custom format pattern to apply to horizontal axis labels."
496
  msgstr ""
497
 
498
  #: classes/Visualizer/Render/Sidebar/Graph.php:429
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
  #: classes/Visualizer/Render/Sidebar/Graph.php:458
500
  msgid ""
501
  "For number axis labels, this is a subset of the decimal formatting %1$sICU "
@@ -504,17 +521,12 @@ msgid ""
504
  "your values will be multiplied by 100."
505
  msgstr ""
506
 
507
- #: classes/Visualizer/Render/Sidebar/Graph.php:434
508
  #: classes/Visualizer/Render/Sidebar/Graph.php:463
509
  msgid ""
510
  "For date axis labels, this is a subset of the date formatting %1$sICU date "
511
  "and time format%1$s."
512
  msgstr ""
513
 
514
- #: classes/Visualizer/Render/Sidebar/Graph.php:456
515
- msgid "Enter custom format pattern to apply to vertical axis labels."
516
- msgstr ""
517
-
518
  #: classes/Visualizer/Render/Sidebar/Linear.php:80
519
  msgid "Straight line without curve"
520
  msgstr ""
2
  # This file is distributed under the GPL v2.0 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Visualizer: Charts and Graphs Lite 1.7.0\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
7
+ "POT-Creation-Date: 2016-10-20 22:05:09+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
94
  msgstr ""
95
 
96
  #: classes/Visualizer/Module/Chart.php:332
97
+ #: classes/Visualizer/Module/Chart.php:396
98
  msgid "Please, enter the URL of CSV file:"
99
  msgstr ""
100
 
101
  #: classes/Visualizer/Module/Chart.php:333
102
+ #: classes/Visualizer/Module/Chart.php:397
103
  msgid "You have entered invalid URL. Please, insert proper URL."
104
  msgstr ""
105
 
106
+ #: classes/Visualizer/Module/Chart.php:411
107
  msgid "Save Chart"
108
  msgstr ""
109
 
110
+ #: classes/Visualizer/Module/Chart.php:412
111
  msgid "Create Chart"
112
  msgstr ""
113
 
114
+ #: classes/Visualizer/Module/Chart.php:414
115
  msgid "Insert Chart"
116
  msgstr ""
117
 
118
+ #: classes/Visualizer/Module/Chart.php:473
119
  msgid "CSV file with chart data was not uploaded. Please, try again."
120
  msgstr ""
121
 
122
+ #: classes/Visualizer/Module/Chart.php:488
123
  msgid "CSV file is broken or invalid. Please, try again."
124
  msgstr ""
125
 
496
  msgstr ""
497
 
498
  #: classes/Visualizer/Render/Sidebar/Graph.php:429
499
+ msgid ""
500
+ "For number axis labels, this is a subset of the decimal formatting %sICU "
501
+ "pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
502
+ "value 1234.56. Pay attention that if you use #%3$% percentage format then "
503
+ "your values will be multiplied by 100."
504
+ msgstr ""
505
+
506
+ #: classes/Visualizer/Render/Sidebar/Graph.php:434
507
+ msgid ""
508
+ "For date axis labels, this is a subset of the date formatting %sICU date "
509
+ "and time format%s."
510
+ msgstr ""
511
+
512
+ #: classes/Visualizer/Render/Sidebar/Graph.php:456
513
+ msgid "Enter custom format pattern to apply to vertical axis labels."
514
+ msgstr ""
515
+
516
  #: classes/Visualizer/Render/Sidebar/Graph.php:458
517
  msgid ""
518
  "For number axis labels, this is a subset of the decimal formatting %1$sICU "
521
  "your values will be multiplied by 100."
522
  msgstr ""
523
 
 
524
  #: classes/Visualizer/Render/Sidebar/Graph.php:463
525
  msgid ""
526
  "For date axis labels, this is a subset of the date formatting %1$sICU date "
527
  "and time format%1$s."
528
  msgstr ""
529
 
 
 
 
 
530
  #: classes/Visualizer/Render/Sidebar/Linear.php:80
531
  msgid "Straight line without curve"
532
  msgstr ""
readme.txt CHANGED
@@ -70,6 +70,9 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
70
 
71
  == Changelog ==
72
 
 
 
 
73
  = 1.7.0=
74
  * Fixed responsive issues
75
  * Fixed issues with zero margin values
70
 
71
  == Changelog ==
72
 
73
+ = 1.7.1=
74
+ * Fixed grid lines error links
75
+
76
  = 1.7.0=
77
  * Fixed responsive issues
78
  * Fixed issues with zero margin values