Skip to content

Commit 93a47b1

Browse files
committed
#34 Average is displayed by default
Bumped version to 0.0.9
1 parent ef37192 commit 93a47b1

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,8 @@
2626
*0.0.7 (2017-03-15)*
2727
* PERT Calculator - @jin0x , @jonathanbossenger
2828
* New charts - @spyrosvl
29-
* Added offline export support via Highcharts JS @spyrosvl
29+
* Added offline export support via Highcharts JS @spyrosvl
30+
31+
*0.0.9 (2017-03-23)*
32+
* Average in charts - @spyrosvl
33+
* Condition to change text between best month/day - @spyrosvl

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Codeable](https://img.shields.io/badge/Codeable-Experts-blue.svg?style=flat-square)]()
22
# Codeable Expert Stats Plugin Readme
3-
*Contributors:* Spyros Vlachopoulos, Panagiotis Synetos, John Leskas, Justin Frydman
3+
*Contributors:* Spyros Vlachopoulos, Panagiotis Synetos, John Leskas, Justin Frydman, Jonathan Bossenger, Rob Scott
44

5-
*Tested up to:* WordPress 4.7.2
5+
*Tested up to:* WordPress 4.7.3
66

77
Codeable Expert Stats plugin makes it easy for you to track and monitor your success as an expert on Codeable via an easy-to-understand dashboard for your personal/agency WordPress site.
88

functions/admin-page.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ class="thickbox"><?php echo intval( $client['total_tasks'] ); ?></a></td>
650650
name: '<?php echo __( 'Average', 'wpcable' ); ?>',
651651
type: 'spline',
652652
data: [<?php echo implode( ', ', $chart_revenue_avg ); ?>],
653-
visible: false,
653+
visible: true,
654654
marker: {
655655
enabled: false
656656
},
@@ -759,7 +759,7 @@ class="thickbox"><?php echo intval( $client['total_tasks'] ); ?></a></td>
759759
name: '<?php echo __( 'Average', 'wpcable' ); ?>',
760760
type: 'spline',
761761
data: [<?php echo implode( ',', $chart_tasks_count_avg ); ?>],
762-
visible: false,
762+
visible: true,
763763
marker: {
764764
enabled: false
765765
},

wp-codeable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP Codeable
44
* Plugin URI: https://github.com/codeablehq/blackbook/wiki/Expert-Stats-Plugin
55
* Description: Get your Codeable data
6-
* Version: 0.0.8
6+
* Version: 0.0.9
77
* Author: Spyros Vlachopoulos
88
* Contributors: Panagiotis Synetos, John Leskas, Justin Frydman, Jonathan Bossenger, Rob Scott
99
* Author URI: https://codeable.io/developers/spyros-vlachopoulos/

0 commit comments

Comments
 (0)