diff --git a/admin/templates/countdown.php b/admin/templates/countdown.php index 2d443926..b8c6422e 100644 --- a/admin/templates/countdown.php +++ b/admin/templates/countdown.php @@ -2,7 +2,8 @@ if ( !function_exists( 'sportspress_countdown' ) ) { function sportspress_countdown( $args = array() ) { - $id = sportspress_array_value( $args, 'id', null ); + $id = sportspress_array_value( $args, 'event', null ); + $show_league = sportspress_array_value( $args, 'show_league', null ); if ( $id ): $post = get_post( $id ); @@ -27,24 +28,26 @@ if ( !function_exists( 'sportspress_countdown' ) ) { $output .= '
-
+
'sp_event', - 'name' => $this->get_field_name('id'), - 'id' => $this->get_field_id('id'), - 'selected' => $id, + 'name' => $this->get_field_name('event'), + 'id' => $this->get_field_id('event'), + 'selected' => $event, 'show_option_all' => __( '(Auto)', 'sportspress' ), 'values' => 'ID', 'class' => 'widefat', @@ -51,6 +52,9 @@ class SP_Widget_Countdown extends WP_Widget { endif; ?>
+ +> +
-+
'sp_table', diff --git a/admin/widgets/player-list.php b/admin/widgets/player-list.php index 246c4c11..15ae752c 100644 --- a/admin/widgets/player-list.php +++ b/admin/widgets/player-list.php @@ -44,7 +44,7 @@ class SportsPress_Widget_Player_list extends WP_Widget {
-
+
'sp_list', diff --git a/readme.txt b/readme.txt index ac6aadb7..f2a439a8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: sports, sports journalism, teams, team management, fixtures, results, stan Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=support@themeboy.com&item_name=Donation+for+SportsPress Requires at least: 3.8 Tested up to: 3.8.1 -Stable tag: 0.2.9 +Stable tag: 0.2.10 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -88,9 +88,18 @@ SportsPress is currently in beta and is undergoing testing. We are still activel 3. Players admin. 4. SportsPress Settings panel. 5. League Table widget. +6. Player List widget. +7. Events Calendar widget. +8. Countdown widget. == Changelog == += 0.2.10 = +* Fix - Team filtering in events, tables, players, and lists. +* Tweak - Display statistics for all league/season events played in player profiles and player lists. +* Tweak - Count events as played when in starting lineup or made substitution. +* Tweak - Display player metrics only when value is set. + = 0.2.9 = * Feature - Ability to select players from all teams in player list. * Fix - Decimal sorting in league tables and player lists. diff --git a/sportspress.php b/sportspress.php index 188c2d99..ee05b5ce 100644 --- a/sportspress.php +++ b/sportspress.php @@ -6,7 +6,7 @@ Plugin Name: SportsPress Plugin URI: http://themeboy.com/sportspress Description: Manage your club and its players, staff, events, league tables, and player lists. -Version: 0.2.9 +Version: 0.2.10 Author: ThemeBoy Author URI: http://themeboy.com/ License: GPLv3 @@ -18,7 +18,7 @@ if ( !function_exists( 'add_action' ) ) { exit; } -define( 'SPORTSPRESS_VERSION', '0.2.9' ); +define( 'SPORTSPRESS_VERSION', '0.2.10' ); define( 'SPORTSPRESS_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'SPORTSPRESS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'SPORTSPRESS_PLUGIN_FILE', __FILE__ );