diff --git a/changelog.txt b/changelog.txt index 63666c01..46162817 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,20 @@ == SportsPress Changelog == += 2.7.1 = +* Feature - Enable player list filtering by nationality. +* Feature - Add option to display date of birth in player lists. +* Tweak - Exclude postponed and canceled events from countdowns. +* Tweak - Apply reverse order option to event results. +* Tweak - When a team has more than one home venue, separate with commas. +* Fix - Venue address containing pluses in events. +* Fix - Event blocks showing the wrong dates when embedded within other event pages. +* Fix - Statistics not adding manual values when not based on equations. +* Fix - Event lists ignoring the format parameter. +* Fix - League table order when displaying multiple tables in team profiles. +* Fix - Error when deleting configuration columns. +* Fix - Player lists not including past players in some cases. +* Fix - Prevent error when viewing event calendar in some cases. + = 2.7 = * Feature - New bulk actions to postpone and cancel multiple events. * Feature - Add date of birth to player importer. diff --git a/includes/admin/importers/class-sp-event-importer.php b/includes/admin/importers/class-sp-event-importer.php index 9fac3d72..7c6ffc36 100644 --- a/includes/admin/importers/class-sp-event-importer.php +++ b/includes/admin/importers/class-sp-event-importer.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Importers - * @version 2.5 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php index 864b22f4..0088c4f5 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 2.1 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php index 9daea485..a837f549 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 2.5.5 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/class-sp-player-list.php b/includes/class-sp-player-list.php index f244d6d0..85153bdd 100644 --- a/includes/class-sp-player-list.php +++ b/includes/class-sp-player-list.php @@ -5,7 +5,7 @@ * The SportsPress player list class handles individual player list data. * * @class SP_Player_List - * @version 2.7 + * @version 2.7.1 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/class-sp-post-types.php b/includes/class-sp-post-types.php index 1ff4348e..173c747c 100644 --- a/includes/class-sp-post-types.php +++ b/includes/class-sp-post-types.php @@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) { * Registers post types and taxonomies * * @class SP_Post_types - * @version 2.7 + * @version 2.7.1 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/class-sp-team.php b/includes/class-sp-team.php index c518d381..b00b2a7e 100644 --- a/includes/class-sp-team.php +++ b/includes/class-sp-team.php @@ -5,7 +5,7 @@ * The SportsPress team class handles individual team data. * * @class SP_Team - * @version 2.6.3 + * @version 2.7.1 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/modules/sportspress-birthdays.php b/modules/sportspress-birthdays.php index bcbf1d32..d7b38bee 100644 --- a/modules/sportspress-birthdays.php +++ b/modules/sportspress-birthdays.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add birthdays to players and staff. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.5 +Version: 2.7.1 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Birthdays' ) ) : * Main SportsPress Birthdays Class * * @class SportsPress_Birthdays - * @version 2.5 + * @version 2.7.1 */ class SportsPress_Birthdays { @@ -44,7 +44,7 @@ class SportsPress_Birthdays { */ private function define_constants() { if ( !defined( 'SP_BIRTHDAYS_VERSION' ) ) - define( 'SP_BIRTHDAYS_VERSION', '2.5' ); + define( 'SP_BIRTHDAYS_VERSION', '2.7.1' ); if ( !defined( 'SP_BIRTHDAYS_URL' ) ) define( 'SP_BIRTHDAYS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index 63b11de7..aaa209fd 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.3 -Stable tag: 2.7 +Stable tag: 2.7.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -240,6 +240,21 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.7.1 = +* Feature - Enable player list filtering by nationality. +* Feature - Add option to display date of birth in player lists. +* Tweak - Exclude postponed and canceled events from countdowns. +* Tweak - Apply reverse order option to event results. +* Tweak - When a team has more than one home venue, separate with commas. +* Fix - Venue address containing pluses in events. +* Fix - Event blocks showing the wrong dates when embedded within other event pages. +* Fix - Statistics not adding manual values when not based on equations. +* Fix - Event lists ignoring the format parameter. +* Fix - League table order when displaying multiple tables in team profiles. +* Fix - Error when deleting configuration columns. +* Fix - Player lists not including past players in some cases. +* Fix - Prevent error when viewing event calendar in some cases. + = 2.7 = * Feature - New bulk actions to postpone and cancel multiple events. * Feature - Add date of birth to player importer. diff --git a/sportspress.php b/sportspress.php index 7cbcdd72..2565beaf 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 + * Version: 2.7.1 * 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 + * @version 2.7.1 */ final class SportsPress { /** * @var string */ - public $version = '2.7'; + public $version = '2.7.1'; /** * @var SportsPress The single instance of the class diff --git a/templates/countdown.php b/templates/countdown.php index 0dc412b3..f515f3a4 100644 --- a/templates/countdown.php +++ b/templates/countdown.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6.12 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/event-calendar.php b/templates/event-calendar.php index 3c3d98a4..8502f7d1 100644 --- a/templates/event-calendar.php +++ b/templates/event-calendar.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.5.5 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/event-list.php b/templates/event-list.php index 07f5314d..0f308345 100644 --- a/templates/event-list.php +++ b/templates/event-list.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6.19 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/event-logos-block.php b/templates/event-logos-block.php index 08a7d344..9bce94ef 100644 --- a/templates/event-logos-block.php +++ b/templates/event-logos-block.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6 + * @version 2.7.1 */ ?>
diff --git a/templates/event-results.php b/templates/event-results.php index 395f2037..841ba3d1 100644 --- a/templates/event-results.php +++ b/templates/event-results.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/event-venue.php b/templates/event-venue.php index 1223d0bf..2a73de8c 100644 --- a/templates/event-venue.php +++ b/templates/event-venue.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.7 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/player-list.php b/templates/player-list.php index 5e74c5a7..bab8abd2 100644 --- a/templates/player-list.php +++ b/templates/player-list.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6.15 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/team-details.php b/templates/team-details.php index 96abe754..704586ef 100644 --- a/templates/team-details.php +++ b/templates/team-details.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.5 + * @version 2.7.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly