diff --git a/changelog.txt b/changelog.txt index fa7cb5e7..673e2e2f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,21 @@ == SportsPress Changelog == += 2.6.9 = +* Feature - New event shortcodes: venue, officials, teams, and full event info. +* Feature - Option to choose default nationality for faster data entry. +* Feature - Date and time display options in countdown widgets. +* Feature - Ability to filter player list shortcodes by league, season, and team. +* Tweak - Improve page load for new player lists. +* Tweak - Improve iCal feed by fixing wrapping issues. +* Tweak - Use lighter placeholder color to differentiate from entered values. +* Tweak - Preserve league, season, and position assignments when importing players. +* Fix - PHP warnings when using version 7.2 or later. +* Fix - Countdown timer format when event is 100 or more days away. +* Fix - Player list displaying zero values when formatted using decimal places. +* Fix - Start of the week filters for week-based calendars. +* Fix - Location picker freezing issue. +* Fix - Custom post types pages displaying blank page when Gutenberg is installed. + = 2.6.8 = * Feature - Ability to add icons to player statistics. * Feature - Ability to display matchday in event blocks. diff --git a/readme.txt b/readme.txt index b0bff6a4..831d6e69 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.8 +Stable tag: 2.6.9 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -237,6 +237,22 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.6.9 = +* Feature - New event shortcodes: venue, officials, teams, and full event info. +* Feature - Option to choose default nationality for faster data entry. +* Feature - Date and time display options in countdown widgets. +* Feature - Ability to filter player list shortcodes by league, season, and team. +* Tweak - Improve page load for new player lists. +* Tweak - Improve iCal feed by fixing wrapping issues. +* Tweak - Use lighter placeholder color to differentiate from entered values. +* Tweak - Preserve league, season, and position assignments when importing players. +* Fix - PHP warnings when using version 7.2 or later. +* Fix - Countdown timer format when event is 100 or more days away. +* Fix - Player list displaying zero values when formatted using decimal places. +* Fix - Start of the week filters for week-based calendars. +* Fix - Location picker freezing issue. +* Fix - Custom post types pages displaying blank page when Gutenberg is installed. + = 2.6.8 = * Feature - Ability to add icons to player statistics. * Feature - Ability to display matchday in event blocks. diff --git a/sportspress.php b/sportspress.php index 9f23dba1..e1df7978 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.8 + * Version: 2.6.9 * 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.8 + * @version 2.6.9 */ final class SportsPress { /** * @var string */ - public $version = '2.6.8'; + public $version = '2.6.9'; /** * @var SportsPress The single instance of the class