Slideshow - Version 1.3.4

Version Description

  • Fixed: Custom width of the slideshow will no longer cause buttons to fall off-screeen.
Download this release

Release Info

Developer stefanboonstra
Plugin Icon 128x128 Slideshow
Version 1.3.4
Comparing to
See all releases

Code changes from version 1.3.3 to 1.3.4

Files changed (3) hide show
  1. js/Slideshow/slideshow.js +6 -2
  2. readme.txt +4 -1
  3. slideshow.php +7 -4
js/Slideshow/slideshow.js CHANGED
@@ -3,7 +3,7 @@
3
  * and controlling the slideshow.
4
  *
5
  * @author Stefan Boonstra
6
- * @version 25-05-12
7
  */
8
  var Slideshow = {
9
 
@@ -42,10 +42,14 @@ var Slideshow = {
42
  slideShow.getSettings();
43
 
44
  // Set height and width
45
- jQuery(slideShow.slideshowContainer + ' ' + slideShow.sliderBox).css({
46
  'height': slideShow.height,
47
  'width': slideShow.width
48
  });
 
 
 
 
49
 
50
  // Empty slideshow
51
  jQuery(slideShow.sliderBox).empty();
3
  * and controlling the slideshow.
4
  *
5
  * @author Stefan Boonstra
6
+ * @version 29-06-12
7
  */
8
  var Slideshow = {
9
 
42
  slideShow.getSettings();
43
 
44
  // Set height and width
45
+ jQuery(slideShow.slideshowContainer).css({
46
  'height': slideShow.height,
47
  'width': slideShow.width
48
  });
49
+ jQuery(slideShow.sliderBox).css({
50
+ 'height': slideShow.height,
51
+ 'width': slideShow.width
52
+ });
53
 
54
  // Empty slideshow
55
  jQuery(slideShow.sliderBox).empty();
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: stefanboonstra
4
  Tags: slideshow, slider, slide, images, image, photo, gallery, galleries
5
  Requires at least: 3.0
6
  Tested up to: 3.4
7
- Stable tag: 1.3.3
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -61,6 +61,9 @@ You can also use the widget to show any of your slideshows in your sidebar.
61
 
62
  == Changelog ==
63
 
 
 
 
64
  = 1.3.3 =
65
  * Extended compatibility to servers that do not support short php opening tags.
66
 
4
  Tags: slideshow, slider, slide, images, image, photo, gallery, galleries
5
  Requires at least: 3.0
6
  Tested up to: 3.4
7
+ Stable tag: 1.3.4
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
61
 
62
  == Changelog ==
63
 
64
+ = 1.3.4 =
65
+ * Fixed: Custom width of the slideshow will no longer cause buttons to fall off-screeen.
66
+
67
  = 1.3.3 =
68
  * Extended compatibility to servers that do not support short php opening tags.
69
 
slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slideshow
4
  Plugin URI: http://stefanboonstra.com
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Images can be assigned through the media page. Options are customizable for every single slideshow on your website.
6
- Version: 1.3.3
7
  Requires at least: 3.0
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
@@ -16,7 +16,7 @@
16
  * base path/url returning method.
17
  *
18
  * @author Stefan Boonstra
19
- * @version 23-06-12
20
  */
21
  class SlideshowMain {
22
  // == 1.4.0 ==
@@ -25,11 +25,14 @@ class SlideshowMain {
25
  // TODO Add 'switch off endless loop' button
26
  // TODO Add functionality to put slides in a different order
27
  // TODO Add textual slides
28
- // TODO Keep descriptionbox from becoming too damn big.
29
  // TODO Fix css so that the theme's css doesn't screw it up
30
 
 
 
 
31
  /** Variables */
32
- static $version = '1.3.3';
33
 
34
  /**
35
  * Bootstraps the application by assigning the right functions to
3
  Plugin Name: Slideshow
4
  Plugin URI: http://stefanboonstra.com
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Images can be assigned through the media page. Options are customizable for every single slideshow on your website.
6
+ Version: 1.3.4
7
  Requires at least: 3.0
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
16
  * base path/url returning method.
17
  *
18
  * @author Stefan Boonstra
19
+ * @version 29-06-12
20
  */
21
  class SlideshowMain {
22
  // == 1.4.0 ==
25
  // TODO Add 'switch off endless loop' button
26
  // TODO Add functionality to put slides in a different order
27
  // TODO Add textual slides
28
+ // TODO Keep descriptionbox from becoming too dang big.
29
  // TODO Fix css so that the theme's css doesn't screw it up
30
 
31
+ // == 2.0.0 ==
32
+ // TODO Revision of the entire script, giving the user the option to align multiple images next to eachother.
33
+
34
  /** Variables */
35
+ static $version = '1.3.4';
36
 
37
  /**
38
  * Bootstraps the application by assigning the right functions to