Tag version 2.6.20
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
== SportsPress Changelog ==
|
||||
|
||||
= 2.6.20 =
|
||||
* Tweak - Improve compatibility with volleyball for checkbox performance.
|
||||
* Preset - Update volleyball preset with additional options.
|
||||
|
||||
= 2.6.19 =
|
||||
* Feature - Enable filtering calendars base on players.
|
||||
* Feature - Add checkbox type to event performance.
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
* https://wordpress.org/support/topic/timezone-issues-with-schedule-calendar-list/
|
||||
*
|
||||
* @class SP_Calendar
|
||||
* @version 2.6.19
|
||||
* @version 2.6.20
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
|
||||
@@ -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.2
|
||||
Stable tag: 2.6.19
|
||||
Stable tag: 2.6.20
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -52,6 +52,7 @@ More details about each feature are available on the [SportsPress Website](http:
|
||||
* [SportsPress for Cricket](https://wordpress.org/plugins/sportspress-for-cricket/)
|
||||
* [SportsPress for Football (Soccer)](https://wordpress.org/plugins/sportspress-for-soccer/)
|
||||
* [SportsPress for Golf](https://wordpress.org/plugins/sportspress-for-golf/)
|
||||
* [SportsPress for Volleyball (Soccer)](https://wordpress.org/plugins/sportspress-for-volleyball/)
|
||||
|
||||
= SportsPress Pro =
|
||||
|
||||
@@ -237,6 +238,10 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.6.20 =
|
||||
* Tweak - Improve compatibility with volleyball for checkbox performance.
|
||||
* Preset - Update volleyball preset with additional options.
|
||||
|
||||
= 2.6.19 =
|
||||
* Feature - Enable filtering calendars base on players.
|
||||
* Feature - Add checkbox type to event performance.
|
||||
|
||||
@@ -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.19
|
||||
* Version: 2.6.20
|
||||
* 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.19
|
||||
* @version 2.6.20
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '2.6.19';
|
||||
public $version = '2.6.20';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
@@ -383,6 +383,14 @@ final class SportsPress {
|
||||
'version' => '0.9.6',
|
||||
);
|
||||
break;
|
||||
case 'volleyball':
|
||||
$plugins[] = array(
|
||||
'name' => 'SportsPress for Volleyball',
|
||||
'slug' => 'sportspress-for-volleyball',
|
||||
'required' => false,
|
||||
'version' => '0.9',
|
||||
);
|
||||
break;
|
||||
endswitch;
|
||||
|
||||
$config = array(
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
*
|
||||
* @author ThemeBoy
|
||||
* @package SportsPress/Templates
|
||||
* @version 2.6.19
|
||||
* @version 2.6.20
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
Reference in New Issue
Block a user