Tag version 2.1.4

This commit is contained in:
Brian Miyaji
2016-10-30 20:49:17 +11:00
parent 8c8b82d94e
commit f354d3f4cf
16 changed files with 36 additions and 24 deletions

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin * @package SportsPress/Admin
* @version 2.1 * @version 2.1.4
*/ */
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.1 * @version 2.1.4
*/ */
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/Classes * @package SportsPress/Classes
* @version 2.1 * @version 2.1.4
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* The SportsPress player list class handles individual player list data. * The SportsPress player list class handles individual player list data.
* *
* @class SP_Player_List * @class SP_Player_List
* @version 2.0.13 * @version 2.1.4
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -3,7 +3,7 @@
* Template Loader * Template Loader
* *
* @class SP_Template_Loader * @class SP_Template_Loader
* @version 2.1.2 * @version 2.1.4
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -5,7 +5,7 @@
* The SportsPress templates class stores template layout data. * The SportsPress templates class stores template layout data.
* *
* @class SP_Templates * @class SP_Templates
* @version 2.0 * @version 2.1.4
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -7,7 +7,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Core * @category Core
* @package SportsPress/Functions * @package SportsPress/Functions
* @version 2.1.2 * @version 2.1.4
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -7,7 +7,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Core * @category Core
* @package SportsPress/Functions * @package SportsPress/Functions
* @version 2.0 * @version 2.1.4
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -7,7 +7,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Core * @category Core
* @package SportsPress/Functions * @package SportsPress/Functions
* @version 2.1.3 * @version 2.1.4
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add birthdays to players and staff. Description: Add birthdays to players and staff.
Author: ThemeBoy Author: ThemeBoy
Author URI: http://themeboy.com/ Author URI: http://themeboy.com/
Version: 2.0.8 Version: 2.1.4
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Birthdays' ) ) :
* Main SportsPress Birthdays Class * Main SportsPress Birthdays Class
* *
* @class SportsPress_Birthdays * @class SportsPress_Birthdays
* @version 2.0.8 * @version 2.1.4
*/ */
class SportsPress_Birthdays { class SportsPress_Birthdays {
@@ -43,7 +43,7 @@ class SportsPress_Birthdays {
*/ */
private function define_constants() { private function define_constants() {
if ( !defined( 'SP_BIRTHDAYS_VERSION' ) ) if ( !defined( 'SP_BIRTHDAYS_VERSION' ) )
define( 'SP_BIRTHDAYS_VERSION', '2.0.8' ); define( 'SP_BIRTHDAYS_VERSION', '2.1.4' );
if ( !defined( 'SP_BIRTHDAYS_URL' ) ) if ( !defined( 'SP_BIRTHDAYS_URL' ) )
define( 'SP_BIRTHDAYS_URL', plugin_dir_url( __FILE__ ) ); define( 'SP_BIRTHDAYS_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add league tables to SportsPress. Description: Add league tables to SportsPress.
Author: ThemeBoy Author: ThemeBoy
Author URI: http://themeboy.com/ Author URI: http://themeboy.com/
Version: 2.0 Version: 2.1.4
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_League_Tables' ) ) :
* Main SportsPress League Tables Class * Main SportsPress League Tables Class
* *
* @class SportsPress_League_Tables * @class SportsPress_League_Tables
* @version 2.0 * @version 2.1.4
*/ */
class SportsPress_League_Tables { class SportsPress_League_Tables {
@@ -49,7 +49,7 @@ class SportsPress_League_Tables {
*/ */
private function define_constants() { private function define_constants() {
if ( !defined( 'SP_LEAGUE_TABLES_VERSION' ) ) if ( !defined( 'SP_LEAGUE_TABLES_VERSION' ) )
define( 'SP_LEAGUE_TABLES_VERSION', '2.0' ); define( 'SP_LEAGUE_TABLES_VERSION', '2.1.4' );
if ( !defined( 'SP_LEAGUE_TABLES_URL' ) ) if ( !defined( 'SP_LEAGUE_TABLES_URL' ) )
define( 'SP_LEAGUE_TABLES_URL', plugin_dir_url( __FILE__ ) ); define( 'SP_LEAGUE_TABLES_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add player lists to SportsPress. Description: Add player lists to SportsPress.
Author: ThemeBoy Author: ThemeBoy
Author URI: http://themeboy.com/ Author URI: http://themeboy.com/
Version: 2.0 Version: 2.1.4
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Player_Lists' ) ) :
* Main SportsPress Player Lists Class * Main SportsPress Player Lists Class
* *
* @class SportsPress_Player_Lists * @class SportsPress_Player_Lists
* @version 2.0 * @version 2.1.4
*/ */
class SportsPress_Player_Lists { class SportsPress_Player_Lists {
@@ -48,7 +48,7 @@ class SportsPress_Player_Lists {
*/ */
private function define_constants() { private function define_constants() {
if ( !defined( 'SP_PLAYER_LISTS_VERSION' ) ) if ( !defined( 'SP_PLAYER_LISTS_VERSION' ) )
define( 'SP_PLAYER_LISTS_VERSION', '2.0' ); define( 'SP_PLAYER_LISTS_VERSION', '2.1.4' );
if ( !defined( 'SP_PLAYER_LISTS_URL' ) ) if ( !defined( 'SP_PLAYER_LISTS_URL' ) )
define( 'SP_PLAYER_LISTS_URL', plugin_dir_url( __FILE__ ) ); define( 'SP_PLAYER_LISTS_URL', plugin_dir_url( __FILE__ ) );

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.6 Tested up to: 4.6
Stable tag: 2.1.3 Stable tag: 2.1.4
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
@@ -239,6 +239,18 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
== Changelog == == Changelog ==
= 2.1.4 =
* Feature - Player and staff dropdown templates added to layout designer.
* Tweak - Default tab labels from layout designer.
* Tweak - Add "Home" and "Away" to text options.
* Tweak - Add horizontal padding to centered event list columns.
* Fix - Disable numeric slug generation for events due to permalink issues in some cases.
* Fix - Permalink issues caused by filter for scheduled events.
* Fix - Scheduled events being ignored by REST API.
* Fix - Inconsistent styling of player and staff dropdowns.
* Fix - Only include current players in player lists.
* Fix - Age calculation in BuddyPress context.
= 2.1.3 = = 2.1.3 =
* Tweak - Add options to select number, team, and position columns to player list shortcode. * Tweak - Add options to select number, team, and position columns to player list shortcode.
* Fix - Totals row offset in player statistics admin. * Fix - Totals row offset in player statistics admin.

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.1.3 * Version: 2.1.4
* 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.1.3 * @version 2.1.4
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '2.1.3'; public $version = '2.1.4';
/** /**
* @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.1.3 * @version 2.1.4
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

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