Skip to content

Commit

Permalink
Tag version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmiyaji committed Jul 17, 2014
1 parent 914808f commit 28cbca8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
15 changes: 11 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: sport, sports, clubs, teams, statistics, stats, fixtures, results, standin
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]&item_name=Donation+for+SportsPress
Requires at least: 3.8
Tested up to: 3.9.1
Stable tag: 1.1.8
Stable tag: 1.2
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand All @@ -30,12 +30,13 @@ SportsPress is the ultimate all-in-one plugin for transforming your WordPress bl
* Sport Presets
* Team & Individual mode
* Import Events, Teams, Players, and Staff from CSV Files
* Easy Shortcodes Menu in Editor

More details about each feature are available on the [ThemeBoy Website](http://themeboy.com/sportspress/).
More details about each feature are available on the [SportsPress Website](http://sportspresspro.com/).

= Premium Extensions =

Looking for more advanced sports functionality? ThemeBoy offers a range of [SportsPress extensions](http://themeboy.com/sportspress/extensions/) to add more features to your club website.
Looking for more advanced sports functionality? Upgrade to [SportsPress Pro](http://sportspresspro.com/pricing/) to get access to more advanced features to your club website.

= Available Languages =
* English – English ( en_US )
Expand Down Expand Up @@ -75,7 +76,7 @@ Translators can contribute new languages to SportsPress through [Transifex](http
= Stay Current =
To keep up with the latest updates and new features, be sure to do the following:

* Visit the [ThemeBoy homepage](http://themeboy.com/).
* Visit the [SportsPress Pro homepage](http://sportspresspro.com/).
* Subscribe to our [YouTube channel](https://www.youtube.com/user/themeboyteam).
* Follow ThemeBoy on [Facebook](https://facebook.com/themeboy) & [Twitter](http://twitter.com/themeboy).

Expand Down Expand Up @@ -139,6 +140,12 @@ Yes, CSV importers are included with the plugin. Go to Tools > Import and choose

== Changelog ==

= 1.2 =
* Feature - Shortcode dropdown menu added to page and post editor.
* Feature - New shortcodes added to individual player profiles.
* Tweak - Add timezone setting in place of base country.
* Localization - Update translations.

= 1.1.8 =
* Tweak - Order player list positions by slug.
* Tweak - Wrap templates with div for frontend styling.
Expand Down
8 changes: 4 additions & 4 deletions sportspress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0
* Version: 1.2
* Author: ThemeBoy
* Author URI: http://themeboy.com/
* Requires at least: 3.8
Expand All @@ -26,14 +26,14 @@
* Main SportsPress Class
*
* @class SportsPress
* @version 1.2.0
* @version 1.2
*/
final class SportsPress {

/**
* @var string
*/
public $version = '1.2.0';
public $version = '1.2';

/**
* @var SporsPress The single instance of the class
Expand Down Expand Up @@ -137,7 +137,7 @@ public function action_links( $links ) {
return array_merge( array(
'<a href="' . admin_url( 'admin.php?page=sportspress' ) . '">' . __( 'Settings', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_themes_url', 'http://themeboy.com/sportspress/themes/' ) . '">' . __( 'Themes', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_extensions_url', 'http://themeboy.com/sportspress/extensions/' ) . '">' . __( 'Extensions', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_pro_url', 'http://sportspresspro.com/pricing/' ) . '">' . __( 'Upgrade', 'sportspress' ) . '</a>',
), $links );
}

Expand Down

0 comments on commit 28cbca8

Please sign in to comment.