diff --git a/changelog.txt b/changelog.txt index 9296c72b..bee296a1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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. diff --git a/includes/class-sp-calendar.php b/includes/class-sp-calendar.php index 32cbb6fd..f207bb3f 100644 --- a/includes/class-sp-calendar.php +++ b/includes/class-sp-calendar.php @@ -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 diff --git a/readme.txt b/readme.txt index dae4eba3..b391c6ce 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.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. diff --git a/sportspress.php b/sportspress.php index 794db0aa..20437930 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.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( diff --git a/templates/event-performance-table.php b/templates/event-performance-table.php index c26ccc3a..10c2ae4f 100644 --- a/templates/event-performance-table.php +++ b/templates/event-performance-table.php @@ -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