Ok guys, sorry about the lack of support lately. We have been extremlay busy releasing the vBExperience
https://vborg.vbsupport.ru/showthrea...45023&page=134 on our board. And well, when we install a new addon like this we do it the right way - well or the crazy way.

We wrote 7 plugins, changed templates and added over 150 achievements for that thing in order to customize it for our board.
That aside two new huge projects came up, which left me with no time for the slider.
So i'll post a quick fix for the browser cache issue, instead of releasing a new version.
To avoid the issue i'm going to give each saved image a unique name. But! I do not have time to bugcheck a delete function for old images which aren't used anymore - so i won't include that.
If you use that fix i would advise to delete all images in the slider folder from time to time.
Well here goes the code:
Find
Code:
imagecopyresampled($sprite, $image, 0, 0, 0, 0, $maxwidth, $maxheight, $img_width, $img_height );
imagedestroy($image);
$img_filepath = $slider_img_filepath . 'slide_' . $i . '.jpg';
replace with
Code:
imagecopyresampled($sprite, $image, 0, 0, 0, 0, $maxwidth, $maxheight, $img_width, $img_height );
imagedestroy($image);
$img_filepath = $slider_img_filepath . 'slide_' . $article['nodeid'] . '.jpg';
Regards Mooff