Tag version 2.6.15

This commit is contained in:
Brian Miyaji
2019-05-29 17:07:10 +10:00
parent 6b08cff483
commit 6963f081bf
25 changed files with 55 additions and 39 deletions

View File

@@ -1,5 +1,19 @@
== SportsPress Changelog ==
= 2.6.15 =
* Important - Using Google Maps will require a SportsPress Pro license after August 31, 2019.
* Refactor - Fallback to OpenStreetMap for venue maps without SportsPress Pro.
* Feature - Option to display team logos instead of team names in player lists.
* Feature - Option to display custom specs in event blocks and event lists.
* Tweak - Improve page load speed when creating new league tables.
* Tweak - Prevent displaying events other than published or scheduled.
* Fix - Icons only appearing in the first table when player lists are grouped.
* Fix - Character encoding and CRLF errors in calendar feeds.
* Fix - Missing field location Schema error.
* Fix - Dropdowns collapsing in admin when meta boxes are hidden.
* Fix - Timezone handling in countdowns.
* Fix - Error when using special characters in admin settings.
= 2.6.14 =
* Fix - API endpoints for secondary post types.

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy
* @category Feeds
* @package SportsPress/Feeds
* @version 2.6.9
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin
* @version 2.6.8
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -9,7 +9,7 @@
* @author WooThemes
* @category Admin
* @package SportsPress/Admin
* @version 2.6.7
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;

View File

@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
* Handles taxonomies in admin
*
* @class SP_Admin_Taxonomies
* @version 2.6.9
* @version 2.6.15
* @package SportsPress/Admin
* @category Class
* @author ThemeBoy

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin/Meta_Boxes
* @version 2.6.3
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin/Meta_Boxes
* @version 2.5.5
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin
* @version 2.6
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -8,7 +8,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
* AJAX Event Handler
*
* @class SP_AJAX
* @version 2.6.12
* @version 2.6.15
* @package SportsPress/Classes
* @category Class
* @author ThemeBoy

View File

@@ -8,7 +8,7 @@
* https://wordpress.org/support/topic/timezone-issues-with-schedule-calendar-list/
*
* @class SP_Calendar
* @version 2.6.11
* @version 2.6.15
* @package SportsPress/Classes
* @category Class
* @author ThemeBoy

View File

@@ -5,7 +5,7 @@
* The SportsPress league table class handles individual league table data.
*
* @class SP_League_Table
* @version 2.6.6
* @version 2.6.15
* @package SportsPress/Classes
* @category Class
* @author ThemeBoy

View File

@@ -5,7 +5,7 @@
* The SportsPress modules class stores available modules.
*
* @class SP_Modules
* @version 2.6.9
* @version 2.6.15
* @package SportsPress/Classes
* @category Class
* @author ThemeBoy

View File

