Skip to content

Commit f5b85cb

Browse files
Merge branch 'master' into issue-78
2 parents f80b296 + 0807065 commit f5b85cb

File tree

10 files changed

+59
-19
lines changed

10 files changed

+59
-19
lines changed

.distignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ artifact
1818
composer.json
1919
composer.lock
2020
key.enc
21+
vendor/phpoffice/phpexcel/Examples
22+
vendor/phpoffice/phpexcel/unitTests

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
### v2.2.0 - 2017-08-16
3+
**Changes:**
4+
* Added custom number format for pie chart.
5+
* Added frontend actions buttons ( Print, Export to CSV, Export to Excel, Copy)
6+
27
### v2.1.9 - 2017-07-10
38
**Changes:**
49
* Fixed display error with hex color.

classes/Visualizer/Module/Frontend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public function renderChart( $atts ) {
269269
}
270270

271271
$actions_div .= apply_filters( 'visualizer_action_attributes', '', $key, $atts['id'] );
272-
$actions_div .= '>' . $label . '</a>';
272+
$actions_div .= '>' . $label . '</a> &nbsp;';
273273
}
274274

275275
$actions_div .= '</div>';

classes/Visualizer/Plugin.php

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

3030
const NAME = 'visualizer';
31-
const VERSION = '2.1.9';
31+
const VERSION = '2.2.0';
3232

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

