Slider by WD – Responsive Slider - Version 1.1.54

Version Description

  • Fixed: Layer RotatInDownRight effect saving.
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Slider by WD – Responsive Slider
Version 1.1.54
Comparing to
See all releases

Code changes from version 1.1.53 to 1.1.54

Files changed (4) hide show
  1. readme.txt +5 -2
  2. slider-wd.php +2 -2
  3. sliders-insert.php +2 -2
  4. sliders-update.php +4 -0
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-slider-plugin.html
4
  Tags: image slider, slider, slideshow, image, images, responsive, shortcode, widget, jquery, gallery, swipe, layer
5
  Requires at least: 3.4
6
  Tested up to: 4.6
7
- Stable tag: 1.1.53
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -122,8 +122,11 @@ After downloading the ZIP file of the slider plugin,
122
 
123
  == Changelog ==
124
 
 
 
 
125
  = 1.1.53 =
126
- Fixed: Slider add new button under the message.
127
 
128
  = 1.1.52 =
129
  * Added: Option to hide slider on mobile.
4
  Tags: image slider, slider, slideshow, image, images, responsive, shortcode, widget, jquery, gallery, swipe, layer
5
  Requires at least: 3.4
6
  Tested up to: 4.6
7
+ Stable tag: 1.1.54
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
122
 
123
  == Changelog ==
124
 
125
+ = 1.1.54 =
126
+ * Fixed: Layer RotatInDownRight effect saving.
127
+
128
  = 1.1.53 =
129
+ * Fixed: Slider add new button under the message.
130
 
131
  = 1.1.52 =
132
  * Added: Option to hide slider on mobile.
slider-wd.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Slider WD
5
  * Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
6
  * Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
7
- * Version: 1.1.53
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -14,7 +14,7 @@ define('WD_S_NAME', plugin_basename(dirname(__FILE__)));
14
  define('WD_S_DIR', WP_PLUGIN_DIR . "/" . WD_S_NAME);
15
  define('WD_S_URL', plugins_url(WD_S_NAME));
16
 
17
- define('WD_S_VERSION', '1.1.53');
18
 
19
  function wds_use_home_url() {
20
  $home_url = str_replace("http://", "", home_url());
4
  * Plugin Name: Slider WD
5
  * Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
6
  * Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
7
+ * Version: 1.1.54
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
14
  define('WD_S_DIR', WP_PLUGIN_DIR . "/" . WD_S_NAME);
15
  define('WD_S_URL', plugins_url(WD_S_NAME));
16
 
17
+ define('WD_S_VERSION', '1.1.54');
18
 
19
  function wds_use_home_url() {
20
  $home_url = str_replace("http://", "", home_url());
sliders-insert.php CHANGED
@@ -168,9 +168,9 @@ function wds_insert() {
168
  `imgtransparent` int(4) NOT NULL,
169
  `social_button` varchar(16) NOT NULL,
170
  `hover_color` varchar(8) NOT NULL,
171
- `layer_effect_in` varchar(16) NOT NULL,
172
  `duration_eff_in` bigint(20) NOT NULL,
173
- `layer_effect_out` varchar(16) NOT NULL,
174
  `duration_eff_out` bigint(20) NOT NULL,
175
  `target_attr_layer` tinyint(1) NOT NULL,
176
  `hotp_width` int(4) NOT NULL,
168
  `imgtransparent` int(4) NOT NULL,
169
  `social_button` varchar(16) NOT NULL,
170
  `hover_color` varchar(8) NOT NULL,
171
+ `layer_effect_in` varchar(32) NOT NULL,
172
  `duration_eff_in` bigint(20) NOT NULL,
173
+ `layer_effect_out` varchar(32) NOT NULL,
174
  `duration_eff_out` bigint(20) NOT NULL,
175
  `target_attr_layer` tinyint(1) NOT NULL,
176
  `hotp_width` int(4) NOT NULL,
sliders-update.php CHANGED
@@ -146,6 +146,10 @@ function wds_update($version) {
146
  if (version_compare($version, '1.1.52') == -1) {
147
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . "wdsslider ADD `hide_on_mobile` int(4) NOT NULL DEFAULT 0");
148
  }
 
 
 
 
149
  return;
150
  }
151
 
146
  if (version_compare($version, '1.1.52') == -1) {
147
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . "wdsslider ADD `hide_on_mobile` int(4) NOT NULL DEFAULT 0");
148
  }
149
+ if (version_compare($version, '1.1.54') == -1) {
150
+ $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "wdslayer` CHANGE `layer_effect_in` `layer_effect_in` varchar(32)");
151
+ $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "wdslayer` CHANGE `layer_effect_out` `layer_effect_out` varchar(32)");
152
+ }
153
  return;
154
  }
155