Cyclone Slider - Version 2.7.3

Version Description

  • 2013-09-27 =
  • Fix. Fix issue on Default template where caption is not visible on images that are taller than the slider.
  • Change. Returned slider auto height from sentinel to ratio for wider support and backward compatibility.
  • Change. Updated screenshots for wordpress.org.
Download this release

Release Info

Developer kosinix
Plugin Icon 128x128 Cyclone Slider
Version 2.7.3
Comparing to
See all releases

Code changes from version 2.7.2 to 2.7.3

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.codefleet.net/donate/
4
  Tags: slider, slideshow, drag-and-drop, wordpress-slider, wordpress-slideshow, cycle 2, jquery, responsive, translation-ready, custom-post, cyclone-slider
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
- Stable tag: 2.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -99,6 +99,11 @@ Inside your current active theme create a folder named "cycloneslider". Add your
99
 
100
  == Changelog ==
101
 
 
 
 
 
 
102
  = 2.7.2 - 2013-09-27 =
103
  * New! Added ability in Settings page to enable/disable templates.
104
  * Change. Move settings page form to its own view file.
@@ -256,6 +261,11 @@ Inside your current active theme create a folder named "cycloneslider". Add your
256
 
257
  == Upgrade Notice ==
258
 
 
 
 
 
 
259
  = 2.7.2 - 2013-09-27 =
260
  * New! Added ability in Settings page to enable/disable templates.
261
  * Change. Move settings page form to its own view file.
4
  Tags: slider, slideshow, drag-and-drop, wordpress-slider, wordpress-slideshow, cycle 2, jquery, responsive, translation-ready, custom-post, cyclone-slider
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
+ Stable tag: 2.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
99
 
100
  == Changelog ==
101
 
102
+ = 2.7.3 - 2013-09-27 =
103
+ * Fix. Fix issue on Default template where caption is not visible on images that are taller than the slider.
104
+ * Change. Returned slider auto height from sentinel to ratio for wider support and backward compatibility.
105
+ * Change. Updated screenshots for wordpress.org.
106
+
107
  = 2.7.2 - 2013-09-27 =
108
  * New! Added ability in Settings page to enable/disable templates.
109
  * Change. Move settings page form to its own view file.
261
 
262
  == Upgrade Notice ==
263
 
264
+ = 2.7.3 - 2013-09-27 =
265
+ * Fix. Fix issue on Default template where caption is not visible on images that are taller than the slider.
266
+ * Change. Returned slider auto height from sentinel to ratio for wider support and backward compatibility.
267
+ * Change. Updated screenshots for wordpress.org.
268
+
269
  = 2.7.2 - 2013-09-27 =
270
  * New! Added ability in Settings page to enable/disable templates.
271
  * Change. Move settings page form to its own view file.
classes/class-cyclone-slider.php CHANGED
@@ -176,14 +176,10 @@ if(!class_exists('Cyclone_Slider')):
176
 
177
  // Hardcoded for now
178
  $slider_settings['hide_non_active'] = "true";
179
- $slider_settings['auto_height'] = 0; // Use sentinel mode as it is the most ideal
180
  if( ($youtube_count+$vimeo_count) > 0 ){
181
- $slider_settings['auto_height'] = "{$slider_settings['width']}:{$slider_settings['height']}"; // If youtube slide detected, use ratio mode
182
  $slider_settings['hide_non_active'] = "false"; // Do not hide non active slides to prevent reloading of videos
183
  }
184
- if( 'portrait' == $slider_settings['resize_option'] and $slider_settings['resize'] ){
185
- //$slider_settings['auto_height'] = "{$slider_settings['width']}:{$slider_settings['height']}"; // If youtube slide detected, use ratio mode
186
- }
187
  $slider_settings['auto_height_speed'] = 250; // Will be editable in admin in the future
188
  $slider_settings['auto_height_easing'] = "null"; // Will be editable in admin in the future
189
 
176
 
177
  // Hardcoded for now
178
  $slider_settings['hide_non_active'] = "true";
179
+ $slider_settings['auto_height'] = "{$slider_settings['width']}:{$slider_settings['height']}"; // Use ratio for backward compat
180
  if( ($youtube_count+$vimeo_count) > 0 ){
 
181
  $slider_settings['hide_non_active'] = "false"; // Do not hide non active slides to prevent reloading of videos
182
  }
 
 
 
183
  $slider_settings['auto_height_speed'] = 250; // Will be editable in admin in the future
184
  $slider_settings['auto_height_easing'] = "null"; // Will be editable in admin in the future
185
 
cyclone-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-pro/
5
  Description: Create and manage sliders with ease. Built for both casual users and developers.
6
- Version: 2.7.2
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
@@ -25,7 +25,7 @@ License:
25
 
26
  */
27
  if(!defined('CYCLONE_VERSION')){
28
- define('CYCLONE_VERSION', '2.7.2' );
29
  }
30
  if(!defined('CYCLONE_PATH')){
31
  define('CYCLONE_PATH', realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR );
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-pro/
5
  Description: Create and manage sliders with ease. Built for both casual users and developers.
6
+ Version: 2.7.3
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
25
 
26
  */
27
  if(!defined('CYCLONE_VERSION')){
28
+ define('CYCLONE_VERSION', '2.7.3' );
29
  }
30
  if(!defined('CYCLONE_PATH')){
31
  define('CYCLONE_PATH', realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR );
screenshot-1.jpg CHANGED
Binary file
screenshot-2.jpg CHANGED
Binary file
screenshot-5.jpg CHANGED
Binary file
templates/default/style.css CHANGED
@@ -9,6 +9,7 @@
9
  .cycloneslider-template-default .cycloneslider-slide{
10
  text-align: center;
11
  width: 100%; /* For slides in scrollHorz to work */
 
12
  display: none; /* Hide slides to prevent FOUC */
13
  }
14
  .cycloneslider-template-default .cycloneslider-slide:first-child, /* Show first slide */
9
  .cycloneslider-template-default .cycloneslider-slide{
10
  text-align: center;
11
  width: 100%; /* For slides in scrollHorz to work */
12
+ height: 100%; /* Backward compat to fix caption issues on tall images */
13
  display: none; /* Hide slides to prevent FOUC */
14
  }
15
  .cycloneslider-template-default .cycloneslider-slide:first-child, /* Show first slide */