classes/Visualizer/Render/Sidebar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ protected function _renderChartTitleSettings() {
147147
* @access protected
148148
*/
149149
protected function _renderAdvancedSettings() {
150-
self::_renderGroupStart( esc_html__( 'Advanced Settings', 'visualizer' ) );
150+
self::_renderGroupStart( esc_html__( 'Frontend Actions', 'visualizer' ) );
151151
self::_renderSectionStart();
152-
self::_renderSectionDescription( esc_html__( 'Configure advanced functionality here.', 'visualizer' ) );
152+
self::_renderSectionDescription( esc_html__( 'Configure frontend actions here.', 'visualizer' ) );
153153
self::_renderSectionEnd();
154154

155155
$this->_renderActionSettings();

css/media.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 2.1.9
2+
Version: 2.2.0
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: 2.1.9
7+
Version: 2.2.0
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later

languages/visualizer.pot

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 2.1.9\n"
5+
"Project-Id-Version: Visualizer: Charts and Graphs Lite 2.2.0\n"
66
"Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
77
"POT-Creation-Date: 2017-08-21 06:05:36+00:00\n"
88
"MIME-Version: 1.0\n"
@@ -374,8 +374,10 @@ msgstr ""
374374
msgid "View Editor"
375375
msgstr ""
376376

377+
377378
#: classes/Visualizer/Render/Page/Data.php:244
378379
#: classes/Visualizer/Render/Sidebar.php:150
380+
379381
msgid "Advanced Settings"
380382
msgstr ""
381383

@@ -1405,8 +1407,12 @@ msgstr ""
14051407
msgid "Aligned to the end of the allocated area"
14061408
msgstr ""
14071409

1410+
#: classes/Visualizer/Render/Sidebar.php:150
1411+
msgid "Frontend Actions"
1412+
msgstr ""
1413+
14081414
#: classes/Visualizer/Render/Sidebar.php:152
1409-
msgid "Configure advanced functionality here."
1415+
msgid "Configure frontend actions here."
14101416
msgstr ""
14111417

14121418
#: classes/Visualizer/Render/Sidebar.php:165

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": "2.1.9",
3+
"version": "2.2.0",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The plugins works perfectly with the all <a href="http://justfreethemes.com" rel
5656
* [Create combo chart](https://demo.themeisle.com/visualizer/combo-chart/)
5757
* [Create scatter chart](https://demo.themeisle.com/visualizer/scatter-chart/)
5858
* [Create timeline chart](https://demo.themeisle.com/visualizer/timeline-chart/)
59+
* [Chart using frontend action links](https://demo.themeisle.com/visualizer/frontend-action-links/)
5960

6061

6162
== Installation ==
@@ -69,45 +70,65 @@ The plugins works perfectly with the all <a href="http://justfreethemes.com" rel
6970

7071
Pay attention that to turn your shortcodes into graphs, your theme has to have `<?php wp_footer(); ?>` call at the bottom of **footer.php** file.
7172

73+
= Is there any documentation available for this plugin? =
74+
75+
[http://docs.themeisle.com/article/428-visualizer-charts-and-graphs-documentation](http://docs.themeisle.com/article/428-visualizer-charts-and-graphs-documentation)
76+
77+
= How to format chart series values? =
78+
79+
[http://docs.themeisle.com/article/672-how-to-format-series-values](http://docs.themeisle.com/article/672-how-to-format-series-values)
80+
81+
= How to create charts from your WordPress posts? =
82+
83+
[http://docs.themeisle.com/article/673-how-to-create-charts-from-your-wordpress-posts](http://docs.themeisle.com/article/673-how-to-create-charts-from-your-wordpress-posts)
84+
85+
= How to automatically sync charts with online files? =
86+
87+
[http://docs.themeisle.com/article/674-how-to-automatically-sync-charts-with-online-files](http://docs.themeisle.com/article/674-how-to-automatically-sync-charts-with-online-files)
88+
7289
= How can I create a chart? =
7390

74-
http://docs.themeisle.com/article/597-create-chart
91+
[http://docs.themeisle.com/article/597-create-chart](http://docs.themeisle.com/article/597-create-chart)
7592

7693
= How can I edit a chart? =
7794

78-
http://docs.themeisle.com/article/602-how-can-i-edit-a-chart
95+
[http://docs.themeisle.com/article/602-how-can-i-edit-a-chart](http://docs.themeisle.com/article/602-how-can-i-edit-a-chart)
7996

8097
= How can I delete a chart? =
8198

82-
http://docs.themeisle.com/article/600-delete-chart
99+
[http://docs.themeisle.com/article/600-delete-chart](http://docs.themeisle.com/article/600-delete-chart)
83100

84101
= How can I clone a chart? =
85102

86-
http://docs.themeisle.com/article/598-clone-chart
103+
[http://docs.themeisle.com/article/598-clone-chart](http://docs.themeisle.com/article/598-clone-chart)
87104

88105
= How can I highlight a single bar? =
89106

90-
http://docs.themeisle.com/article/603-how-can-i-highlight-a-single-bar
107+
[http://docs.themeisle.com/article/603-how-can-i-highlight-a-single-bar](http://docs.themeisle.com/article/603-how-can-i-highlight-a-single-bar)
91108

92109
= How can I populate chart series and data dynamically? =
93110

94-
http://docs.themeisle.com/article/605-how-can-i-populate-chart-series-and-data-dynamically
111+
[http://docs.themeisle.com/article/605-how-can-i-populate-chart-series-and-data-dynamically](http://docs.themeisle.com/article/605-how-can-i-populate-chart-series-and-data-dynamically)
95112

96113
= How can I populate data from Google Spreadsheet? =
97114

98-
http://docs.themeisle.com/article/607-how-can-i-populate-data-from-google-spreadsheet
115+
[http://docs.themeisle.com/article/607-how-can-i-populate-data-from-google-spreadsheet](http://docs.themeisle.com/article/607-how-can-i-populate-data-from-google-spreadsheet)
99116

100117
= How can i import content from another chart? =
101118

102-
http://docs.themeisle.com/article/609-how-can-i-import-content-from-another-chart
119+
[http://docs.themeisle.com/article/609-how-can-i-import-content-from-another-chart](http://docs.themeisle.com/article/609-how-can-i-import-content-from-another-chart)
103120

104121
= How to export a chart? =
105122

106-
http://docs.themeisle.com/article/608-how-to-export-a-chart
123+
[http://docs.themeisle.com/article/608-how-to-export-a-chart](http://docs.themeisle.com/article/608-how-to-export-a-chart)
107124

108125
= How can i edit the data manually? =
109126

110-
http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually
127+
[http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually](http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually)
128+
129+
= How to enable frontend action buttons? =
130+
131+
[http://docs.themeisle.com/article/675-how-to-enable-frontend-action-buttons](http://docs.themeisle.com/article/675-how-to-enable-frontend-action-buttons)
111132

112133
== Screenshots ==
113134

@@ -118,6 +139,12 @@ http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually
118139
5. Charts library
119140

120141
== Changelog ==
142+
= 2.2.0 - 2017-08-16 =
143+
144+
* Added custom number format for pie chart.
145+
* Added frontend actions buttons ( Print, Export to CSV, Export to Excel, Copy)
146+
147+
121148
= 2.1.9 - 2017-07-10 =
122149

123150
* Fixed display error with hex color.

0 commit comments

Comments
 (0)