Tag version 2.6.3
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
== SportsPress Changelog ==
|
||||
|
||||
= 2.6.3 =
|
||||
* Fix - Assign past teams during player import.
|
||||
* Fix - Next team column displaying events furthest away.
|
||||
* Fix - Add fallback array_replace function for PHP versions earlier than 5.3.
|
||||
* Fix - Add fallback for web hosts that don't support multibyte PHP functions, causing blank player profiles.
|
||||
|
||||
= 2.6.2 =
|
||||
* Fix - Newly added players from past and current team appearing in player lists.
|
||||
* Fix - Player lists appearing empty without league, season, and team selected.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Importers
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Meta_Boxes
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress player class handles individual player data.
|
||||
*
|
||||
* @class SP_Player
|
||||
* @version 2.6.1
|
||||
* @version 2.6.3
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress team class handles individual team data.
|
||||
*
|
||||
* @class SP_Team
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Core
|
||||
* @package SportsPress/Functions
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Core
|
||||
* @package SportsPress/Functions
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
|
||||
Description: Add a Next preset to SportsPress league table column equations.
|
||||
Author: ThemeBoy
|
||||
Author URI: http://themeboy.com/
|
||||
Version: 2.6
|
||||
Version: 2.6.3
|
||||
*/
|
||||
|
||||
// Exit if accessed directly
|
||||
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) :
|
||||
* Main SportsPress Next Team Preset Class
|
||||
*
|
||||
* @class SportsPress_Next_Team_Preset
|
||||
* @version 2.6
|
||||
* @version 2.6.3
|
||||
*/
|
||||
|
||||
class SportsPress_Next_Team_Preset {
|
||||
@@ -46,7 +46,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) :
|
||||
*/
|
||||
private function define_constants() {
|
||||
if ( !defined( 'SP_NEXT_TEAM_PRESET_VERSION' ) )
|
||||
define( 'SP_NEXT_TEAM_PRESET_VERSION', '2.6' );
|
||||
define( 'SP_NEXT_TEAM_PRESET_VERSION', '2.6.3' );
|
||||
|
||||
if ( !defined( 'SP_NEXT_TEAM_PRESET_URL' ) )
|
||||
define( 'SP_NEXT_TEAM_PRESET_URL', plugin_dir_url( __FILE__ ) );
|
||||
|
||||
@@ -4,7 +4,7 @@ Tags: calendars, club, club management, esports, events, fixtures, leagues, leag
|
||||
Donate link: http://tboy.co/donate
|
||||
Requires at least: 3.8
|
||||
Tested up to: 4.9
|
||||
Stable tag: 2.6.2
|
||||
Stable tag: 2.6.3
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -237,6 +237,12 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.6.3 =
|
||||
* Fix - Assign past teams during player import.
|
||||
* Fix - Next team column displaying events furthest away.
|
||||
* Fix - Add fallback array_replace function for PHP versions earlier than 5.3.
|
||||
* Fix - Add fallback for web hosts that don't support multibyte PHP functions, causing blank player profiles.
|
||||
|
||||
= 2.6.2 =
|
||||
* Fix - Newly added players from past and current team appearing in player lists.
|
||||
* Fix - Player lists appearing empty without league, season, and team selected.
|
||||
|
||||
@@ -3,7 +3,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: 2.6.2
|
||||
* Version: 2.6.3
|
||||
* 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 2.6.2
|
||||
* @version 2.6.3
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '2.6.2';
|
||||
public $version = '2.6.3';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
|
||||
Reference in New Issue
Block a user