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

Version Description

  • Fixed navigation arrow regression (hidden by default and exposed on hover).
  • Fixed keyboard navigation regression (keyboard navigation now on by default).
  • Soliloquy interface now only shown on Soliloquy post type by default.
  • Other bug fixes and improvements.
Download this release

Release Info

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

Code changes from version 2.0.8 to 2.0.9

includes/admin/metaboxes.php CHANGED
@@ -1254,7 +1254,9 @@ class Soliloquy_Metaboxes_Lite {
1254
  */
1255
  public function get_skipped_posttypes() {
1256
 
1257
- return apply_filters( 'soliloquy_skipped_posttypes', array( 'attachment', 'revision', 'nav_menu_item', 'envira' ) );
 
 
1258
 
1259
  }
1260
 
1254
  */
1255
  public function get_skipped_posttypes() {
1256
 
1257
+ $post_types = get_post_types( array( 'public' => true ) );
1258
+ unset( $post_types['soliloquy'] );
1259
+ return apply_filters( 'soliloquy_skipped_posttypes', $post_types );
1260
 
1261
  }
1262
 
includes/global/shortcode.php CHANGED
@@ -363,6 +363,7 @@ class Soliloquy_Shortcode_Lite {
363
  pause: <?php echo $this->get_config( 'duration', $data ); ?>,
364
  auto: 1,
365
  useCSS: 0,
 
366
  adaptiveHeight: 1,
367
  adaptiveHeightSpeed: <?php echo apply_filters( 'soliloquy_adaptive_height_speed', 400, $data ); ?>,
368
  infiniteLoop: 1,
@@ -402,7 +403,7 @@ class Soliloquy_Shortcode_Lite {
402
  });
403
 
404
  // Minify before outputting to improve page load time.
405
- <?php do_action( 'soliloquy_api_end_global', $data ); echo $this->minify( ob_get_clean() ); ?></script>
406
  <?php
407
  }
408
 
363
  pause: <?php echo $this->get_config( 'duration', $data ); ?>,
364
  auto: 1,
365
  useCSS: 0,
366
+ keyboard: true,
367
  adaptiveHeight: 1,
368
  adaptiveHeightSpeed: <?php echo apply_filters( 'soliloquy_adaptive_height_speed', 400, $data ); ?>,
369
  infiniteLoop: 1,
403
  });
404
 
405
  // Minify before outputting to improve page load time.
406
+ <?php do_action( 'soliloquy_api_end_global', $data ); echo $this->minify( ob_get_clean() ); echo '<!--[if IE]><script type="text/javascript">jQuery(document).ready(function($){$(".soliloquy-container").each(function(i, el){$(el).hover(function(){$(this).addClass("soliloquy-hover");},function(){$(this).removeClass("soliloquy-hover");});});});<![endif]-->'; ?></script>
407
  <?php
408
  }
409
 
readme.txt CHANGED
@@ -84,6 +84,12 @@ Soliloquy has many Addons that extend its default functionality to make it do in
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
 
87
  = 2.0.8 =
88
  * Fixed slider shrinking bug (finally!).
89
  * Other UI improvements and adjustments.
84
 
85
  == Changelog ==
86
 
87
+ = 2.0.9 =
88
+ * Fixed navigation arrow regression (hidden by default and exposed on hover).
89
+ * Fixed keyboard navigation regression (keyboard navigation now on by default).
90
+ * Soliloquy interface now only shown on Soliloquy post type by default.
91
+ * Other bug fixes and improvements.
92
+
93
  = 2.0.8 =
94
  * Fixed slider shrinking bug (finally!).
95
  * Other UI improvements and adjustments.
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.0.8
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.0.8';
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.0.9
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
54
  *
55
  * @var string
56
  */
57
+ public $version = '2.0.9';
58
 
59
  /**
60
  * The name of the plugin.
themes/classic/style.css CHANGED
@@ -10,6 +10,16 @@
10
  content: url('images/slider-arrows-horizontal.png') url('images/slider-dots.png');
11
  }
12
 
 
 
 
 
 
 
 
 
 
 
13
  .soliloquy-theme-classic .soliloquy-prev {
14
  display: block;
15
  width: 13px;
10
  content: url('images/slider-arrows-horizontal.png') url('images/slider-dots.png');
11
  }
12
 
13
+ .soliloquy-theme-classic .soliloquy-controls-direction {
14
+ display: none;
15
+ height: 0;
16
+ }
17
+
18
+ .soliloquy-theme-classic:hover .soliloquy-controls-direction,
19
+ .soliloquy-theme-classic.soliloquy-hover .soliloquy-controls-direction {
20
+ display: block;
21
+ }
22
+
23
  .soliloquy-theme-classic .soliloquy-prev {
24
  display: block;
25
  width: 13px;