Tag version 2.7.17

This commit is contained in:
Brian Miyaji
2023-12-11 16:57:26 +09:00
parent a085ce0920
commit 9a2af2e387
7 changed files with 23 additions and 11 deletions

View File

@@ -1,5 +1,11 @@
== SportsPress Changelog == == 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 = = 2.7.16 =
* Update - WP version tested up to 6.1. * Update - WP version tested up to 6.1.
* Update - Leaflet version to 1.8.0. * Update - Leaflet version to 1.8.0.

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin * @package SportsPress/Admin
* @version 2.7.13 * @version 2.7.17
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {

View File

@@ -5,7 +5,7 @@
* The SportsPress league table class handles individual league table data. * The SportsPress league table class handles individual league table data.
* *
* @class SP_League_Table * @class SP_League_Table
* @version 2.7.9 * @version 2.7.17
* @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.7.15 * @version 2.7.17
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Modules * @category Modules
* @package SportsPress/Modules * @package SportsPress/Modules
* @version 2.7.9 * @version 2.7.17
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -19,7 +19,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) :
* Main SportsPress Next Team Preset Class * Main SportsPress Next Team Preset Class
* *
* @class SportsPress_Next_Team_Preset * @class SportsPress_Next_Team_Preset
* @version 2.6.3 * @version 2.7.17
*/ */
class SportsPress_Next_Team_Preset { class SportsPress_Next_Team_Preset {
@@ -49,7 +49,7 @@ if ( ! class_exists( 'SportsPress_Next_Team_Preset' ) ) :
*/ */
private function define_constants() { private function define_constants() {
if ( ! defined( 'SP_NEXT_TEAM_PRESET_VERSION' ) ) { 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' ) ) { if ( ! defined( 'SP_NEXT_TEAM_PRESET_URL' ) ) {

View File

@@ -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 Tags: calendars, club, club management, esports, events, fixtures, leagues, league management, sports, sports club, sports data, team rosters
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: 6.1 Tested up to: 6.4
Stable tag: 2.7.16 Stable tag: 2.7.17
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
@@ -240,6 +240,12 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
== Changelog == == 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 = = 2.7.16 =
* Update - WP version tested up to 6.1. * Update - WP version tested up to 6.1.
* Update - Leaflet version to 1.8.0. * Update - Leaflet version to 1.8.0.

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.7.16 * Version: 2.7.17
* 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.7.16 * @version 2.7.17
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '2.7.16'; public $version = '2.7.17';
/** /**
* @var SportsPress The single instance of the class * @var SportsPress The single instance of the class