Slideshow - Version 1.1.0

Version Description

  • Added jQuery library as Wordpress websites don't seem to load them by default
  • Slideshow script now depends on by the plugin enqueued jQuery script
Download this release

Release Info

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

Code changes from version 1.0.1 to 1.1.0

Files changed (3) hide show
  1. classes/Slideshow.php +10 -1
  2. readme.txt +5 -1
  3. slideshow.php +1 -1
classes/Slideshow.php CHANGED
@@ -71,11 +71,20 @@ class Slideshow {
71
  </script>
72
  ';
73
 
 
 
 
 
 
 
 
 
 
74
  // Enqueue slideshow script
75
  wp_enqueue_script(
76
  'slideshow_script',
77
  SlideshowMain::getPluginUrl() . self::$scriptfile,
78
- array(),
79
  '',
80
  true
81
  );
71
  </script>
72
  ';
73
 
74
+ // Enqueue jQuery
75
+ wp_enqueue_script(
76
+ 'jQuery',
77
+ SlideshowMain::getPluginUrl() . self::$jQuery,
78
+ array(),
79
+ '',
80
+ true
81
+ );
82
+
83
  // Enqueue slideshow script
84
  wp_enqueue_script(
85
  'slideshow_script',
86
  SlideshowMain::getPluginUrl() . self::$scriptfile,
87
+ array('jQuery'),
88
  '',
89
  true
90
  );
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.2.2
7
- Stable tag: 1.0.1
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -49,6 +49,10 @@ different images and settings for each one of them.
49
 
50
  == Changelog ==
51
 
 
 
 
 
52
  = 1.0.1 =
53
  * Added documentary comments
54
  * Fixed error with directory paths causing Slideshows post type page to generate warnings.
4
  Tags: slideshow, slider, slide, images, image, photo, gallery, galleries
5
  Requires at least: 3.0
6
  Tested up to: 3.2.2
7
+ Stable tag: 1.1.0
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
49
 
50
  == Changelog ==
51
 
52
+ = 1.1.0 =
53
+ * Added jQuery library as Wordpress websites don't seem to load them by default
54
+ * Slideshow script now depends on by the plugin enqueued jQuery script
55
+
56
  = 1.0.1 =
57
  * Added documentary comments
58
  * Fixed error with directory paths causing Slideshows post type page to generate warnings.
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.0.1
7
  Requires at least: 3.0
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
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.1.0
7
  Requires at least: 3.0
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com