@@ -1,6 +1,6 @@
SportsPress
Copyright 2018 by the contributors
Copyright 2019 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

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add event calendars to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.6.14
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Calendars' ) ) :
* Main SportsPress Calendars Class
*
* @class SportsPress_Calendars
* @version 2.6.14
* @version 2.6.15
*/
class SportsPress_Calendars {
@@ -51,7 +51,7 @@ class SportsPress_Calendars {
*/
private function define_constants() {
if ( !defined( 'SP_CALENDARS_VERSION' ) )
define( 'SP_CALENDARS_VERSION', '2.6.14' );
define( 'SP_CALENDARS_VERSION', '2.6.15' );
if ( !defined( 'SP_CALENDARS_URL' ) )
define( 'SP_CALENDARS_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add event specs/stats to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.6
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Event_Specs' ) ) :
* Main SportsPress Event Specs Class
*
* @class SportsPress_Event_Specs
* @version 2.6
* @version 2.6.15
*/
class SportsPress_Event_Specs {
@@ -49,7 +49,7 @@ class SportsPress_Event_Specs {
*/
private function define_constants() {
if ( !defined( 'SP_EVENT_SPECS_VERSION' ) )
define( 'SP_EVENT_SPECS_VERSION', '2.6' );
define( 'SP_EVENT_SPECS_VERSION', '2.6.15' );
if ( !defined( 'SP_EVENT_SPECS_URL' ) )
define( 'SP_EVENT_SPECS_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add league tables to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.6.14
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_League_Tables' ) ) :
* Main SportsPress League Tables Class
*
* @class SportsPress_League_Tables
* @version 2.6.14
* @version 2.6.15
*/
class SportsPress_League_Tables {
@@ -48,7 +48,7 @@ class SportsPress_League_Tables {
*/
private function define_constants() {
if ( !defined( 'SP_LEAGUE_TABLES_VERSION' ) )
define( 'SP_LEAGUE_TABLES_VERSION', '2.6.14' );
define( 'SP_LEAGUE_TABLES_VERSION', '2.6.15' );
if ( !defined( 'SP_LEAGUE_TABLES_URL' ) )
define( 'SP_LEAGUE_TABLES_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add officials to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.6.14
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Officials' ) ) :
* Main SportsPress Officials Class
*
* @class SportsPress_Officials
* @version 2.6.14
* @version 2.6.15
*/
class SportsPress_Officials {
@@ -66,7 +66,7 @@ class SportsPress_Officials {
*/
private function define_constants() {
if ( !defined( 'SP_OFFICIALS_VERSION' ) )
define( 'SP_OFFICIALS_VERSION', '2.6.14' );
define( 'SP_OFFICIALS_VERSION', '2.6.15' );
if ( !defined( 'SP_OFFICIALS_URL' ) )
define( 'SP_OFFICIALS_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Integrate OpenStreetMap to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.7
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ):
* Main SportsPress OpenStreetMap Class
*
* @class SportsPress_OpenStreetMap
* @version 2.7
* @version 2.6.15
*/
class SportsPress_OpenStreetMap {
@@ -44,7 +44,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ):
*/
private function define_constants() {
if ( !defined( 'SP_OPENSTREETMAP_VERSION' ) )
define( 'SP_OPENSTREETMAP_VERSION', '2.7' );
define( 'SP_OPENSTREETMAP_VERSION', '2.6.15' );
if ( !defined( 'SP_OPENSTREETMAP_URL' ) )
define( 'SP_OPENSTREETMAP_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/
Description: Add player lists to SportsPress.
Author: ThemeBoy
Author URI: http://themeboy.com/
Version: 2.6.14
Version: 2.6.15
*/
// Exit if accessed directly
@@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Player_Lists' ) ) :
* Main SportsPress Player Lists Class
*
* @class SportsPress_Player_Lists
* @version 2.6.14
* @version 2.6.15
*/
class SportsPress_Player_Lists {
@@ -48,7 +48,7 @@ class SportsPress_Player_Lists {
*/
private function define_constants() {
if ( !defined( 'SP_PLAYER_LISTS_VERSION' ) )
define( 'SP_PLAYER_LISTS_VERSION', '2.6.14' );
define( 'SP_PLAYER_LISTS_VERSION', '2.6.15' );
if ( !defined( 'SP_PLAYER_LISTS_URL' ) )
define( 'SP_PLAYER_LISTS_URL', plugin_dir_url( __FILE__ ) );

View File

@@ -3,8 +3,8 @@ Contributors: ThemeBoy, brianmiyaji, aylaview, savvasha, nabil_kadimi
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: 5.0
Stable tag: 2.6.14
Tested up to: 5.2
Stable tag: 2.6.15
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -248,6 +248,8 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
* Fix - Character encoding and CRLF errors in calendar feeds.
* Fix - Missing field location Schema error.
* Fix - Dropdowns collapsing in admin when meta boxes are hidden.
* Fix - Timezone handling in countdowns.
* Fix - Error when using special characters in admin settings.
= 2.6.14 =
* Fix - API endpoints for secondary post types.

View File

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

View File

@@ -4,7 +4,7 @@
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 2.6.11
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -4,7 +4,7 @@
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 2.6.12
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -4,7 +4,7 @@
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 2.6.10
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

View File

@@ -4,7 +4,7 @@
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 2.6.8
* @version 2.6.15
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly