Skip to content

Commit aa33f6f

Browse files
authored
Release 1.7.2
Improved responsive mechanism
2 parents 1e0f9e7 + 9bb055d commit aa33f6f

File tree

8 files changed

+20
-29
lines changed

8 files changed

+20
-29
lines changed

classes/Visualizer/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class Visualizer_Plugin {
3030

3131
const NAME = 'visualizer';
32-
const VERSION = '1.7.1';
32+
const VERSION = '1.7.2';
3333

3434
// custom post types
3535
const CPT_VISUALIZER = 'visualizer';

classes/Visualizer/Render/Sidebar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ protected function _renderFormatField( $index = 0 ) {
526526
esc_html__( 'Number Format', 'visualizer' ),
527527
'series[' . $index . '][format]',
528528
isset( $this->series[ $index ]['format'] ) ? $this->series[ $index ]['format'] : '',
529-
sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU pattern set%1$s. Use something like #,### to get 1,234 as output, or $# to add dollar sign before digits. Pay attention that if you use #%3$% percentage format then your values will be multiplied by 100.', 'visualizer' ), '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">', '</a>' ),
529+
sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU pattern set%1$s. Use something like #,### to get 1,234 as output, or $# to add dollar sign before digits. Pay attention that if you use &#37; percentage format then your values will be multiplied by 100.', 'visualizer' ), '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">', '</a>' ),
530530
'#,###.##'
531531
);
532532
break;

css/media.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 1.7.1
2+
Version: 1.7.2
33
*/
44
#visualizer-library-view {
55
padding: 30px 10px 10px 30px;

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: Visualizer: Charts and Graphs Lite
55
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
66
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
7+
Version: 1.7.2
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later

js/render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
resizeTimeout = setTimeout(v.render, 100);
214214
});
215215

216-
resizeHiddenContainers(false);
216+
resizeHiddenContainers(true);
217217
});
218218

219219
$(window).load(function(){

languages/visualizer.pot

Lines changed: 11 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the GPL v2.0 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Visualizer: Charts and Graphs Lite 1.7.0\n"
5+
"Project-Id-Version: Visualizer: Charts and Graphs Lite 1.7.1\n"
66
"Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
7-
"POT-Creation-Date: 2016-10-20 22:05:09+00:00\n"
7+
"POT-Creation-Date: 2016-11-23 13:55:43+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"
@@ -496,37 +496,25 @@ msgid "Enter custom format pattern to apply to horizontal axis labels."
496496
msgstr ""
497497

498498
#: classes/Visualizer/Render/Sidebar/Graph.php:429
499+
#: classes/Visualizer/Render/Sidebar/Graph.php:458
499500
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."
501+
"For number axis labels, this is a subset of the decimal formatting %1$sICU "
502+
"pattern set%2$s. For instance, $#,###.## will display values $1,234.56 for "
503+
"value 1234.56. Pay attention that if you use #&#37;&#37; percentage format "
504+
"then your values will be multiplied by 100."
504505
msgstr ""
505506

506507
#: classes/Visualizer/Render/Sidebar/Graph.php:434
508+
#: classes/Visualizer/Render/Sidebar/Graph.php:463
507509
msgid ""
508-
"For date axis labels, this is a subset of the date formatting %sICU date "
509-
"and time format%s."
510+
"For date axis labels, this is a subset of the date formatting %1$sICU date "
511+
"and time format%2$s."
510512
msgstr ""
511513

512514
#: classes/Visualizer/Render/Sidebar/Graph.php:456
513515
msgid "Enter custom format pattern to apply to vertical axis labels."
514516
msgstr ""
515517

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 "
519-
"pattern set%1$s. For instance, $#,###.## will display values $1,234.56 for "
520-
"value 1234.56. Pay attention that if you use #%3$% percentage format then "
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-
530518
#: classes/Visualizer/Render/Sidebar/Linear.php:80
531519
msgid "Straight line without curve"
532520
msgstr ""
@@ -1319,7 +1307,7 @@ msgstr ""
13191307
msgid ""
13201308
"Enter custom format pattern to apply to this series value, similar to the "
13211309
"%1$sICU pattern set%1$s. Use something like #,### to get 1,234 as output, "
1322-
"or $# to add dollar sign before digits. Pay attention that if you use #%3$% "
1310+
"or $# to add dollar sign before digits. Pay attention that if you use &#37; "
13231311
"percentage format then your values will be multiplied by 100."
13241312
msgstr ""
13251313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualizer",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
7070

7171
== Changelog ==
7272

73+
= 1.7.2=
74+
* Improved charts responsive system
75+
7376
= 1.7.1=
7477
* Fixed grid lines error links
7578

0 commit comments

Comments
 (0)