Slider by Soliloquy – Responsive Image Slider for WordPress - Version 2.4.0.3

Version Description

  • Added: Optimized theme images
Download this release

Release Info

Developer n7studios
Plugin Icon 128x128 Slider by Soliloquy – Responsive Image Slider for WordPress
Version 2.4.0.3
Comparing to
See all releases

Code changes from version 2.4.0.1 to 2.4.0.3

assets/css/images/circle-hover.png CHANGED
Binary file
assets/css/images/circle-hover@2x.png CHANGED
Binary file
assets/css/images/circle.png CHANGED
Binary file
assets/css/images/circle@2x.png CHANGED
Binary file
assets/css/images/delete.png CHANGED
Binary file
assets/css/images/delete@2x.png CHANGED
Binary file
assets/css/images/editor-icon.png CHANGED
Binary file
assets/css/images/editor-icon@2x.png CHANGED
Binary file
assets/css/images/left.png CHANGED
Binary file
assets/css/images/left@2x.png CHANGED
Binary file
assets/css/images/menu-icon.png CHANGED
Binary file
assets/css/images/menu-icon@2x.png CHANGED
Binary file
assets/css/images/meta-active.png CHANGED
Binary file
assets/css/images/meta-active@2x.png CHANGED
Binary file
assets/css/images/meta.png CHANGED
Binary file
assets/css/images/meta@2x.png CHANGED
Binary file
assets/css/images/modify.png CHANGED
Binary file
assets/css/images/modify@2x.png CHANGED
Binary file
assets/css/images/pause.png CHANGED
Binary file
assets/css/images/pause@2x.png CHANGED
Binary file
assets/css/images/play.png CHANGED
Binary file
assets/css/images/play@2x.png CHANGED
Binary file
assets/css/images/right.png CHANGED
Binary file
assets/css/images/right@2x.png CHANGED
Binary file
assets/css/images/video-mini.png CHANGED
Binary file
assets/css/images/video@2x.png CHANGED
Binary file
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 debugging is defined, print out the error.
1168
- if ( defined( 'SOLILOQUY_CROP_DEBUG' ) && SOLILOQUY_CROP_DEBUG ) {
1169
- echo '<pre>' . var_export( $cropped_image->get_error_message(), true ) . '</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 debugging is defined, print out the error.
570
- if ( defined( 'SOLILOQUY_CROP_DEBUG' ) && SOLILOQUY_CROP_DEBUG ) {
571
- echo '<pre>' . var_export( $cropped_image->get_error_message(), true ) . '</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,12 @@ 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.3 =
91
+ * Added: Optimized theme images
92
+
93
+ = 2.4.0.2 =
94
+ * Added: Better debugging when WP_DEBUG enabled and images do not crop/resize
95
+
96
  = 2.4.0.1 =
97
  * Fix: Localization support with correct domain
98
 
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.1
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.1';
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.3
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
54
  *
55
  * @var string
56
  */
57
+ public $version = '2.4.0.3';
58
 
59
  /**
60
  * The name of the plugin.
themes/classic/images/slider-arrows-horizontal.png CHANGED
Binary file
themes/classic/images/slider-arrows-horizontal@2x.png CHANGED
Binary file
themes/classic/images/slider-dots.png CHANGED
Binary file
themes/classic/images/slider-dots@2x.png CHANGED
Binary file