diff --git a/changelog.txt b/changelog.txt index cfe31811..f6356c36 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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. diff --git a/feeds/ical.php b/feeds/ical.php index b61e7765..92a8c6a7 100644 --- a/feeds/ical.php +++ b/feeds/ical.php @@ -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; } diff --git a/includes/admin/class-sp-admin-dashboard.php b/includes/admin/class-sp-admin-dashboard.php index f911d033..bfac9925 100644 --- a/includes/admin/class-sp-admin-dashboard.php +++ b/includes/admin/class-sp-admin-dashboard.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin - * @version 2.7.13 + * @version 2.7.15 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/includes/admin/importers/class-sp-fixture-importer.php b/includes/admin/importers/class-sp-fixture-importer.php index 23a9ed4e..3b016a72 100644 --- a/includes/admin/importers/class-sp-fixture-importer.php +++ b/includes/admin/importers/class-sp-fixture-importer.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Importers - * @version 2.7.13 + * @version 2.7.15 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php index 66062dee..8b899761 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 2.7.9 + * @version 2.7.15 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/includes/sp-core-functions.php b/includes/sp-core-functions.php index 5d6928ad..58de64ec 100644 --- a/includes/sp-core-functions.php +++ b/includes/sp-core-functions.php @@ -7,7 +7,7 @@ * @author ThemeBoy * @category Core * @package SportsPress/Functions - * @version 2.7.11 + * @version 2.7.15 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/license.txt b/license.txt index e0e1ca43..9063d1b7 100644 --- a/license.txt +++ b/license.txt @@ -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 diff --git a/readme.txt b/readme.txt index 86771add..1b980d2b 100644 --- a/readme.txt +++ b/readme.txt @@ -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. diff --git a/sportspress.php b/sportspress.php index cf8c4f55..b05a358a 100644 --- a/sportspress.php +++ b/sportspress.php @@ -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