Version Description
Upgrade Notice
Download this release
Release Info
Developer | raptor235 |
Plugin | Sidekick |
Version | 1.6.15 |
Comparing to | |
See all releases |
Code changes from version 1.6.4 to 1.6.15
- libs/sk_config_data.php +1 -1
- readme.txt +12 -2
- sidekick.php +10 -10
libs/sk_config_data.php
CHANGED
@@ -30,7 +30,7 @@ class sk_config_data{
|
|
30 |
|
31 |
function get_post_types_and_statuses(){
|
32 |
global $wpdb;
|
33 |
-
$query = "SELECT post_type, post_status, count(distinct ID) as count from
|
34 |
$counts = $wpdb->get_results($query);
|
35 |
$output = '';
|
36 |
|
30 |
|
31 |
function get_post_types_and_statuses(){
|
32 |
global $wpdb;
|
33 |
+
$query = "SELECT post_type, post_status, count(distinct ID) as count from {$wpdb->prefix}posts group by post_type, post_status";
|
34 |
$counts = $wpdb->get_results($query);
|
35 |
$output = '';
|
36 |
|
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.0
|
7 |
-
Stable tag: 1.6.
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -52,7 +52,7 @@ With the user’s permission, Sidekick will collect anonymous data to track walk
|
|
52 |
|
53 |
1. In /wp-admin/, go to Plugins > Add New.
|
54 |
2. Search for "Sidekick".
|
55 |
-
3. Look for "Sidekick” (should be the only result).
|
56 |
4. Click Install Now.
|
57 |
5. After installation has completed, click Activate Plugin.
|
58 |
|
@@ -130,6 +130,16 @@ Absolutely. In fact, we rely on users like you to tell us about things that nee
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
= 1.6.4 =
|
134 |
* Fixed Composer Preview Bug
|
135 |
* Prefixed All Class Names
|
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.0
|
7 |
+
Stable tag: 1.6.15
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
52 |
|
53 |
1. In /wp-admin/, go to Plugins > Add New.
|
54 |
2. Search for "Sidekick".
|
55 |
+
3. Look for "Sidekick” (should be the only result) .
|
56 |
4. Click Install Now.
|
57 |
5. After installation has completed, click Activate Plugin.
|
58 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.6.16 =
|
134 |
+
* Fixes hotspots not showing up in certain cases
|
135 |
+
* Fixes harcoded issue with db table prefix
|
136 |
+
* Style fixes on audio only mode
|
137 |
+
* Fixes issue with returning back to regular playback mode from audio only mode
|
138 |
+
* Fixes issue with audio player being muted in certain situations
|
139 |
+
|
140 |
+
= 1.6.5 =
|
141 |
+
* Fixed issue with Hotspot playback
|
142 |
+
|
143 |
= 1.6.4 =
|
144 |
* Fixed Composer Preview Bug
|
145 |
* Prefixed All Class Names
|
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: 3.8
|
8 |
Tested up to: 4.0
|
9 |
-
Version: 1.6.
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
@@ -15,7 +15,7 @@ define('SK_LIBRARY_VERSION',6);
|
|
15 |
define('DEFAULT_ACTIVATION_ID','xxxxxxxx-xxxx-xxxx-xxxx-xxxxfree');
|
16 |
define('SK_PATH','sidekick/latest/wordpress');
|
17 |
define('COMPOSER_PATH','cdn/composer');
|
18 |
-
define('SK_USE_CDN',true);
|
19 |
|
20 |
if ( ! defined( 'SK_SL_PLUGIN_DIR' ) ) define( 'SK_SL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
21 |
if ( ! defined( 'SK_SL_PLUGIN_URL' ) ) define( 'SK_SL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
@@ -30,20 +30,20 @@ class Sidekick{
|
|
30 |
global $SK_FREE_LIBRARY_FILE, $SK_PAID_LIBRARY_FILE, $SK_GLOBAL_VERSION;
|
31 |
|
32 |
if ($this->is_https()) {
|
33 |
-
define('SK_TRACKING_API','https://api.sidekick.pro/');
|
34 |
-
define('SK_COMPOSER_API','https://library.sidekick.pro/api');
|
35 |
if (defined('SK_USE_CDN') && SK_USE_CDN) {
|
36 |
-
define('SK_DOMAIN','https://pullvod-flowpress.netdna-ssl.com/');
|
37 |
} else {
|
38 |
-
define('SK_DOMAIN','https://library.sidekick.pro/');
|
39 |
}
|
40 |
} else {
|
41 |
-
define('SK_TRACKING_API','http://api.sidekick.pro/');
|
42 |
-
define('SK_COMPOSER_API','http://library.sidekick.pro/api');
|
43 |
if (defined('SK_USE_CDN') && SK_USE_CDN) {
|
44 |
-
define('SK_DOMAIN','http://pullvod.flowpress.netdna-cdn.com/');
|
45 |
} else {
|
46 |
-
define('SK_DOMAIN','http://library.sidekick.pro/');
|
47 |
}
|
48 |
}
|
49 |
|
6 |
Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
|
7 |
Requires at least: 3.8
|
8 |
Tested up to: 4.0
|
9 |
+
Version: 1.6.15
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
15 |
define('DEFAULT_ACTIVATION_ID','xxxxxxxx-xxxx-xxxx-xxxx-xxxxfree');
|
16 |
define('SK_PATH','sidekick/latest/wordpress');
|
17 |
define('COMPOSER_PATH','cdn/composer');
|
18 |
+
if (!defined('SK_USE_CDN')) define('SK_USE_CDN',true);
|
19 |
|
20 |
if ( ! defined( 'SK_SL_PLUGIN_DIR' ) ) define( 'SK_SL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
21 |
if ( ! defined( 'SK_SL_PLUGIN_URL' ) ) define( 'SK_SL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
30 |
global $SK_FREE_LIBRARY_FILE, $SK_PAID_LIBRARY_FILE, $SK_GLOBAL_VERSION;
|
31 |
|
32 |
if ($this->is_https()) {
|
33 |
+
if (!defined('SK_TRACKING_API')) define('SK_TRACKING_API','https://api.sidekick.pro/');
|
34 |
+
if (!defined('SK_COMPOSER_API')) define('SK_COMPOSER_API','https://library.sidekick.pro/api');
|
35 |
if (defined('SK_USE_CDN') && SK_USE_CDN) {
|
36 |
+
if (!defined('SK_DOMAIN')) define('SK_DOMAIN','https://pullvod-flowpress.netdna-ssl.com/');
|
37 |
} else {
|
38 |
+
if (!defined('SK_DOMAIN')) define('SK_DOMAIN','https://library.sidekick.pro/');
|
39 |
}
|
40 |
} else {
|
41 |
+
if (!defined('SK_TRACKING_API')) define('SK_TRACKING_API','http://api.sidekick.pro/');
|
42 |
+
if (!defined('SK_COMPOSER_API')) define('SK_COMPOSER_API','http://library.sidekick.pro/api');
|
43 |
if (defined('SK_USE_CDN') && SK_USE_CDN) {
|
44 |
+
if (!defined('SK_DOMAIN')) define('SK_DOMAIN','http://pullvod.flowpress.netdna-cdn.com/');
|
45 |
} else {
|
46 |
+
if (!defined('SK_DOMAIN')) define('SK_DOMAIN','http://library.sidekick.pro/');
|
47 |
}
|
48 |
}
|
49 |
|