Tag version 1.8.6
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
* @author ThemeBoy
|
||||
* @category Admin
|
||||
* @package SportsPress/Admin
|
||||
* @version 1.8.3
|
||||
* @version 1.8.6
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
@@ -124,34 +124,6 @@ class SP_Settings_Modules extends SP_Settings_Page {
|
||||
</table>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ( ! class_exists( 'SportsPress_Birthdays' ) ) { ?>
|
||||
<table class="widefat" cellspacing="0">
|
||||
<thead>
|
||||
<tr><th>
|
||||
<strong><?php _e( 'Birthdays Module', 'sportspress' ); ?></strong>
|
||||
</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>
|
||||
<ol><li><?php echo str_replace(
|
||||
array( '[stars]', '[link]', '[/link]' ),
|
||||
array( '<a target="_blank" href="http://tboy.co/review">★★★★★</a>', '<a target="_blank" href="http://tboy.co/review">', '</a>' ),
|
||||
__( 'Add your [stars] on [link]wordpress.org[/link] and get the Birthdays module for free.','sportspress' )
|
||||
); ?></li>
|
||||
<li><?php echo str_replace(
|
||||
array( '[link]', '[/link]' ),
|
||||
array( '<a target="_blank" href="http://tboy.co/birthdaysmodule">', '</a>' ),
|
||||
__( '[link]Get the download link[/link].', 'sportspress' )
|
||||
); ?></li></ol>
|
||||
<p class="sp-module-actions">
|
||||
<span><?php _e( 'Free with review', 'sportspress' ); ?></span>
|
||||
<a class="button" href="http://tboy.co/review" target="_blank"><?php _e( 'Post Review', 'sportspress' ); ?></a>
|
||||
</p>
|
||||
</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ( current_user_can( 'install_themes' ) ) { ?>
|
||||
<?php $theme = wp_get_theme(); ?>
|
||||
<?php if ( 'rookie' == $theme->stylesheet ) { ?>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* The SportsPress modules class stores available modules.
|
||||
*
|
||||
* @class SP_Modules
|
||||
* @version 1.8.3
|
||||
* @version 1.8.6
|
||||
* @package SportsPress/Classes
|
||||
* @category Class
|
||||
* @author ThemeBoy
|
||||
@@ -60,14 +60,8 @@ class SP_Modules {
|
||||
'birthdays' => array(
|
||||
'label' => __( 'Birthdays', 'sportspress' ),
|
||||
'class' => 'SportsPress_Birthdays',
|
||||
'action' => __( 'Review on WP.org', 'sportspress' ),
|
||||
'link' => 'http://tboy.co/review',
|
||||
'tip' => str_replace(
|
||||
array( '[stars]', '[link]', '[/link]' ),
|
||||
array( '★★★★★', '', '' ),
|
||||
__( 'Add your [stars] on [link]wordpress.org[/link] and get the Birthdays module for free.','sportspress' )
|
||||
),
|
||||
'icon' => 'sp-icon-cake',
|
||||
'link' => 'http://tboy.co/features',
|
||||
'desc' => __( "Display each player's birthday and their current age.", 'sportspress' ),
|
||||
),
|
||||
'staff_directories' => array(
|
||||
|
||||
Binary file not shown.
@@ -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.2.2
|
||||
Stable tag: 1.8.5
|
||||
Stable tag: 1.8.6
|
||||
License: GPLv3
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
@@ -225,6 +225,11 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.8.6 =
|
||||
* Tweak - Update modules page to reflect a change in offered features.
|
||||
* Fix - Team dropdowns disappearing when none found in the competition and season assigned to an event.
|
||||
* Localization - Update Russian translations.
|
||||
|
||||
= 1.8.5 =
|
||||
* Fix - Error merging option arrays.
|
||||
* Localization - Add m4rsal to translation team.
|
||||
|
||||
@@ -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.8.5
|
||||
* Version: 1.8.6
|
||||
* 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.8.5
|
||||
* @version 1.8.6
|
||||
*/
|
||||
final class SportsPress {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $version = '1.8.5';
|
||||
public $version = '1.8.6';
|
||||
|
||||
/**
|
||||
* @var SportsPress The single instance of the class
|
||||
|
||||
Reference in New Issue
Block a user