Tag version 2.6.1

This commit is contained in:
Brian Miyaji
2018-05-10 12:27:47 +10:00
parent a6b2a119e6
commit d01aafdb1d
9 changed files with 21 additions and 16 deletions

View File

@@ -2,10 +2,10 @@
/** /**
* SportsPress Admin Settings Class. * SportsPress Admin Settings Class.
* *
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin * @package SportsPress/Admin
* @version 2.3 * @version 2.6.1
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin * @package SportsPress/Admin
* @version 2.5 * @version 2.6.1
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* The SportsPress REST API class handles all API-related hooks. * The SportsPress REST API class handles all API-related hooks.
* *
* @class SP_REST_API * @class SP_REST_API
* @version 2.5.5 * @version 2.6.1
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @package SportsPress/API * @package SportsPress/API

View File

@@ -5,7 +5,7 @@
* The SportsPress player class handles individual player data. * The SportsPress player class handles individual player data.
* *
* @class SP_Player * @class SP_Player
* @version 2.6 * @version 2.6.1
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
* Registers post types and taxonomies * Registers post types and taxonomies
* *
* @class SP_Post_types * @class SP_Post_types
* @version 2.6 * @version 2.6.1
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add player assignments support to SportsPress. Description: Add player assignments support to SportsPress.
Author: Savvas Author: Savvas
Author URI: http://themeboy.com/ Author URI: http://themeboy.com/
Version: 2.6 Version: 2.6.1
*/ */
// Exit if accessed directly // Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit; if ( ! defined( 'ABSPATH' ) ) exit;
@@ -14,7 +14,7 @@ if ( ! class_exists( 'SportsPress_Player_Assignments' ) ) :
* Main SportsPress Player Assignments Class * Main SportsPress Player Assignments Class
* *
* @class SportsPress_Player_Assignments * @class SportsPress_Player_Assignments
* @version 2.6 * @version 2.6.1
*/ */
class SportsPress_Player_Assignments { class SportsPress_Player_Assignments {
/** /**
@@ -36,7 +36,7 @@ class SportsPress_Player_Assignments {
*/ */
private function define_constants() { private function define_constants() {
if ( !defined( 'SP_PLAYER_ASSIGNMENTS_VERSION' ) ) if ( !defined( 'SP_PLAYER_ASSIGNMENTS_VERSION' ) )
define( 'SP_PLAYER_ASSIGNMENTS_VERSION', '2.6' ); define( 'SP_PLAYER_ASSIGNMENTS_VERSION', '2.6.1' );
if ( !defined( 'SP_PLAYER_ASSIGNMENTS_URL' ) ) if ( !defined( 'SP_PLAYER_ASSIGNMENTS_URL' ) )
define( 'SP_PLAYER_ASSIGNMENTS_URL', plugin_dir_url( __FILE__ ) ); define( 'SP_PLAYER_ASSIGNMENTS_URL', plugin_dir_url( __FILE__ ) );
if ( !defined( 'SP_PLAYER_ASSIGNMENTS_DIR' ) ) if ( !defined( 'SP_PLAYER_ASSIGNMENTS_DIR' ) )

View File

@@ -4,7 +4,7 @@ Tags: calendars, club, club management, esports, events, fixtures, leagues, leag
Donate link: http://tboy.co/donate Donate link: http://tboy.co/donate
Requires at least: 3.8 Requires at least: 3.8
Tested up to: 4.9 Tested up to: 4.9
Stable tag: 2.6 Stable tag: 2.6.1
License: GPLv3 License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -237,6 +237,11 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
== Changelog == == Changelog ==
= 2.6.1 =
* Fix - Player lists with a team selected showing players from other teams.
* Fix - REST API endpoints not resolving for players.
* Fix - Empty system status page.
= 2.6 = = 2.6 =
* Feature - Add custom details to events using event specs. * Feature - Add custom details to events using event specs.
* Feature - Conditional equations for variables. * Feature - Conditional equations for variables.

View File

@@ -3,7 +3,7 @@
* Plugin Name: SportsPress * Plugin Name: SportsPress
* Plugin URI: http://themeboy.com/sportspress/ * Plugin URI: http://themeboy.com/sportspress/
* Description: Manage your club and its players, staff, events, league tables, and player lists. * Description: Manage your club and its players, staff, events, league tables, and player lists.
* Version: 2.6 * Version: 2.6.1
* Author: ThemeBoy * Author: ThemeBoy
* Author URI: http://themeboy.com * Author URI: http://themeboy.com
* Requires at least: 3.8 * Requires at least: 3.8
@@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) :
* Main SportsPress Class * Main SportsPress Class
* *
* @class SportsPress * @class SportsPress
* @version 2.6 * @version 2.6.1
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '2.6'; public $version = '2.6.1';
/** /**
* @var SportsPress The single instance of the class * @var SportsPress The single instance of the class

View File

@@ -4,7 +4,7 @@
* *
* @author ThemeBoy * @author ThemeBoy
* @package SportsPress/Templates * @package SportsPress/Templates
* @version 2.6 * @version 2.6.1
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly