From fe7575f8e786aa11ed1db5a96994309659b3cd48 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Sun, 4 Oct 2015 21:56:02 +1100 Subject: [PATCH] Tag version 1.9.8 --- includes/admin/post-types/class-sp-admin-cpt-team.php | 2 +- .../meta-boxes/class-sp-meta-box-calendar-details.php | 2 +- .../meta-boxes/class-sp-meta-box-list-details.php | 2 +- .../meta-boxes/class-sp-meta-box-table-details.php | 2 +- includes/class-sp-league-table.php | 2 +- includes/sp-template-functions.php | 2 +- readme.txt | 7 ++++++- sportspress.php | 6 +++--- templates/event-blocks.php | 2 +- templates/event-list.php | 2 +- templates/player-list.php | 2 +- 11 files changed, 18 insertions(+), 13 deletions(-) diff --git a/includes/admin/post-types/class-sp-admin-cpt-team.php b/includes/admin/post-types/class-sp-admin-cpt-team.php index c02a82be..d37ba13e 100644 --- a/includes/admin/post-types/class-sp-admin-cpt-team.php +++ b/includes/admin/post-types/class-sp-admin-cpt-team.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Post_Types - * @version 1.9.7 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php index 38142f2d..79a8b690 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 1.7.4 + * @version 1.9.8 */ 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 4cae7bf0..4beb1332 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 1.9.4 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php index f816bfe6..1d9c3be1 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 1.9.4 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/includes/class-sp-league-table.php b/includes/class-sp-league-table.php index 53a23419..a93f61e9 100644 --- a/includes/class-sp-league-table.php +++ b/includes/class-sp-league-table.php @@ -5,7 +5,7 @@ * The SportsPress league table class handles individual league table data. * * @class SP_League_Table - * @version 1.9.6 + * @version 1.9.8 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/includes/sp-template-functions.php b/includes/sp-template-functions.php index 68638bdb..62d825a3 100644 --- a/includes/sp-template-functions.php +++ b/includes/sp-template-functions.php @@ -7,7 +7,7 @@ * @author ThemeBoy * @category Core * @package SportsPress/Functions - * @version 1.9 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/readme.txt b/readme.txt index 7b0350d4..17cf32b7 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtu Donate link: http://tboy.co/donate Requires at least: 3.8 Tested up to: 4.3 -Stable tag: 1.9.7 +Stable tag: 1.9.8 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -237,6 +237,11 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 1.9.8 = +* Feature - Option to add custom table headings to calendars, league tables, and player lists. +* Tweak - Revert automatically hiding featured images when viewing teams, players, and staff. +* Fix - Team site URL escaping links in admin. + = 1.9.7 = * Fix - Escape text inputs in admin. * Localization - Update German translation. diff --git a/sportspress.php b/sportspress.php index a5d8830d..889da3b3 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: 1.9.7 + * Version: 1.9.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 1.9.7 + * @version 1.9.8 */ final class SportsPress { /** * @var string */ - public $version = '1.9.7'; + public $version = '1.9.8'; /** * @var SportsPress The single instance of the class diff --git a/templates/event-blocks.php b/templates/event-blocks.php index a1bbbeae..a6b9e5e1 100644 --- a/templates/event-blocks.php +++ b/templates/event-blocks.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 1.9 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/event-list.php b/templates/event-list.php index c7ca36a4..ea683f68 100644 --- a/templates/event-list.php +++ b/templates/event-list.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 1.9 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly diff --git a/templates/player-list.php b/templates/player-list.php index 8bcccefa..4ddf5baf 100644 --- a/templates/player-list.php +++ b/templates/player-list.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 1.9 + * @version 1.9.8 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly