From fbd73d10765802021e2d1589f9b51fdd82e0e272 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Thu, 1 May 2014 12:54:56 +1000 Subject: [PATCH] Update readme to 0.8.1 --- readme.txt | 8 +++++++- sportspress.php | 9 +++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/readme.txt b/readme.txt index 125c42f1..af23b3ca 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: sports, press, sports journalism, teams, team management, fixtures, result 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.9 -Stable tag: 0.8 +Stable tag: 0.8.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -164,6 +164,12 @@ Yes, CSV importers are included with the plugin. Go to Tools > Import and choose == Changelog == += 0.8.1 = +* Tweak - Output player statistics in system status. +* Tweak - Prepend templates to content instead of outputting directly. +* Fix - Add content in main loop only. +* Fix - Enable metrics usage in individual player statistics. + = 0.8 = * Feature - New shortcode event_results. * Feature - New shortcode event_details. diff --git a/sportspress.php b/sportspress.php index 78a22ce8..5711ac58 100644 --- a/sportspress.php +++ b/sportspress.php @@ -3,7 +3,7 @@ * Plugin Name: SportsPress * Plugin URI: http://wordpress.org/plugins/sportspress * Description: Manage your club and its players, staff, events, league tables, and player lists. - * Version: 0.8 + * Version: 0.8.1 * Author: ThemeBoy * Author URI: http://themeboy.com * Requires at least: 3.8 @@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) : * Main SportsPress Class * * @class SportsPress - * @version 0.8 + * @version 0.8.1 */ final class SportsPress { /** * @var string */ - public $version = '0.8'; + public $version = '0.8.1'; /** * @var SporsPress The single instance of the class @@ -214,6 +214,7 @@ final class SportsPress { // Classes (used on all pages) include_once( 'includes/class-sp-countries.php' ); // Defines continents and countries include_once( 'includes/class-sp-formats.php' ); // Defines custom post type formats + include_once( 'includes/class-sp-sports.php' ); // Defines custom post type formats include_once( 'includes/class-sp-text.php' ); // Defines editable strings // Include template hooks in time for themes to remove/modify them @@ -261,8 +262,8 @@ final class SportsPress { // Load class instances $this->countries = new SP_Countries(); // Countries class - $this->sports = new SP_Sports(); // Sports class $this->formats = new SP_Formats(); // Formats class + $this->sports = new SP_Sports(); // Formats class $this->text = new SP_Text(); // Text class // Init action