Tag version 1.9.19

This commit is contained in:
Brian Miyaji
2016-03-02 23:24:35 +11:00
parent a90b56f8a0
commit 843e84b5ad
19 changed files with 42 additions and 25 deletions

View File

@@ -5,7 +5,7 @@
* The SportsPress admin sports class stores preset sport data. * The SportsPress admin sports class stores preset sport data.
* *
* @class SP_Admin_Sports * @class SP_Admin_Sports
* @version 1.9 * @version 1.9.19
* @package SportsPress/Admin * @package SportsPress/Admin
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin/Meta_Boxes * @package SportsPress/Admin/Meta_Boxes
* @version 1.9.6 * @version 1.9.19
*/ */
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/Meta_Boxes * @package SportsPress/Admin/Meta_Boxes
* @version 1.9.13 * @version 1.9.19
*/ */
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/Meta_Boxes * @package SportsPress/Admin/Meta_Boxes
* @version 1.9 * @version 1.9.19
*/ */
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/Meta_Boxes * @package SportsPress/Admin/Meta_Boxes
* @version 1.9 * @version 1.9.19
*/ */
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 1.9.6 * @version 1.9.19
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* The SportsPress event class handles individual event data. * The SportsPress event class handles individual event data.
* *
* @class SP_Event * @class SP_Event
* @version 1.9 * @version 1.9.19
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

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.0 * @version 1.9.19
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @package SportsPress/API * @package SportsPress/API

View File

@@ -7,7 +7,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Core * @category Core
* @package SportsPress/Functions * @package SportsPress/Functions
* @version 1.9.4 * @version 1.9.19
*/ */
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 1.9.13 * @version 1.9.19
*/ */
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: 1.6 Version: 1.9.19
*/ */
// 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 1.6 * @version 1.9.19
*/ */
class SportsPress_Birthdays { class SportsPress_Birthdays {
@@ -42,7 +42,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', '1.6' ); define( 'SP_BIRTHDAYS_VERSION', '1.9.19' );
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://tboy.co/pro
Description: Load players using Ajax to speed up the event edit screen. Description: Load players using Ajax to speed up the event edit screen.
Author: ThemeBoy Author: ThemeBoy
Author URI: http://themeboy.com Author URI: http://themeboy.com
Version: 1.9 Version: 1.9.19
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Lazy_Loading' ) ) :
* Main SportsPress Lazy Loading Class * Main SportsPress Lazy Loading Class
* *
* @class SportsPress_Lazy_Loading * @class SportsPress_Lazy_Loading
* @version 1.9 * @version 1.9.19
*/ */
class SportsPress_Lazy_Loading { class SportsPress_Lazy_Loading {

View File

@@ -1,10 +1,10 @@
=== SportsPress - Manage Leagues & Sports Clubs === === SportsPress - Manage Leagues & Sports Clubs ===
Contributors: ThemeBoy, brianmiyaji, aylaview Contributors: ThemeBoy, brianmiyaji, aylaview, rochesterj
Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtures, results, standings, league tables, leagues, shortcodes, sports data, sports club, themeboy, esports, wordpress sports, equations, calculations, events, calendars, players, profiles, staff, seasons, countdowns, club management, football, nfl, footy, afl, baseball, basketball, cricket, darts, handball, hockey, netball, rugby, snooker, soccer, squash, tennis, volleyball, dota 2, league of legends, golf Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtures, results, standings, league tables, leagues, shortcodes, sports data, sports club, themeboy, esports, wordpress sports, equations, calculations, events, calendars, players, profiles, staff, seasons, countdowns, club management, football, nfl, footy, afl, baseball, basketball, cricket, darts, handball, hockey, netball, rugby, snooker, soccer, squash, tennis, volleyball, dota 2, league of legends, golf
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.4 Tested up to: 4.4
Stable tag: 1.9.15 Stable tag: 1.9.19
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,19 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
== Changelog == == Changelog ==
= 1.9.19 =
* Feature - Add Birthdays module.
* Feature - Add Lazy Loading module.
* Feature - Add separate offense and defense categories to player performance and box score.
* Feature - Add format setting to player performance with the options Number and Text.
* Feature - Add option to show and hide date and time in events.
* Tweak - Improve compatibility between custom color settings and theme options.
* Tweak - Add light shade to substitute rows in box score.
* Tweak - Prevent box score section from appearing when event is set in the future.
* Fix - Display icon setting in editor.
* Fix - Empty variable button appearing in equation builder when equation is empty.
* Preset - Update cricket preset with batting and bowling categories.
= 1.9.15 = = 1.9.15 =
* Tweak - Add medium crop image size to ensure gallery images are square. * Tweak - Add medium crop image size to ensure gallery images are square.
* Tweak - Add shortcut icon to admin bar. * Tweak - Add shortcut icon to admin bar.

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: 1.9.17 * Version: 1.9.19
* 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 1.9.17 * @version 1.9.19
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '1.9.17'; public $version = '1.9.19';
/** /**
* @var SportsPress The single instance of the class * @var SportsPress The single instance of the class
@@ -234,6 +234,9 @@ final class SportsPress {
// WPML-related localization hooks // WPML-related localization hooks
include_once( 'includes/class-sp-wpml.php' ); include_once( 'includes/class-sp-wpml.php' );
// REST API
//include_once( 'includes/class-sp-rest-api.php' );
// TGMPA // TGMPA
require_once dirname( __FILE__ ) . '/includes/libraries/class-tgm-plugin-activation.php'; require_once dirname( __FILE__ ) . '/includes/libraries/class-tgm-plugin-activation.php';
} }
@@ -337,6 +340,7 @@ final class SportsPress {
'name' => 'SportsPress for Cricket', 'name' => 'SportsPress for Cricket',
'slug' => 'sportspress-for-cricket', 'slug' => 'sportspress-for-cricket',
'required' => false, 'required' => false,
'version' => '1.0',
); );
break; break;
case 'golf': case 'golf':

View File

@@ -4,7 +4,7 @@
* *
* @author ThemeBoy * @author ThemeBoy
* @package SportsPress_Birthdays * @package SportsPress_Birthdays
* @version 1.9 * @version 1.9.19
*/ */
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 1.9 * @version 1.9.19
*/ */
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 1.9 * @version 1.9.19
*/ */
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 1.9 * @version 1.9.19
*/ */
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 1.9.6 * @version 1.9.19
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly