Sidekick - Version 1.3.7

Version Description

  • Switch over to new platform version
Download this release

Release Info

Developer raptor235
Plugin Icon 128x128 Sidekick
Version 1.3.7
Comparing to
See all releases

Code changes from version 1.3.6 to 1.3.7

Files changed (3) hide show
  1. js/sk.source.js +1 -1
  2. readme.txt +3 -0
  3. sidekick.php +8 -4
js/sk.source.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! sidekick - v1.3.6 - 2014-07-21 */(function(jQuery, window){
2
 
3
  jQuery.fn.center = function () {
4
  this.css("position","absolute");
1
+ /*! sidekick - v1.3.7 - 2014-07-21 */(function(jQuery, window){
2
 
3
  jQuery.fn.center = function () {
4
  this.css("position","absolute");
readme.txt CHANGED
@@ -130,6 +130,9 @@ Absolutely. In fact, we rely on users like you to tell us about things that nee
130
 
131
  == Changelog ==
132
 
 
 
 
133
  = 1.3.6 =
134
  * Sidekick Activation Bug Fixed
135
 
130
 
131
  == Changelog ==
132
 
133
+ = 1.3.7 =
134
+ * Switch over to new platform version
135
+
136
  = 1.3.6 =
137
  * Sidekick Activation Bug Fixed
138
 
sidekick.php CHANGED
@@ -6,14 +6,14 @@ Plugin URL: http://wordpress.org/plugins/sidekick/
6
  Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
7
  Requires at least: 3.7
8
  Tested up to: 3.9.1
9
- Version: 1.3.6
10
  Author: Sidekick.pro
11
  Author URI: http://www.sidekick.pro
12
  */
13
 
14
- define('SK_PLUGIN_VERSION','1.3.5');
15
  define('SK_LIBRARY_VERSION',5);
16
- define('SK_PLATFORM_VERSION',7);
17
  define('DEFAULT_ACTIVATION_ID','xxxxxxxx-xxxx-xxxx-xxxx-xxxxfree');
18
 
19
  if ( ! defined( 'SK_SL_PLUGIN_DIR' ) ) define( 'SK_SL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
@@ -380,7 +380,11 @@ class Sidekick{
380
  use_native_controls: false
381
  // open_bucket: 476
382
  }
383
- <?php if ($activation_id = get_option( "sk_activation_id" )){ ?>sk_config.activation_id = '<?php echo $activation_id ?>';<?php } ?>
 
 
 
 
384
  <?php if (get_option( "sk_composer_button" )){ ?>sk_config.sk_composer_button = '<?php echo true ?>';<?php } ?>
385
  <?php if ($sk_just_activated): ?>sk_config.just_activated = true;sk_config.show_login = true;<?php endif; ?>
386
 
6
  Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
7
  Requires at least: 3.7
8
  Tested up to: 3.9.1
9
+ Version: 1.3.7
10
  Author: Sidekick.pro
11
  Author URI: http://www.sidekick.pro
12
  */
13
 
14
+ define('SK_PLUGIN_VERSION','1.3.7');
15
  define('SK_LIBRARY_VERSION',5);
16
+ define('SK_PLATFORM_VERSION',9);
17
  define('DEFAULT_ACTIVATION_ID','xxxxxxxx-xxxx-xxxx-xxxx-xxxxfree');
18
 
19
  if ( ! defined( 'SK_SL_PLUGIN_DIR' ) ) define( 'SK_SL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
380
  use_native_controls: false
381
  // open_bucket: 476
382
  }
383
+ <?php if ($activation_id = get_option( "sk_activation_id" )){ ?>
384
+ sk_config.activation_id = '<?php echo $activation_id ?>';
385
+ <?php } else { ?>
386
+ sk_config.activation_id = '<?php echo DEFAULT_ACTIVATION_ID ?>';
387
+ <?php } ?>
388
  <?php if (get_option( "sk_composer_button" )){ ?>sk_config.sk_composer_button = '<?php echo true ?>';<?php } ?>
389
  <?php if ($sk_just_activated): ?>sk_config.just_activated = true;sk_config.show_login = true;<?php endif; ?>
390