diff --git a/readme.txt b/readme.txt
index 4470e86e..9bc9f173 100644
--- a/readme.txt
+++ b/readme.txt
@@ -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&business=support@themeboy.com&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
@@ -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 )
@@ -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).
@@ -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.
diff --git a/sportspress.php b/sportspress.php
index a2307495..d7cd5f2f 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.2.0
+ * Version: 1.2
* 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.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
@@ -137,7 +137,7 @@ final class SportsPress {
return array_merge( array(
'' . __( 'Settings', 'sportspress' ) . '',
'' . __( 'Themes', 'sportspress' ) . '',
- '' . __( 'Extensions', 'sportspress' ) . '',
+ '' . __( 'Upgrade', 'sportspress' ) . '',
), $links );
}