Easing Slider - Version 2.2.0.1

Version Description

  • Fixed static bindings bug for users using less than PHP 5.3.
Download this release

Release Info

Developer MatthewRuddy
Plugin Icon 128x128 Easing Slider
Version 2.2.0.1
Comparing to
See all releases

Code changes from version 2.2 to 2.2.0.1

easing-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Easing Slider
5
  Plugin URI: http://easingslider.com/
6
- Version: 2.2
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com/
9
  Description: Easing Slider is an easy to use slider plugin for WordPress. Simple, lightweight & designed to get the job done, it allows you to get creating sliders without any difficulty.
@@ -53,7 +53,7 @@ class Easing_Slider {
53
  *
54
  * @var string
55
  */
56
- public static $version = '2.2';
57
 
58
  /**
59
  * Constructor
@@ -135,8 +135,8 @@ class Easing_Slider {
135
  if ( $settings->remove_data ) {
136
 
137
  // Delete all of the sliders
138
- foreach ( static::all() as $slider ) {
139
- static::delete( $slider->ID );
140
  }
141
 
142
  // Delete options
3
  /*
4
  Plugin Name: Easing Slider
5
  Plugin URI: http://easingslider.com/
6
+ Version: 2.2.0.1
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com/
9
  Description: Easing Slider is an easy to use slider plugin for WordPress. Simple, lightweight & designed to get the job done, it allows you to get creating sliders without any difficulty.
53
  *
54
  * @var string
55
  */
56
+ public static $version = '2.2.0.1';
57
 
58
  /**
59
  * Constructor
135
  if ( $settings->remove_data ) {
136
 
137
  // Delete all of the sliders
138
+ foreach ( self::all() as $slider ) {
139
+ self::delete( $slider->ID );
140
  }
141
 
142
  // Delete options
includes/class-es-legacy.php CHANGED
@@ -594,7 +594,7 @@ class ES_Legacy {
594
  $legacy_settings = get_option( "{$plugin_slug}_settings" );
595
 
596
  // Transfer the settings
597
- $settings->load_assets = $legacy_settings['load_scripts'];
598
  $settings->image_resizing = $legacy_settings['resizing'];
599
 
600
  // Save the settings
594
  $legacy_settings = get_option( "{$plugin_slug}_settings" );
595
 
596
  // Transfer the settings
597
+ $settings->load_assets = $legacy_settings['load_scripts'];
598
  $settings->image_resizing = $legacy_settings['resizing'];
599
 
600
  // Save the settings
includes/class-es-slider.php CHANGED
@@ -85,7 +85,7 @@ class ES_Slider {
85
  $sliders = array();
86
 
87
  // Query our sliders
88
- $query = static::query();
89
 
90
  // Loop through each post
91
  if ( $query->have_posts() ) {
85
  $sliders = array();
86
 
87
  // Query our sliders
88
+ $query = self::query();
89
 
90
  // Loop through each post
91
  if ( $query->have_posts() ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: MatthewRuddy
4
  Tags: slideshow, slider, slides, slide, gallery, images, image, responsive, mobile, jquery, javascript, featured, content
5
  Requires at least: 4.0
6
  Tested up to: 4.2
7
- Stable tag: 2.2
8
 
9
  Easing Slider is an easy to use slider plugin. Simple and lightweight, is makes creating beautiful WordPress sliders a breeze.
10
 
@@ -24,7 +24,7 @@ Easing Slider is an extremely easy to use slider plugin for WordPress. It is bui
24
 
25
  <a href="http://easingslider.com/extensions">Easing Slider has many great extensions that can vastly enhance the plugin's functionality. Click here for more.</a>
26
 
27
- Throughly tested on iPhone, iPad and multiple Android devices, Easing Slider is the perfect solution for mobile sliders. We've used CSS3 animation to ensure ultra smooth transitions on supported devices, with graceful fallbacks for older browsers. The scripts and styling are also extremely light (just 16kb), which is perfect for those concerned about page loading times.
28
 
29
  We've also integrated the new WordPress Media Library workflow to provide a better media management experience. Similar to the Media Library, the learning curve and minimal and the admin interface feels instantly recognisable. Bulk uploading images to your slider is now easy, requiring just a few clicks.
30
 
@@ -73,6 +73,9 @@ This is easy. When editing a slider in the "All Sliders" admin area, simply clic
73
 
74
  == Changelog ==
75
 
 
 
 
76
  = 2.2 =
77
  * Users can now have unlimited sliders (no longer limited to one).
78
  * New admin interface makes managing your sliders easier and quicker, and provides users with enhanced media management.
4
  Tags: slideshow, slider, slides, slide, gallery, images, image, responsive, mobile, jquery, javascript, featured, content
5
  Requires at least: 4.0
6
  Tested up to: 4.2
7
+ Stable tag: 2.2.0.1
8
 
9
  Easing Slider is an easy to use slider plugin. Simple and lightweight, is makes creating beautiful WordPress sliders a breeze.
10
 
24
 
25
  <a href="http://easingslider.com/extensions">Easing Slider has many great extensions that can vastly enhance the plugin's functionality. Click here for more.</a>
26
 
27
+ Throughly tested on iPhone, iPad and multiple Android devices, Easing Slider is the perfect solution for mobile sliders. We've used CSS3 animation to ensure ultra smooth transitions on supported devices, with graceful fallbacks for older browsers.
28
 
29
  We've also integrated the new WordPress Media Library workflow to provide a better media management experience. Similar to the Media Library, the learning curve and minimal and the admin interface feels instantly recognisable. Bulk uploading images to your slider is now easy, requiring just a few clicks.
30
 
73
 
74
  == Changelog ==
75
 
76
+ = 2.2.0.1 =
77
+ * Fixed static bindings bug for users using less than PHP 5.3.
78
+
79
  = 2.2 =
80
  * Users can now have unlimited sliders (no longer limited to one).
81
  * New admin interface makes managing your sliders easier and quicker, and provides users with enhanced media management.