Tag version 2.7.17
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
== SportsPress Changelog ==
|
||||
|
||||
= 2.7.17 =
|
||||
* Fix - PHP 8.2.x deprecated code warnings.
|
||||
* Fix - Next team not working in shortcodes.
|
||||
* Fix - Links rendering in event specs.
|
||||
* Localization - Update translatable strings.
|
||||
|
||||
= 2.7.16 =
|
||||
* Update - WP version tested up to 6.1.
|
||||
* Update - Leaflet version to 1.8.0.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin
|
||||
* @version 2.7.13
|
||||
* @version 2.7.17
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress league table class handles individual league table data.
|
||||
*
|
||||
* @class SP_League_Table
|
||||
* @version 2.7.9
|
||||
* @version 2.7.17
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Core
|
||||
* @package SportsPress/Functions
|
||||
* @version 2.7.15
|
||||
* @version 2.7.17
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Modules
|
||||
* @package SportsPress/Modules
|
||||
* @version 2.7.9
|
||||
* @version 2.7.17
|
||||
*/
|
||||
|
||||
// Exit if accessed directly
|
||||
@@ -19,7 +19,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) :
|
||||
* Main SportsPress Next Team Preset Class
|
||||
*
|
||||
* @class SportsPress_Next_Team_Preset
|
||||
* @version 2.6.3
|
||||
* @version 2.7.17
|
||||
*/
|
||||
|
||||
class SportsPress_Next_Team_Preset {
|
||||
@@ -49,7 +49,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.3' );
|
||||
define( 'SP_NEXT_TEAM_PRESET_VERSION', '2.7.17' );
|
||||
}
|
||||
|
||||
if ( ! defined( 'SP_NEXT_TEAM_PRESET_URL' ) ) {
|
||||
|
||||
10
readme.txt
10
readme.txt
@@ -3,8 +3,8 @@ Contributors: ThemeBoy, brianmiyaji, aylaview, savvasha, nabil_kadimi, rochester
|
||||
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: 6.1
|
||||
Stable tag: 2.7.16
|
||||
Tested up to: 6.4
|
||||
Stable tag: 2.7.17
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -240,6 +240,12 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.7.17 =
|
||||
* Fix - PHP 8.2.x deprecated code warnings.
|
||||
* Fix - Next team not working in shortcodes.
|
||||
* Fix - Links rendering in event specs.
|
||||
* Localization - Update translatable strings.
|
||||
|
||||
= 2.7.16 =
|
||||
* Update - WP version tested up to 6.1.
|
||||
* Update - Leaflet version to 1.8.0.
|
||||
|
||||
@@ -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.7.16
|
||||
* Version: 2.7.17
|
||||
* 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.7.16
|
||||
* @version 2.7.17
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '2.7.16';
|
||||
public $version = '2.7.17';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
|
||||
Reference in New Issue
Block a user