Version Description
Download this release
Release Info
Developer | n7studios |
Plugin | Slider by Soliloquy – Responsive Image Slider for WordPress |
Version | 2.4.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.4.0.1 to 2.4.0.2
- includes/admin/metaboxes.php +6 -3
- includes/global/shortcode.php +6 -3
- readme.txt +4 -1
- soliloquy-lite.php +2 -2
includes/admin/metaboxes.php
CHANGED
@@ -1164,9 +1164,12 @@ class Soliloquy_Metaboxes_Lite {
|
|
1164 |
|
1165 |
// If there is an error, possibly output error message, otherwise woot!
|
1166 |
if ( is_wp_error( $cropped_image ) ) {
|
1167 |
-
// If
|
1168 |
-
if ( defined( '
|
1169 |
-
echo '<pre>
|
|
|
|
|
|
|
1170 |
}
|
1171 |
}
|
1172 |
}
|
1164 |
|
1165 |
// If there is an error, possibly output error message, otherwise woot!
|
1166 |
if ( is_wp_error( $cropped_image ) ) {
|
1167 |
+
// If WP_DEBUG is enabled, and we're logged in, output an error to the user
|
1168 |
+
if ( defined( 'WP_DEBUG' ) && WP_DEBUG && is_user_logged_in() ) {
|
1169 |
+
echo '<pre>Soliloquy: Error occured resizing image (these messages are only displayed to logged in WordPress users):<br />';
|
1170 |
+
echo 'Error: ' . $cropped_image->get_error_message() . '<br />';
|
1171 |
+
echo 'Image: ' . $image . '<br />';
|
1172 |
+
echo 'Args: ' . var_export( $args, true ) . '</pre>';
|
1173 |
}
|
1174 |
}
|
1175 |
}
|
includes/global/shortcode.php
CHANGED
@@ -566,9 +566,12 @@ class Soliloquy_Shortcode_Lite {
|
|
566 |
|
567 |
// If there is an error, possibly output error message and return the default image src.
|
568 |
if ( is_wp_error( $cropped_image ) ) {
|
569 |
-
// If
|
570 |
-
if ( defined( '
|
571 |
-
echo '<pre>
|
|
|
|
|
|
|
572 |
}
|
573 |
|
574 |
// Return the non-cropped image as a fallback.
|
566 |
|
567 |
// If there is an error, possibly output error message and return the default image src.
|
568 |
if ( is_wp_error( $cropped_image ) ) {
|
569 |
+
// If WP_DEBUG is enabled, and we're logged in, output an error to the user
|
570 |
+
if ( defined( 'WP_DEBUG' ) && WP_DEBUG && is_user_logged_in() ) {
|
571 |
+
echo '<pre>Soliloquy: Error occured resizing image (these messages are only displayed to logged in WordPress users):<br />';
|
572 |
+
echo 'Error: ' . $cropped_image->get_error_message() . '<br />';
|
573 |
+
echo 'Image: ' . $image . '<br />';
|
574 |
+
echo 'Args: ' . var_export( $args, true ) . '</pre>';
|
575 |
}
|
576 |
|
577 |
// Return the non-cropped image as a fallback.
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: griffinjt
|
3 |
Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wp slider, best wordpress slider, best slider, best slider wordpress, best responsive slider, best responsive wordpress slider plugin
|
4 |
Requires at least: 3.5.1
|
5 |
-
Tested up to: 4.3
|
6 |
Stable tag: trunk
|
7 |
License: GNU General Public License v2.0 or later
|
8 |
|
@@ -87,6 +87,9 @@ Soliloquy has many Addons that extend its default functionality to make it do in
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
|
|
|
|
|
|
90 |
= 2.4.0.1 =
|
91 |
* Fix: Localization support with correct domain
|
92 |
|
2 |
Contributors: griffinjt
|
3 |
Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wp slider, best wordpress slider, best slider, best slider wordpress, best responsive slider, best responsive wordpress slider plugin
|
4 |
Requires at least: 3.5.1
|
5 |
+
Tested up to: 4.3.1
|
6 |
Stable tag: trunk
|
7 |
License: GNU General Public License v2.0 or later
|
8 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 2.4.0.2:
|
91 |
+
* Added: Better debugging when WP_DEBUG enabled and images do not crop/resize
|
92 |
+
|
93 |
= 2.4.0.1 =
|
94 |
* Fix: Localization support with correct domain
|
95 |
|
soliloquy-lite.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
|
6 |
* Author: Thomas Griffin
|
7 |
* Author URI: http://thomasgriffinmedia.com
|
8 |
-
* Version: 2.4.0.
|
9 |
* Text Domain: soliloquy
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -54,7 +54,7 @@ class Soliloquy_Lite {
|
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
-
public $version = '2.4.0.
|
58 |
|
59 |
/**
|
60 |
* The name of the plugin.
|
5 |
* Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
|
6 |
* Author: Thomas Griffin
|
7 |
* Author URI: http://thomasgriffinmedia.com
|
8 |
+
* Version: 2.4.0.2
|
9 |
* Text Domain: soliloquy
|
10 |
* Domain Path: languages
|
11 |
*
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
+
public $version = '2.4.0.2';
|
58 |
|
59 |
/**
|
60 |
* The name of the plugin.
|