Tag version 1.8.6

This commit is contained in:
Brian Miyaji
2015-05-30 01:28:39 +10:00
parent 7aced9b1af
commit e0556974f1
5 changed files with 12 additions and 41 deletions

View File

@@ -5,7 +5,7 @@
* @author ThemeBoy * @author ThemeBoy
* @category Admin * @category Admin
* @package SportsPress/Admin * @package SportsPress/Admin
* @version 1.8.3 * @version 1.8.6
*/ */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -124,34 +124,6 @@ class SP_Settings_Modules extends SP_Settings_Page {
</table> </table>
<?php } ?> <?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">&#9733;&#9733;&#9733;&#9733;&#9733;</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 if ( current_user_can( 'install_themes' ) ) { ?>
<?php $theme = wp_get_theme(); ?> <?php $theme = wp_get_theme(); ?>
<?php if ( 'rookie' == $theme->stylesheet ) { ?> <?php if ( 'rookie' == $theme->stylesheet ) { ?>

View File

@@ -5,7 +5,7 @@
* The SportsPress modules class stores available modules. * The SportsPress modules class stores available modules.
* *
* @class SP_Modules * @class SP_Modules
* @version 1.8.3 * @version 1.8.6
* @package SportsPress/Classes * @package SportsPress/Classes
* @category Class * @category Class
* @author ThemeBoy * @author ThemeBoy
@@ -60,14 +60,8 @@ class SP_Modules {
'birthdays' => array( 'birthdays' => array(
'label' => __( 'Birthdays', 'sportspress' ), 'label' => __( 'Birthdays', 'sportspress' ),
'class' => 'SportsPress_Birthdays', 'class' => 'SportsPress_Birthdays',
'action' => __( 'Review on WP.org', 'sportspress' ),
'link' => 'http://tboy.co/review',
'tip' => str_replace(
array( '[stars]', '[link]', '[/link]' ),
array( '&#9733;&#9733;&#9733;&#9733;&#9733;', '', '' ),
__( 'Add your [stars] on [link]wordpress.org[/link] and get the Birthdays module for free.','sportspress' )
),
'icon' => 'sp-icon-cake', 'icon' => 'sp-icon-cake',
'link' => 'http://tboy.co/features',
'desc' => __( "Display each player's birthday and their current age.", 'sportspress' ), 'desc' => __( "Display each player's birthday and their current age.", 'sportspress' ),
), ),
'staff_directories' => array( 'staff_directories' => array(

Binary file not shown.

View File

@@ -4,7 +4,7 @@ Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtu
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.2.2 Tested up to: 4.2.2
Stable tag: 1.8.5 Stable tag: 1.8.6
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
@@ -225,6 +225,11 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate
== Changelog == == 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 = = 1.8.5 =
* Fix - Error merging option arrays. * Fix - Error merging option arrays.
* Localization - Add m4rsal to translation team. * Localization - Add m4rsal to translation team.

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: 1.8.5 * Version: 1.8.6
* 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 1.8.5 * @version 1.8.6
*/ */
final class SportsPress { final class SportsPress {
/** /**
* @var string * @var string
*/ */
public $version = '1.8.5'; public $version = '1.8.6';
/** /**
* @var SportsPress The single instance of the class * @var SportsPress The single instance of the class