Tag version 2.7.15
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
== SportsPress Changelog ==
|
||||
|
||||
= 2.7.15 =
|
||||
* Feature - Sports news widget in dashboard.
|
||||
* Fix - Fixture importer bug with extended characters in league and season name.
|
||||
* Fix - Player list not loading (too many resources).
|
||||
* Fix - Performance format not updating.
|
||||
* Fix - Trim whitespace on geo coordinates to avoid import error.
|
||||
|
||||
= 2.7.14 =
|
||||
* Fix - Error when non-value added as adjustment.
|
||||
* Fix - Map links not escaped properly.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Feeds
|
||||
* @package SportsPress/Feeds
|
||||
* @version 2.7.5
|
||||
* @version 2.7.15
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
@@ -95,7 +95,7 @@ foreach ( $events as $event ) :
|
||||
$latitude = sp_array_value( $meta, 'sp_latitude', false );
|
||||
$longitude = sp_array_value( $meta, 'sp_longitude', false );
|
||||
if ( false !== $latitude && false !== $longitude ) {
|
||||
$geo = trim($latitude) . ';' . trim($longitude);
|
||||
$geo = $latitude . ';' . $longitude;
|
||||
} else {
|
||||
$geo = false;
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin
|
||||
* @version 2.7.13
|
||||
* @version 2.7.15
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Importers
|
||||
* @version 2.7.13
|
||||
* @version 2.7.15
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin/Meta_Boxes
|
||||
* @version 2.7.9
|
||||
* @version 2.7.15
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Core
|
||||
* @package SportsPress/Functions
|
||||
* @version 2.7.11
|
||||
* @version 2.7.15
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
SportsPress
|
||||
|
||||
Copyright 2021 by the contributors
|
||||
Copyright 2022 by the contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -4,7 +4,7 @@ Tags: calendars, club, club management, esports, events, fixtures, leagues, leag
|
||||
Donate link: http://tboy.co/donate
|
||||
Requires at least: 3.8
|
||||
Tested up to: 5.8.1
|
||||
Stable tag: 2.7.14
|
||||
Stable tag: 2.7.15
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -240,6 +240,13 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.7.15 =
|
||||
* Feature - Sports news widget in dashboard.
|
||||
* Fix - Fixture importer bug with extended characters in league and season name.
|
||||
* Fix - Player list not loading (too many resources).
|
||||
* Fix - Performance format not updating.
|
||||
* Fix - Trim whitespace on geo coordinates to avoid import error.
|
||||
|
||||
= 2.7.14 =
|
||||
* Fix - Error when non-value added as adjustment.
|
||||
* Fix - Map links not escaped properly.
|
||||
|
||||
@@ -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.14
|
||||
* Version: 2.7.15
|
||||
* 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.14
|
||||
* @version 2.7.15
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '2.7.14';
|
||||
public $version = '2.7.15';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
|
||||
Reference in New Issue
Block a user