Tag version 2.7.14

This commit is contained in:
Brian Miyaji
2021-12-01 01:48:44 +09:00
parent 1f85bcf1ff
commit 9974ed6518
7 changed files with 22 additions and 10 deletions

View File

@@ -1,5 +1,11 @@
== SportsPress Changelog == == SportsPress Changelog ==
= 2.7.14 =
* Fix - Error when non-value added as adjustment.
* Fix - Map links not escaped properly.
* Fix - Event blocks missing attributes.
* Fix - Player statistics meta escaping.
= 2.7.13 = = 2.7.13 =
* Fix - Theme notice escaping. * Fix - Theme notice escaping.
* Fix - Timezone dropdown selection now shown in general settings. * Fix - Timezone dropdown selection now shown in general settings.

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 2.7.9 * @version 2.7.14
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {

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.7.9 * @version 2.7.14
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy

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.14
*/ */
// Exit if accessed directly // Exit if accessed directly
@@ -19,7 +19,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ) :
* Main SportsPress OpenStreetMap Class * Main SportsPress OpenStreetMap Class
* *
* @class SportsPress_OpenStreetMap * @class SportsPress_OpenStreetMap
* @version 2.7.5 * @version 2.7.14
*/ */
class SportsPress_OpenStreetMap { class SportsPress_OpenStreetMap {
@@ -47,7 +47,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ) :
*/ */
private function define_constants() { private function define_constants() {
if ( ! defined( 'SP_OPENSTREETMAP_VERSION' ) ) { if ( ! defined( 'SP_OPENSTREETMAP_VERSION' ) ) {
define( 'SP_OPENSTREETMAP_VERSION', '2.7.5' ); define( 'SP_OPENSTREETMAP_VERSION', '2.7.14' );
} }
if ( ! defined( 'SP_OPENSTREETMAP_URL' ) ) { if ( ! defined( 'SP_OPENSTREETMAP_URL' ) ) {

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: 5.8.1 Tested up to: 5.8.1
Stable tag: 2.7.13 Stable tag: 2.7.14
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.14 =
* Fix - Error when non-value added as adjustment.
* Fix - Map links not escaped properly.
* Fix - Event blocks missing attributes.
* Fix - Player statistics meta escaping.
= 2.7.13 = = 2.7.13 =
* Fix - Theme notice escaping. * Fix - Theme notice escaping.
* Fix - Timezone dropdown selection now shown in general settings. * Fix - Timezone dropdown selection now shown in general settings.

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.13 * Version: 2.7.14
* 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.13 * @version 2.7.14
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '2.7.13'; public $version = '2.7.14';
/** /**
* @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.2 * @version 2.7.14
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {