diff --git a/changelog.txt b/changelog.txt index b421888f..fa7cb5e7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,17 @@ == SportsPress Changelog == += 2.6.8 = +* Feature - Ability to add icons to player statistics. +* Feature - Ability to display matchday in event blocks. +* Feature - Add support for commenting on scheduled events. +* Feature - Option to filter birthdays widget by week. +* Feature - Option to filter events by competitive or friendly. +* Tweak - Display pin in venue map and link map to web version. +* Tweak - Add UK as alternate to GB in countries legacy list. +* Tweak - Remove duplicate teams from players. +* Tweak - Improve player assignment filtering for player lists. +* Fix - Animated countdowns when visitor and site are in a different timezones. + = 2.6.7 = * Fix - Update Google Maps API endpoints. diff --git a/includes/admin/post-types/class-sp-admin-cpt-statistic.php b/includes/admin/post-types/class-sp-admin-cpt-statistic.php index a94b0fac..135169e2 100644 --- a/includes/admin/post-types/class-sp-admin-cpt-statistic.php +++ b/includes/admin/post-types/class-sp-admin-cpt-statistic.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Post_Types - * @version 1.8 + * @version 2.6.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/post-types/class-sp-admin-meta-boxes.php b/includes/admin/post-types/class-sp-admin-meta-boxes.php index c4b69203..07257144 100644 --- a/includes/admin/post-types/class-sp-admin-meta-boxes.php +++ b/includes/admin/post-types/class-sp-admin-meta-boxes.php @@ -7,7 +7,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 2.5.1 + * @version 2.6.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/settings/class-sp-settings-players.php b/includes/admin/settings/class-sp-settings-players.php index 478e394e..ab1f98e4 100644 --- a/includes/admin/settings/class-sp-settings-players.php +++ b/includes/admin/settings/class-sp-settings-players.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin - * @version 2.5 + * @version 2.6.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/class-sp-event.php b/includes/class-sp-event.php index 0f0a3dc2..63f5cbf5 100644 --- a/includes/class-sp-event.php +++ b/includes/class-sp-event.php @@ -5,7 +5,7 @@ * The SportsPress event class handles individual event data. * * @class SP_Event - * @version 2.6.6 + * @version 2.6.8 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/class-sp-player-list.php b/includes/class-sp-player-list.php index 95f31882..e4007537 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.6.4 + * @version 2.6.8 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/class-sp-player.php b/includes/class-sp-player.php index ccf7a432..ef1cc7fd 100644 --- a/includes/class-sp-player.php +++ b/includes/class-sp-player.php @@ -5,7 +5,7 @@ * The SportsPress player class handles individual player data. * * @class SP_Player - * @version 2.6.5 + * @version 2.6.8 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/class-sp-post-types.php b/includes/class-sp-post-types.php index c2e2519d..f7638240 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.6.1 + * @version 2.6.8 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/modules/sportspress-icons.php b/modules/sportspress-icons.php index e17f4496..dec0b3be 100644 --- a/modules/sportspress-icons.php +++ b/modules/sportspress-icons.php @@ -5,7 +5,7 @@ Plugin URI: http://themeboy.com/ Description: Add vector performance icons to SportsPress. Author: ThemeBoy Author URI: http://themeboy.com/ -Version: 2.5.2 +Version: 2.6.8 */ // Exit if accessed directly @@ -17,7 +17,7 @@ if ( ! class_exists( 'SportsPress_Icons' ) ) : * Main SportsPress Icons Class * * @class SportsPress_Icons - * @version 2.5.2 + * @version 2.6.8 */ class SportsPress_Icons { @@ -49,7 +49,7 @@ class SportsPress_Icons { */ private function define_constants() { if ( !defined( 'SP_ICONS_VERSION' ) ) - define( 'SP_ICONS_VERSION', '2.5.2' ); + define( 'SP_ICONS_VERSION', '2.6.8' ); if ( !defined( 'SP_ICONS_URL' ) ) define( 'SP_ICONS_URL', plugin_dir_url( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index bde268cf..b0bff6a4 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: 4.9 -Stable tag: 2.6.7 +Stable tag: 2.6.8 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -237,6 +237,18 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.6.8 = +* Feature - Ability to add icons to player statistics. +* Feature - Ability to display matchday in event blocks. +* Feature - Add support for commenting on scheduled events. +* Feature - Option to filter birthdays widget by week. +* Feature - Option to filter events by competitive or friendly. +* Tweak - Display pin in venue map and link map to web version. +* Tweak - Add UK as alternate to GB in countries legacy list. +* Tweak - Remove duplicate teams from players. +* Tweak - Improve player assignment filtering for player lists. +* Fix - Animated countdowns when visitor and site are in a different timezones. + = 2.6.7 = * Fix - Update Google Maps API endpoints. diff --git a/sportspress.php b/sportspress.php index da41e642..9f23dba1 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.7 + * Version: 2.6.8 * 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.7 + * @version 2.6.8 */ final class SportsPress { /** * @var string */ - public $version = '2.6.7'; + public $version = '2.6.8'; /** * @var SportsPress The single instance of the class diff --git a/templates/player-list.php b/templates/player-list.php index 3a839a64..808c308c 100644 --- a/templates/player-list.php +++ b/templates/player-list.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6 + * @version 2.6.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/player-selector.php b/templates/player-selector.php index 26a8d723..594df03e 100644 --- a/templates/player-selector.php +++ b/templates/player-selector.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.6 + * @version 2.6.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly