Cyclone Slider - Version 2.1.1

Version Description

  • 2012-11-16
Download this release

Release Info

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

Code changes from version 2.1.0 to 2.1.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.codefleet.net/donate
4
  Tags: slider, slideshow, jquery, cycle 2, responsive, multilingual support, custom post, cyclone slider
5
  Requires at least: 3.3.2
6
  Tested up to: 3.4.2
7
- Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -91,6 +91,9 @@ Inside your theme create a folder named "cycloneslider". Add your templates insi
91
 
92
  == Changelog ==
93
 
 
 
 
94
  = 2.1.0 - 2012-11-16 =
95
  * Fix for slideshow not working when NextGEN 1.9.7 is active
96
  * You can now import images from NextGEN
@@ -103,6 +106,9 @@ Inside your theme create a folder named "cycloneslider". Add your templates insi
103
 
104
  == Upgrade Notice ==
105
 
 
 
 
106
  = 2.1.0 - 2012-11-16 =
107
  * Fix for slideshow not working when NextGEN 1.9.7 is active
108
  * You can now import images from NextGEN
4
  Tags: slider, slideshow, jquery, cycle 2, responsive, multilingual support, custom post, cyclone slider
5
  Requires at least: 3.3.2
6
  Tested up to: 3.4.2
7
+ Stable tag: 2.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
91
 
92
  == Changelog ==
93
 
94
+ = 2.1.1 - 2012-11-16 =
95
+ * Fix for a code typo error
96
+
97
  = 2.1.0 - 2012-11-16 =
98
  * Fix for slideshow not working when NextGEN 1.9.7 is active
99
  * You can now import images from NextGEN
106
 
107
  == Upgrade Notice ==
108
 
109
+ = 2.1.1 - 2012-11-16 =
110
+ * Fix for a code typo error
111
+
112
  = 2.1.0 - 2012-11-16 =
113
  * Fix for slideshow not working when NextGEN 1.9.7 is active
114
  * You can now import images from NextGEN
cyclone-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-2/
5
  Description: Create responsive slideshows with ease. Built for both developers and non-developers.
6
- Version: 2.1.0
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-2/
5
  Description: Create responsive slideshows with ease. Built for both developers and non-developers.
6
+ Version: 2.1.1
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
inc/class-cyclone-slider.php CHANGED
@@ -247,7 +247,7 @@ class Cyclone_Slider {
247
  $image_url = wp_get_attachment_image_src( $attachment_id, 'medium', true );
248
  $image_url = (is_array($image_url)) ? $image_url[0] : '';
249
  $image_url = apply_filters('cycloneslider_preview_url', $image_url, $slider_meta);
250
- $box_title = apply_filters('cycloneslider_box_title', _('Slide', 'cycloneslider'), $slider_meta);
251
 
252
  include($this->template_slide_box);
253
  endforeach;
247
  $image_url = wp_get_attachment_image_src( $attachment_id, 'medium', true );
248
  $image_url = (is_array($image_url)) ? $image_url[0] : '';
249
  $image_url = apply_filters('cycloneslider_preview_url', $image_url, $slider_meta);
250
+ $box_title = apply_filters('cycloneslider_box_title', __('Slide', 'cycloneslider'), $slider_meta);
251
 
252
  include($this->template_slide_box);
253
  endforeach;