Slideshow - Version 2.1.7

Version Description

  • Fixed: Slideshow in some cases unable to show next slide in fade animation.
Download this release

Release Info

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

Code changes from version 2.1.6 to 2.1.7

classes/SlideshowPluginPostType.php CHANGED
@@ -4,7 +4,7 @@
4
  * slideshows and their individual settings
5
  *
6
  * @author: Stefan Boonstra
7
- * @version: 23-09-12
8
  */
9
  class SlideshowPluginPostType {
10
 
4
  * slideshows and their individual settings
5
  *
6
  * @author: Stefan Boonstra
7
+ * @version: 24-09-12
8
  */
9
  class SlideshowPluginPostType {
10
 
classes/SlideshowPluginSlideInserter.php CHANGED
@@ -5,7 +5,7 @@
5
  * TODO This class will probanbly need to be renamed to SlideshowPluginSlideHandler to explain more functionality
6
  * TODO than just inserting slides. (Show and delete functionality should be applied here as well)
7
  * @author Stefan Boonstra
8
- * @version 15-09-2012
9
  */
10
  class SlideshowPluginSlideInserter {
11
 
@@ -169,7 +169,11 @@ class SlideshowPluginSlideInserter {
169
  global $wpdb;
170
 
171
  if(isset($_POST['search']))
172
- $where .= $wpdb->prepare(" AND post_title LIKE '%%%s%%' ", $_POST['search']);
 
 
 
 
173
 
174
  return $where;
175
  }
5
  * TODO This class will probanbly need to be renamed to SlideshowPluginSlideHandler to explain more functionality
6
  * TODO than just inserting slides. (Show and delete functionality should be applied here as well)
7
  * @author Stefan Boonstra
8
+ * @version 24-09-2012
9
  */
10
  class SlideshowPluginSlideInserter {
11
 
169
  global $wpdb;
170
 
171
  if(isset($_POST['search']))
172
+ $where .= $wpdb->prepare(
173
+ " AND (post_title LIKE '%%%s%%' OR ID LIKE '%%%s%%') ",
174
+ $_POST['search'],
175
+ $_POST['search']
176
+ );
177
 
178
  return $where;
179
  }
js/SlideshowPlugin/slideshow.js CHANGED
@@ -1 +1 @@
1
- jQuery.fn.slideshow_script=function(){var $container=jQuery(this),$overflow=$container.find('.slideshow_overflow'),$controlPanel=$container.find('.controlPanel'),$togglePlayButton=$controlPanel.find('.togglePlay'),$nextButton=$container.find('.next'),$previousButton=$container.find('.previous'),$slideshow=$container.find('.slideshow'),$slides=$slideshow.find('.slide');var $settings=jQuery.parseJSON($container.find('.settings').text());jQuery.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});if($container.width()<=0){var parentElement=$container.parent();if(parentElement.width()<=0)$container.css('width',parentElement.closest('div').width());else $container.css('width',parentElement.width())}$overflow.css('width',$container.width());var $numberSlidesVisible=3,$buttonsActive=false,$interval='',$currentSlideId=0,$currentViewId=0,$slideWidth=$container.width()/$settings['slidesPerView'];init();function init(){var slidePosition=0;var totalWidth=1;jQuery.each($slides,function(key,slide){if(slidePosition<=0)jQuery(slide).css({'padding-left':0,'margin-left':0});if(slidePosition>=$settings['slidesPerView']-1)jQuery(slide).css({'padding-right':0,'margin-right':0});var slideWidth=$slideWidth-(jQuery(slide).outerWidth(true)-jQuery(slide).width());jQuery(slide).css({width:slideWidth});totalWidth+=jQuery(slide).outerWidth(true);var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){if($settings['stretchImages']){image.attr({width:jQuery(slide).width(),height:jQuery(slide).height()})}else{image.css('width','auto')}}var description=jQuery(slide).find('.description');if($settings['showDescription']&&description.attr('class')!=undefined){if($settings['hideDescription'])description.css({marginBottom:'-'+description.outerHeight(true)+'px'});else description.css({height:$settings['descriptionHeight']});description.css({display:'block'})}var videoSlideIds=jQuery(slide).find('.videoId').text().split(' ');var videoId=videoSlideIds[0];var elementVideoId=videoSlideIds[1];if(videoId&&elementVideoId){swfobject.embedSWF('http://www.youtube.com/v/'+videoId+'?version=3&enablejsapi=1&playerapiid=player',elementVideoId,jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',wmode:'opaque'},{id:elementVideoId})}slidePosition++;if(slidePosition>=$settings['slidesPerView'])slidePosition=0});$slideshow.css({width:totalWidth,float:'none',position:'absolute',top:0,left:0});if($settings['controlPanel']&&$settings['play'])togglePlay(true);resetInterval();if($settings['controllable']){setNextButtonVisible(true);setPreviousButtonVisible(true);$buttonsActive=true}}function gotoView(viewId,relative){if(relative)viewId=$currentViewId+viewId;if(viewId*$settings['slidesPerView']>=$slides.length){if($settings['loop']){viewId=0}else{viewId=Math.floor(($slides.length-1)/$settings['slidesPerView']);return}}else if(viewId<0){if($settings['loop']){viewId=Math.floor(($slides.length-1)/$settings['slidesPerView'])}else{viewId=0;return}}$currentViewId=viewId;var position=0;var slidePosition=$slideshow.find('.slide_'+(viewId*$settings['slidesPerView'])).position();if(slidePosition)position='-='+(slidePosition.left-Math.abs($slideshow.position().left));$buttonsActive=false;if($settings['animation']=='fade'){$slideshow.fadeOut(parseInt($settings['slideSpeed']*1000)/2);setTimeout(function(){$slideshow.css({left:position});$slideshow.fadeIn(parseInt($settings['slideSpeed']*1000)/ 2)}, parseInt($settings['slideSpeed'] * 1000) /2)}else{$slideshow.animate({left:position},parseInt($settings['slideSpeed']*1000))}setTimeout(function(){$buttonsActive=true},parseInt($settings['slideSpeed']*1000))}$nextButton.click(function(){if($buttonsActive){resetInterval();gotoView(1,true)}});$previousButton.click(function(){if($buttonsActive){resetInterval();gotoView(-1,true)}});function setNextButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$nextButton.stop(true,true).fadeIn($settings['slideSpeed']);else $nextButton.stop(true,true).fadeOut($settings['slideSpeed'])}function setPreviousButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$previousButton.stop(true,true).fadeIn($settings['slideSpeed']);else $previousButton.stop(true,true).fadeOut($settings['slideSpeed'])}$togglePlayButton.click(function(){togglePlay()});function togglePlay(adaptButton){if(!adaptButton){$settings['play']=!$settings['play'];resetInterval()}if($settings['play'])$togglePlayButton.attr('class','pause');else $togglePlayButton.attr('class','play')}$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut('slow')});$container.mouseenter(function(){if($settings['controlPanel'])$controlPanel.stop(true,true).fadeIn('fast')});$slides.mouseenter(function(){if($settings['showDescription']&&$settings['hideDescription'])jQuery(this).find('.description').stop(true,true).animate({'margin-bottom':'0px'},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){if($settings['showDescription']&&$settings['hideDescription']){var description=jQuery(this).find('.description');description.stop(true,true).animate({'margin-bottom':'-'+description.outerHeight(true)+'px'},parseInt($settings['descriptionSpeed']*1000))}});function resetInterval(){clearInterval($interval);if($settings['play'])$interval=setInterval(function(){gotoView(1,true)},$settings['intervalSpeed']*1000)}jQuery(window).load(function(){jQuery.each($slides,function(key,slide){var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){var imageWidth=jQuery(slide).width()-(image.outerWidth(true)-image.width());var imageHeight=jQuery(slide).height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:imageWidth,height:imageHeight})}else{if(image.outerWidth(true)>jQuery(slide).width()){image.css({width:imageWidth,height:'auto'})}else if(image.outerHeight(true)>jQuery(slide).height()){image.css({width:'auto',height:imageHeight})}}}})})};
1
+ jQuery.fn.slideshow_script=function(){var $container=jQuery(this),$overflow=$container.find('.slideshow_overflow'),$controlPanel=$container.find('.controlPanel'),$togglePlayButton=$controlPanel.find('.togglePlay'),$nextButton=$container.find('.next'),$previousButton=$container.find('.previous'),$slideshow=$container.find('.slideshow'),$slides=$slideshow.find('.slide');var $settings=jQuery.parseJSON($container.find('.settings').text());jQuery.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});if($container.width()<=0){var parentElement=$container.parent();if(parentElement.width()<=0)$container.css('width',parentElement.closest('div').width());else $container.css('width',parentElement.width())}$overflow.css('width',$container.width());var $numberSlidesVisible=3,$buttonsActive=false,$interval='',$currentSlideId=0,$currentViewId=0,$slideWidth=$container.width()/$settings['slidesPerView'];init();function init(){var slidePosition=0;var totalWidth=1;jQuery.each($slides,function(key,slide){if(slidePosition<=0)jQuery(slide).css({'padding-left':0,'margin-left':0});if(slidePosition>=$settings['slidesPerView']-1)jQuery(slide).css({'padding-right':0,'margin-right':0});var slideWidth=$slideWidth-(jQuery(slide).outerWidth(true)-jQuery(slide).width());jQuery(slide).css({width:slideWidth});totalWidth+=jQuery(slide).outerWidth(true);var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){if($settings['stretchImages']){image.attr({width:jQuery(slide).width(),height:jQuery(slide).height()})}else{image.css('width','auto')}}var description=jQuery(slide).find('.description');if($settings['showDescription']&&description.attr('class')!=undefined){if($settings['hideDescription'])description.css({marginBottom:'-'+description.outerHeight(true)+'px'});else description.css({height:$settings['descriptionHeight']});description.css({display:'block'})}var videoSlideIds=jQuery(slide).find('.videoId').text().split(' ');var videoId=videoSlideIds[0];var elementVideoId=videoSlideIds[1];if(videoId&&elementVideoId){swfobject.embedSWF('http://www.youtube.com/v/'+videoId+'?version=3&enablejsapi=1&playerapiid=player',elementVideoId,jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',wmode:'opaque'},{id:elementVideoId})}slidePosition++;if(slidePosition>=$settings['slidesPerView'])slidePosition=0});$slideshow.css({width:totalWidth,float:'none',position:'absolute',top:0,left:0});if($settings['controlPanel']&&$settings['play'])togglePlay(true);resetInterval();if($settings['controllable']){setNextButtonVisible(true);setPreviousButtonVisible(true);$buttonsActive=true}}function gotoView(viewId,relative){if(relative)viewId=$currentViewId+viewId;if(viewId*$settings['slidesPerView']>=$slides.length){if($settings['loop']){viewId=0}else{viewId=Math.floor(($slides.length-1)/$settings['slidesPerView']);return}}else if(viewId<0){if($settings['loop']){viewId=Math.floor(($slides.length-1)/$settings['slidesPerView'])}else{viewId=0;return}}$currentViewId=viewId;var position=0;var slidePosition=$slideshow.find('.slide_'+(viewId*$settings['slidesPerView'])).position();if(slidePosition)position=slidePosition.left-Math.abs($slideshow.position().left);$buttonsActive=false;if($settings['animation']=='fade'){$slideshow.fadeOut(parseInt($settings['slideSpeed']*1000)/2);setTimeout(function(){$slideshow.animate({left:'-='+position},0);$slideshow.fadeIn(parseInt($settings['slideSpeed']*1000)/ 2)}, parseInt($settings['slideSpeed'] * 1000) /2)}else{$slideshow.animate({left:'-='+position},parseInt($settings['slideSpeed']*1000))}setTimeout(function(){$buttonsActive=true},parseInt($settings['slideSpeed']*1000))}$nextButton.click(function(){if($buttonsActive){resetInterval();gotoView(1,true)}});$previousButton.click(function(){if($buttonsActive){resetInterval();gotoView(-1,true)}});function setNextButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$nextButton.stop(true,true).fadeIn($settings['slideSpeed']);else $nextButton.stop(true,true).fadeOut($settings['slideSpeed'])}function setPreviousButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$previousButton.stop(true,true).fadeIn($settings['slideSpeed']);else $previousButton.stop(true,true).fadeOut($settings['slideSpeed'])}$togglePlayButton.click(function(){togglePlay()});function togglePlay(adaptButton){if(!adaptButton){$settings['play']=!$settings['play'];resetInterval()}if($settings['play'])$togglePlayButton.attr('class','pause');else $togglePlayButton.attr('class','play')}$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut('slow')});$container.mouseenter(function(){if($settings['controlPanel'])$controlPanel.stop(true,true).fadeIn('fast')});$slides.mouseenter(function(){if($settings['showDescription']&&$settings['hideDescription'])jQuery(this).find('.description').stop(true,true).animate({'margin-bottom':'0px'},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){if($settings['showDescription']&&$settings['hideDescription']){var description=jQuery(this).find('.description');description.stop(true,true).animate({'margin-bottom':'-'+description.outerHeight(true)+'px'},parseInt($settings['descriptionSpeed']*1000))}});function resetInterval(){clearInterval($interval);if($settings['play'])$interval=setInterval(function(){gotoView(1,true)},$settings['intervalSpeed']*1000)}jQuery(window).load(function(){jQuery.each($slides,function(key,slide){var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){var imageWidth=jQuery(slide).width()-(image.outerWidth(true)-image.width());var imageHeight=jQuery(slide).height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:imageWidth,height:imageHeight})}else{if(image.outerWidth(true)>jQuery(slide).width()){image.css({width:imageWidth,height:'auto'})}else if(image.outerHeight(true)>jQuery(slide).height()){image.css({width:'auto',height:imageHeight})}}}})})};
languages/slideshow-plugin-nl_NL.mo CHANGED
Binary file
languages/slideshow-plugin-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-09-22 19:22+0100\n"
6
- "PO-Revision-Date: 2012-09-22 19:24+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -64,131 +64,131 @@ msgstr "Slideshow Stijl"
64
  msgid "Slideshow Settings"
65
  msgstr "Slideshow Instellingen"
66
 
67
- #: classes/SlideshowPluginPostType.php:381
68
  msgid "Yes"
69
  msgstr "Ja"
70
 
71
- #: classes/SlideshowPluginPostType.php:382
72
  msgid "No"
73
  msgstr "Nee"
74
 
75
- #: classes/SlideshowPluginPostType.php:384
76
  msgid "The style used for this slideshow"
77
  msgstr "De stijl te gebruiken voor deze slideshow"
78
 
79
- #: classes/SlideshowPluginPostType.php:384
80
  msgid "Light"
81
  msgstr "Licht"
82
 
83
- #: classes/SlideshowPluginPostType.php:384
84
  msgid "Dark"
85
  msgstr "Donker"
86
 
87
- #: classes/SlideshowPluginPostType.php:384
88
  msgid "Custom"
89
  msgstr "Aangepast"
90
 
91
- #: classes/SlideshowPluginPostType.php:385
92
  msgid "Custom style editor"
93
  msgstr "Aangepaste stijl bewerker"
94
 
95
- #: classes/SlideshowPluginPostType.php:386
96
  msgid "Animation used for transition between slides"
97
  msgstr "Animatie tussen het wisselen van de slides"
98
 
99
- #: classes/SlideshowPluginPostType.php:386
100
  msgid "Slide"
101
  msgstr "Slide"
102
 
103
- #: classes/SlideshowPluginPostType.php:386
104
  msgid "Fade"
105
  msgstr "Fade"
106
 
107
- #: classes/SlideshowPluginPostType.php:386
108
  #: classes/SlideshowPluginPostType.php:387
109
  #: classes/SlideshowPluginPostType.php:388
110
  #: classes/SlideshowPluginPostType.php:389
 
111
  msgid "Animation"
112
  msgstr "Animatie"
113
 
114
- #: classes/SlideshowPluginPostType.php:387
115
  msgid "Number of seconds the slide takes to slide in"
116
  msgstr "Aantal seconden dat de animatie van het inschuiven van de volgende slide duurt"
117
 
118
- #: classes/SlideshowPluginPostType.php:388
119
  msgid "Number of seconds the description takes to slide in"
120
  msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
121
 
122
- #: classes/SlideshowPluginPostType.php:389
123
  msgid "Seconds between changing slides"
124
  msgstr "Seconden tussen het wisselen van de slides"
125
 
126
- #: classes/SlideshowPluginPostType.php:390
127
  msgid "Number of slides to fit into one slide"
128
  msgstr "Aantal slides om in een slide te plaatsen"
129
 
130
- #: classes/SlideshowPluginPostType.php:390
131
  #: classes/SlideshowPluginPostType.php:391
132
  #: classes/SlideshowPluginPostType.php:392
133
  #: classes/SlideshowPluginPostType.php:393
134
  #: classes/SlideshowPluginPostType.php:394
135
  #: classes/SlideshowPluginPostType.php:395
136
  #: classes/SlideshowPluginPostType.php:396
 
137
  msgid "Display"
138
  msgstr "Weergave"
139
 
140
- #: classes/SlideshowPluginPostType.php:391
141
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
142
  msgstr "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
143
 
144
- #: classes/SlideshowPluginPostType.php:392
145
  msgid "Height of the slideshow"
146
  msgstr "Hoogte van de slideshow"
147
 
148
- #: classes/SlideshowPluginPostType.php:393
149
  msgid "Height of the description boxes"
150
  msgstr "Hoogte van de beschrijvingen"
151
 
152
- #: classes/SlideshowPluginPostType.php:394
153
  msgid "Fit image into slide (stretching it)"
154
  msgstr "Pas afbeelding in de slideshow (oprekken)"
155
 
156
- #: classes/SlideshowPluginPostType.php:395
157
  msgid "Show title and description"
158
  msgstr "Toon titel en beschrijving"
159
 
160
- #: classes/SlideshowPluginPostType.php:396
161
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
  msgstr "Verbeg beschrijving, toon de slide alleen wanneer de muisaanwijzer boven de slide is"
163
 
164
- #: classes/SlideshowPluginPostType.php:397
165
  msgid "Automatically slide to the next slide"
166
  msgstr "Automatisch naar de volgende slide gaan"
167
 
168
- #: classes/SlideshowPluginPostType.php:397
169
  #: classes/SlideshowPluginPostType.php:398
170
  #: classes/SlideshowPluginPostType.php:399
171
  #: classes/SlideshowPluginPostType.php:400
 
172
  msgid "Control"
173
  msgstr "Controle"
174
 
175
- #: classes/SlideshowPluginPostType.php:398
176
  msgid "Return to the beginning of the slideshow after last slide"
177
  msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
178
 
179
- #: classes/SlideshowPluginPostType.php:399
180
  msgid "Activate buttons (so the user can scroll through the slides)"
181
  msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
182
 
183
- #: classes/SlideshowPluginPostType.php:400
184
  msgid "Show control panel (play and pause button)"
185
  msgstr "Toon controlepaneel (speel en pause knop)"
186
 
187
- #: classes/SlideshowPluginPostType.php:401
188
  msgid "Randomize slides"
189
  msgstr "Toon slides in willekeurige volgorde"
190
 
191
- #: classes/SlideshowPluginPostType.php:401
192
  msgid "Miscellaneous"
193
  msgstr "Overige"
194
 
@@ -225,11 +225,11 @@ msgstr "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt
225
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
226
  msgstr "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als widget."
227
 
228
- #: views/SlideshowPluginPostType/settings.php:8
229
  msgid "settings"
230
  msgstr "instellingen"
231
 
232
- #: views/SlideshowPluginPostType/settings.php:22
233
  #: views/SlideshowPluginPostType/style-settings.php:6
234
  msgid "Default"
235
  msgstr "Standaard"
@@ -328,8 +328,8 @@ msgid "Search"
328
  msgstr "Zoek"
329
 
330
  #: views/SlideshowPluginSlideInserter/search-popup.php:7
331
- msgid "Search images by title"
332
- msgstr "Zoek plaatjes op titel"
333
 
334
  #: views/SlideshowPluginUpload/upload-button.php:1
335
  msgid "Upload/Manage Images"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-24 00:27+0100\n"
6
+ "PO-Revision-Date: 2012-09-24 00:27+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "MIME-Version: 1.0\n"
64
  msgid "Slideshow Settings"
65
  msgstr "Slideshow Instellingen"
66
 
67
+ #: classes/SlideshowPluginPostType.php:382
68
  msgid "Yes"
69
  msgstr "Ja"
70
 
71
+ #: classes/SlideshowPluginPostType.php:383
72
  msgid "No"
73
  msgstr "Nee"
74
 
75
+ #: classes/SlideshowPluginPostType.php:385
76
  msgid "The style used for this slideshow"
77
  msgstr "De stijl te gebruiken voor deze slideshow"
78
 
79
+ #: classes/SlideshowPluginPostType.php:385
80
  msgid "Light"
81
  msgstr "Licht"
82
 
83
+ #: classes/SlideshowPluginPostType.php:385
84
  msgid "Dark"
85
  msgstr "Donker"
86
 
87
+ #: classes/SlideshowPluginPostType.php:385
88
  msgid "Custom"
89
  msgstr "Aangepast"
90
 
91
+ #: classes/SlideshowPluginPostType.php:386
92
  msgid "Custom style editor"
93
  msgstr "Aangepaste stijl bewerker"
94
 
95
+ #: classes/SlideshowPluginPostType.php:387
96
  msgid "Animation used for transition between slides"
97
  msgstr "Animatie tussen het wisselen van de slides"
98
 
99
+ #: classes/SlideshowPluginPostType.php:387
100
  msgid "Slide"
101
  msgstr "Slide"
102
 
103
+ #: classes/SlideshowPluginPostType.php:387
104
  msgid "Fade"
105
  msgstr "Fade"
106
 
 
107
  #: classes/SlideshowPluginPostType.php:387
108
  #: classes/SlideshowPluginPostType.php:388
109
  #: classes/SlideshowPluginPostType.php:389
110
+ #: classes/SlideshowPluginPostType.php:390
111
  msgid "Animation"
112
  msgstr "Animatie"
113
 
114
+ #: classes/SlideshowPluginPostType.php:388
115
  msgid "Number of seconds the slide takes to slide in"
116
  msgstr "Aantal seconden dat de animatie van het inschuiven van de volgende slide duurt"
117
 
118
+ #: classes/SlideshowPluginPostType.php:389
119
  msgid "Number of seconds the description takes to slide in"
120
  msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
121
 
122
+ #: classes/SlideshowPluginPostType.php:390
123
  msgid "Seconds between changing slides"
124
  msgstr "Seconden tussen het wisselen van de slides"
125
 
126
+ #: classes/SlideshowPluginPostType.php:391
127
  msgid "Number of slides to fit into one slide"
128
  msgstr "Aantal slides om in een slide te plaatsen"
129
 
 
130
  #: classes/SlideshowPluginPostType.php:391
131
  #: classes/SlideshowPluginPostType.php:392
132
  #: classes/SlideshowPluginPostType.php:393
133
  #: classes/SlideshowPluginPostType.php:394
134
  #: classes/SlideshowPluginPostType.php:395
135
  #: classes/SlideshowPluginPostType.php:396
136
+ #: classes/SlideshowPluginPostType.php:397
137
  msgid "Display"
138
  msgstr "Weergave"
139
 
140
+ #: classes/SlideshowPluginPostType.php:392
141
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
142
  msgstr "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
143
 
144
+ #: classes/SlideshowPluginPostType.php:393
145
  msgid "Height of the slideshow"
146
  msgstr "Hoogte van de slideshow"
147
 
148
+ #: classes/SlideshowPluginPostType.php:394
149
  msgid "Height of the description boxes"
150
  msgstr "Hoogte van de beschrijvingen"
151
 
152
+ #: classes/SlideshowPluginPostType.php:395
153
  msgid "Fit image into slide (stretching it)"
154
  msgstr "Pas afbeelding in de slideshow (oprekken)"
155
 
156
+ #: classes/SlideshowPluginPostType.php:396
157
  msgid "Show title and description"
158
  msgstr "Toon titel en beschrijving"
159
 
160
+ #: classes/SlideshowPluginPostType.php:397
161
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
  msgstr "Verbeg beschrijving, toon de slide alleen wanneer de muisaanwijzer boven de slide is"
163
 
164
+ #: classes/SlideshowPluginPostType.php:398
165
  msgid "Automatically slide to the next slide"
166
  msgstr "Automatisch naar de volgende slide gaan"
167
 
 
168
  #: classes/SlideshowPluginPostType.php:398
169
  #: classes/SlideshowPluginPostType.php:399
170
  #: classes/SlideshowPluginPostType.php:400
171
+ #: classes/SlideshowPluginPostType.php:401
172
  msgid "Control"
173
  msgstr "Controle"
174
 
175
+ #: classes/SlideshowPluginPostType.php:399
176
  msgid "Return to the beginning of the slideshow after last slide"
177
  msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
178
 
179
+ #: classes/SlideshowPluginPostType.php:400
180
  msgid "Activate buttons (so the user can scroll through the slides)"
181
  msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
182
 
183
+ #: classes/SlideshowPluginPostType.php:401
184
  msgid "Show control panel (play and pause button)"
185
  msgstr "Toon controlepaneel (speel en pause knop)"
186
 
187
+ #: classes/SlideshowPluginPostType.php:402
188
  msgid "Randomize slides"
189
  msgstr "Toon slides in willekeurige volgorde"
190
 
191
+ #: classes/SlideshowPluginPostType.php:402
192
  msgid "Miscellaneous"
193
  msgstr "Overige"
194
 
225
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
226
  msgstr "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als widget."
227
 
228
+ #: views/SlideshowPluginPostType/settings.php:10
229
  msgid "settings"
230
  msgstr "instellingen"
231
 
232
+ #: views/SlideshowPluginPostType/settings.php:24
233
  #: views/SlideshowPluginPostType/style-settings.php:6
234
  msgid "Default"
235
  msgstr "Standaard"
328
  msgstr "Zoek"
329
 
330
  #: views/SlideshowPluginSlideInserter/search-popup.php:7
331
+ msgid "Search images by title or ID"
332
+ msgstr "Zoek afbeeldingen op titel of ID"
333
 
334
  #: views/SlideshowPluginUpload/upload-button.php:1
335
  msgid "Upload/Manage Images"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Slideshow ===
2
 
3
  Contributors: stefanboonstra
4
- Tags: slideshow, slider, slide, show, images, image, photo, gallery, galleries, jquery, javascript,
5
  Requires at least: 3.3
6
  Tested up to: 3.4.2
7
- Stable tag: 2.1.6
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -99,10 +99,14 @@ slideshow may not be styled.
99
  = 2.2.0 Pre-release =
100
  * Slides can now be randomized.
101
  * Multiple slideshows can now be shown with each its separate styling.
 
 
 
 
102
 
103
  = 2.1.6 =
104
  * Slideshow widgets are loaded using theme sidebar settings, making the widget more dynamic.
105
- * Fixed slideshow widget title can now be set to an empty value.
106
 
107
  = 2.1.5 =
108
  * Fixed: Wordpress intervened with the HTML output by the shortcode, this caused scripts to break.
1
  === Slideshow ===
2
 
3
  Contributors: stefanboonstra
4
+ Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
5
  Requires at least: 3.3
6
  Tested up to: 3.4.2
7
+ Stable tag: 2.1.7
8
  License: GPLv2
9
 
10
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
99
  = 2.2.0 Pre-release =
100
  * Slides can now be randomized.
101
  * Multiple slideshows can now be shown with each its separate styling.
102
+ * Users can now search insertable images by post id.
103
+
104
+ = 2.1.7 =
105
+ * Fixed: Slideshow in some cases unable to show next slide in fade animation.
106
 
107
  = 2.1.6 =
108
  * Slideshow widgets are loaded using theme sidebar settings, making the widget more dynamic.
109
+ * Fixed: Slideshow widget title can now be set to an empty value.
110
 
111
  = 2.1.5 =
112
  * Fixed: Wordpress intervened with the HTML output by the shortcode, this caused scripts to break.
slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
- Version: 2.1.6
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
@@ -16,12 +16,12 @@
16
  * base path/url returning method.
17
  *
18
  * @author Stefan Boonstra
19
- * @version 23-09-12
20
  */
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
- static $version = '2.1.6';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
+ Version: 2.1.7
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
16
  * base path/url returning method.
17
  *
18
  * @author Stefan Boonstra
19
+ * @version 24-09-12
20
  */
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
+ static $version = '2.1.7';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
views/SlideshowPluginSlideInserter/search-popup.php CHANGED
@@ -4,7 +4,7 @@
4
  <div>
5
  <input type="text" id="search" />
6
  <?php submit_button(__('Search', 'slideshow-plugin'), 'primary', 'search-submit', false); ?>
7
- <i><?php _e('Search images by title'); ?></i>
8
  </div>
9
  <div style="clear: both;"></div>
10
 
4
  <div>
5
  <input type="text" id="search" />
6
  <?php submit_button(__('Search', 'slideshow-plugin'), 'primary', 'search-submit', false); ?>
7
+ <i><?php _e('Search images by title or ID'); ?></i>
8
  </div>
9
  <div style="clear: both;"></div>
10