Tag version 2.5.5

This commit is contained in:
Brian Miyaji
2018-01-23 20:11:50 +11:00
parent d40b7588ee
commit 68a5fb0c02
3 changed files with 22 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
SportsPress SportsPress
Copyright 2017 by the contributors Copyright 2018 by the contributors
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@@ -1,10 +1,10 @@
=== SportsPress - Sports Club & League Manager === === SportsPress - Sports Club & League Manager ===
Contributors: ThemeBoy, brianmiyaji, aylaview Contributors: ThemeBoy, brianmiyaji, aylaview, savvasha
Tags: calendars, club, club management, esports, events, fixtures, leagues, league management, sports, sports club, sports data, team rosters Tags: calendars, club, club management, esports, events, fixtures, leagues, league management, sports, sports club, sports data, team rosters
Donate link: http://tboy.co/donate Donate link: http://tboy.co/donate
Requires at least: 3.8 Requires at least: 3.8
Tested up to: 4.9 Tested up to: 4.9
Stable tag: 2.5.4 Stable tag: 2.5.5
License: GPLv3 License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html 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 == == Changelog ==
= 2.5.5 =
* Feature - Main league and current season settings.
* Feature - New shortcode including full staff profile.
* Feature - Add code highlighting to custom CSS field.
* Feature - Add responsive layout option to tables.
* Feature - Add filters to REST API players endpoint.
* Feature - Option to merge duplicate teams, players, and staff.
* Feature - Option to display specific event in event blocks.
* Feature - Option to sort player checklist by name and squad number in events.
* Feature - Option to filter player lists by team.
* Feature - Option to link staff members.
* Feature - Filter countdown by calendar.
* Fix - Calculate column totals in box score.
* Fix - Mismatched encoding of included library.
* Localization - Fix translation function missing around string.
= 2.5.4 = = 2.5.4 =
* Fix - Error when editing league table using older versions of WordPress. * Fix - Error when editing league table using older versions of WordPress.

View File

@@ -3,7 +3,7 @@
* Plugin Name: SportsPress * Plugin Name: SportsPress
* Plugin URI: http://themeboy.com/sportspress/ * Plugin URI: http://themeboy.com/sportspress/
* Description: Manage your club and its players, staff, events, league tables, and player lists. * Description: Manage your club and its players, staff, events, league tables, and player lists.
* Version: 2.5.4 * Version: 2.5.5
* Author: ThemeBoy * Author: ThemeBoy
* Author URI: http://themeboy.com * Author URI: http://themeboy.com
* Requires at least: 3.8 * Requires at least: 3.8
@@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) :
* Main SportsPress Class * Main SportsPress Class
* *
* @class SportsPress * @class SportsPress
* @version 2.5.4 * @version 2.5.5
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '2.5.4'; public $version = '2.5.5';
/** /**
* @var SportsPress The single instance of the class * @var SportsPress The single instance of the class