Version Description
- Critical bug fix post status transition
Download this release
Release Info
Developer | raptor235 |
Plugin | Sidekick |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3.0 to 2.3.1
- readme.txt +4 -1
- sidekick.php +6 -5
- sidekick_embed.php +6 -5
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.sidekick.pro
|
|
4 |
Tags: help, tutorial, training, learn, learning, sidekick, guide, teach, video, manual, videos, wphelp, support, instructions, question, questions, answers, answer, clippy, q&a, wpuniversity, helper, walkthrough
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -145,6 +145,9 @@ We read and respond to every piece of feedback we get.
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
148 |
= 2.3.0 =
|
149 |
* Revamp of multisite activation screen and optimizations for activations on large networks
|
150 |
* Added config options for disabling the composer, configuration buttons in the taskbar
|
4 |
Tags: help, tutorial, training, learn, learning, sidekick, guide, teach, video, manual, videos, wphelp, support, instructions, question, questions, answers, answer, clippy, q&a, wpuniversity, helper, walkthrough
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 2.3.1
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 2.3.1 =
|
149 |
+
* Critical bug fix post status transition
|
150 |
+
|
151 |
= 2.3.0 =
|
152 |
* Revamp of multisite activation screen and optimizations for activations on large networks
|
153 |
* Added config options for disabling the composer, configuration buttons in the taskbar
|
sidekick.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URL: http://wordpress.org/plugins/sidekick/
|
|
6 |
Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.1.1
|
9 |
-
Version: 2.3.
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
@@ -327,7 +327,7 @@ if (!class_exists('Sidekick')){
|
|
327 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
328 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
329 |
platform_version: null,
|
330 |
-
plugin_version: '2.3.
|
331 |
|
332 |
// SIDEKICK URLS
|
333 |
assets: '<?php echo SK_ASSETS ?>',
|
@@ -426,7 +426,7 @@ if (!class_exists('Sidekick')){
|
|
426 |
function check_ver(){
|
427 |
|
428 |
if (isset($_GET['sk_ver_check'])){
|
429 |
-
$data = json_encode('2.3.
|
430 |
|
431 |
if(array_key_exists('callback', $_GET)){
|
432 |
|
@@ -512,8 +512,9 @@ if (!class_exists('Sidekick')){
|
|
512 |
add_action('customize_controls_print_footer_scripts', array($sidekick,'footer'));
|
513 |
}
|
514 |
|
515 |
-
|
516 |
-
add_action('
|
|
|
517 |
|
518 |
add_action('wp_update_comment_count',array($sidekick,'delete_sk_get_comments'));
|
519 |
|
6 |
Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.1.1
|
9 |
+
Version: 2.3.1
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
327 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
328 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
329 |
platform_version: null,
|
330 |
+
plugin_version: '2.3.1',
|
331 |
|
332 |
// SIDEKICK URLS
|
333 |
assets: '<?php echo SK_ASSETS ?>',
|
426 |
function check_ver(){
|
427 |
|
428 |
if (isset($_GET['sk_ver_check'])){
|
429 |
+
$data = json_encode('2.3.1');
|
430 |
|
431 |
if(array_key_exists('callback', $_GET)){
|
432 |
|
512 |
add_action('customize_controls_print_footer_scripts', array($sidekick,'footer'));
|
513 |
}
|
514 |
|
515 |
+
// Not working right now
|
516 |
+
// add_action('transition_post_status',array($sidekick,'delete_sk_get_post_types_and_statuses'));
|
517 |
+
// add_action('clean_post_cache',array($sidekick,'delete_sk_get_post_types_and_statuses'));
|
518 |
|
519 |
add_action('wp_update_comment_count',array($sidekick,'delete_sk_get_comments'));
|
520 |
|
sidekick_embed.php
CHANGED
@@ -8,7 +8,7 @@ Description: Adds a real-time WordPress training walkthroughs right in your Dash
|
|
8 |
We recommend not activating SIDEKICK automatically for people but via an Opt-In process when they configure your own theme or plugin.
|
9 |
Requires at least: 4.0
|
10 |
Tested up to: 4.1.1
|
11 |
-
Version: 2.3.
|
12 |
Author: Sidekick.pro
|
13 |
Author URI: http://www.sidekick.pro
|
14 |
*/
|
@@ -590,7 +590,7 @@ if (!$sidekick_active && !class_exists('Sidekick')){
|
|
590 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
591 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
592 |
platform_version: null,
|
593 |
-
plugin_version: '2.3.
|
594 |
|
595 |
// SIDEKICK URLS
|
596 |
assets: '<?php echo SK_ASSETS ?>',
|
@@ -689,7 +689,7 @@ if (!$sidekick_active && !class_exists('Sidekick')){
|
|
689 |
function check_ver(){
|
690 |
|
691 |
if (isset($_GET['sk_ver_check'])){
|
692 |
-
$data = json_encode('2.3.
|
693 |
|
694 |
if(array_key_exists('callback', $_GET)){
|
695 |
|
@@ -792,8 +792,9 @@ if (!(isset($_GET['tab']) && $_GET['tab'] == 'plugin-information') && !defined('
|
|
792 |
add_action('customize_controls_print_footer_scripts', array($sidekick,'footer'));
|
793 |
}
|
794 |
|
795 |
-
|
796 |
-
add_action('
|
|
|
797 |
|
798 |
add_action('wp_update_comment_count',array($sidekick,'delete_sk_get_comments'));
|
799 |
|
8 |
We recommend not activating SIDEKICK automatically for people but via an Opt-In process when they configure your own theme or plugin.
|
9 |
Requires at least: 4.0
|
10 |
Tested up to: 4.1.1
|
11 |
+
Version: 2.3.1
|
12 |
Author: Sidekick.pro
|
13 |
Author URI: http://www.sidekick.pro
|
14 |
*/
|
590 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
591 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
592 |
platform_version: null,
|
593 |
+
plugin_version: '2.3.1',
|
594 |
|
595 |
// SIDEKICK URLS
|
596 |
assets: '<?php echo SK_ASSETS ?>',
|
689 |
function check_ver(){
|
690 |
|
691 |
if (isset($_GET['sk_ver_check'])){
|
692 |
+
$data = json_encode('2.3.1');
|
693 |
|
694 |
if(array_key_exists('callback', $_GET)){
|
695 |
|
792 |
add_action('customize_controls_print_footer_scripts', array($sidekick,'footer'));
|
793 |
}
|
794 |
|
795 |
+
// Not working right now
|
796 |
+
// add_action('transition_post_status',array($sidekick,'delete_sk_get_post_types_and_statuses'));
|
797 |
+
// add_action('clean_post_cache',array($sidekick,'delete_sk_get_post_types_and_statuses'));
|
798 |
|
799 |
add_action('wp_update_comment_count',array($sidekick,'delete_sk_get_comments'));
|
800 |
|