Tag version 2.5.2
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
* The SportsPress admin sports class stores preset sport data.
|
||||
*
|
||||
* @class SP_Admin_Sports
|
||||
* @version 2.4
|
||||
* @version 2.5.2
|
||||
* @package SportsPress/Admin
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Meta_Boxes
|
||||
* @version 2.5
|
||||
* @version 2.5.2
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Meta_Boxes
|
||||
* @version 2.5
|
||||
* @version 2.5.2
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress REST API class handles all API-related hooks.
|
||||
*
|
||||
* @class SP_REST_API
|
||||
* @version 2.2
|
||||
* @version 2.5.2
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @package SportsPress/API
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress event class handles individual event data.
|
||||
*
|
||||
* @class SP_Event
|
||||
* @version 2.5
|
||||
* @version 2.5.2
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
|
||||
Description: Add vector performance icons to SportsPress.
|
||||
Author: ThemeBoy
|
||||
Author URI: http://themeboy.com/
|
||||
Version: 2.5
|
||||
Version: 2.5.2
|
||||
*/
|
||||
|
||||
// Exit if accessed directly
|
||||
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Icons' ) ) :
|
||||
* Main SportsPress Icons Class
|
||||
*
|
||||
* @class SportsPress_Icons
|
||||
* @version 2.5
|
||||
* @version 2.5.2
|
||||
*/
|
||||
class SportsPress_Icons {
|
||||
|
||||
@@ -48,7 +48,7 @@ class SportsPress_Icons {
|
||||
*/
|
||||
private function define_constants() {
|
||||
if ( !defined( 'SP_ICONS_VERSION' ) )
|
||||
define( 'SP_ICONS_VERSION', '2.5' );
|
||||
define( 'SP_ICONS_VERSION', '2.5.2' );
|
||||
|
||||
if ( !defined( 'SP_ICONS_URL' ) )
|
||||
define( 'SP_ICONS_URL', plugin_dir_url( __FILE__ ) );
|
||||
|
||||
13
readme.txt
13
readme.txt
@@ -1,10 +1,10 @@
|
||||
=== SportsPress - Sports Club & League Manager ===
|
||||
Contributors: ThemeBoy, brianmiyaji, aylaview, rochesterj
|
||||
Contributors: ThemeBoy, brianmiyaji, aylaview
|
||||
Tags: calendars, club, club management, esports, events, fixtures, leagues, league management, sports, sports club, sports data, team rosters
|
||||
Donate link: http://tboy.co/donate
|
||||
Requires at least: 3.8
|
||||
Tested up to: 4.9
|
||||
Stable tag: 2.5.1
|
||||
Stable tag: 2.5.2
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -237,6 +237,15 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.5.2 =
|
||||
* Feature - Add match day to REST API.
|
||||
* Tweak - Add order to positions during preset installation.
|
||||
* Tweak - Display links to add new duties and officials if empty.
|
||||
* Tweak - Add linebreaks to substitute dropdowns.
|
||||
* Fix - Use default full time minutes in REST API.
|
||||
* Fix - Uploading custom images as performance icons.
|
||||
* Fix - Displaying timed performance with custom images.
|
||||
|
||||
= 2.5.1 =
|
||||
* Feature - Officials importer.
|
||||
* Feature - Officials added to dashboard glance items.
|
||||
|
||||
@@ -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.5.1
|
||||
* Version: 2.5.2
|
||||
* 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.5.1
|
||||
* @version 2.5.2
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '2.5.1';
|
||||
public $version = '2.5.2';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
*
|
||||
* @author ThemeBoy
|
||||
* @package SportsPress/Templates
|
||||
* @version 2.5
|
||||
* @version 2.5.2
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
Reference in New Issue
Block a user