Version Description
- Fixed: Right click protection on Safari.
- Added: Export/Import add-on.
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.2.65 |
Comparing to | |
See all releases |
Code changes from version 1.2.64 to 1.2.65
- addons/addons.php +1 -1
- frontend/views/BWGViewGalleryBox.php +1 -0
- frontend/views/BWGViewImage_browser.php +1 -0
- frontend/views/BWGViewSlideshow.php +1 -0
- photo-gallery.php +3 -3
- readme.txt +56 -51
addons/addons.php
CHANGED
@@ -17,7 +17,7 @@ function bwg_addons_display() {
|
|
17 |
),
|
18 |
'photo-gallery-export' => array(
|
19 |
'name' => __('Photo Gallery Export / Import', 'bwg'),
|
20 |
-
'url' => '
|
21 |
'description' => __('Photo Gallery Export/Import helps to move created galleries and albums from one site to another. This way you can save the gallery/album options and manual modifications.', 'bwg'),
|
22 |
'icon' => '',
|
23 |
'image' => WD_BWG_URL . '/addons/images/import_export.png',
|
17 |
),
|
18 |
'photo-gallery-export' => array(
|
19 |
'name' => __('Photo Gallery Export / Import', 'bwg'),
|
20 |
+
'url' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html',
|
21 |
'description' => __('Photo Gallery Export/Import helps to move created galleries and albums from one site to another. This way you can save the gallery/album options and manual modifications.', 'bwg'),
|
22 |
'icon' => '',
|
23 |
'image' => WD_BWG_URL . '/addons/images/import_export.png',
|
frontend/views/BWGViewGalleryBox.php
CHANGED
@@ -1791,6 +1791,7 @@ class BWGViewGalleryBox {
|
|
1791 |
jQuery(".bwg_image_wrap").bind("contextmenu", function (e) {
|
1792 |
return false;
|
1793 |
});
|
|
|
1794 |
<?php
|
1795 |
}
|
1796 |
?>
|
1791 |
jQuery(".bwg_image_wrap").bind("contextmenu", function (e) {
|
1792 |
return false;
|
1793 |
});
|
1794 |
+
jQuery(".bwg_image_wrap").css('webkitTouchCallout','none');
|
1795 |
<?php
|
1796 |
}
|
1797 |
?>
|
frontend/views/BWGViewImage_browser.php
CHANGED
@@ -596,6 +596,7 @@ class BWGViewImage_browser {
|
|
596 |
jQuery('div[id^="bwg_container"]').bind("contextmenu", function (e) {
|
597 |
return false;
|
598 |
});
|
|
|
599 |
<?php
|
600 |
}
|
601 |
?>
|
596 |
jQuery('div[id^="bwg_container"]').bind("contextmenu", function (e) {
|
597 |
return false;
|
598 |
});
|
599 |
+
jQuery('div[id^="bwg_container"]').css('webkitTouchCallout','none');
|
600 |
<?php
|
601 |
}
|
602 |
?>
|
frontend/views/BWGViewSlideshow.php
CHANGED
@@ -1341,6 +1341,7 @@ class BWGViewSlideshow {
|
|
1341 |
jQuery('div[id^="bwg_container"]').bind("contextmenu", function () {
|
1342 |
return false;
|
1343 |
});
|
|
|
1344 |
<?php
|
1345 |
}
|
1346 |
?>
|
1341 |
jQuery('div[id^="bwg_container"]').bind("contextmenu", function () {
|
1342 |
return false;
|
1343 |
});
|
1344 |
+
jQuery('div[id^="bwg_container"]').css('webkitTouchCallout','none');
|
1345 |
<?php
|
1346 |
}
|
1347 |
?>
|
photo-gallery.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
|
7 |
-
* Version: 1.2.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -2339,7 +2339,7 @@ function bwg_activate() {
|
|
2339 |
));
|
2340 |
}
|
2341 |
$version = get_option("wd_bwg_version");
|
2342 |
-
$new_version = '1.2.
|
2343 |
if ($version && version_compare($version, $new_version, '<')) {
|
2344 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2345 |
bwg_update($version);
|
@@ -2387,7 +2387,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
|
|
2387 |
|
2388 |
function bwg_update_hook() {
|
2389 |
$version = get_option("wd_bwg_version");
|
2390 |
-
$new_version = '1.2.
|
2391 |
if ($version && version_compare($version, $new_version, '<')) {
|
2392 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2393 |
bwg_update($version);
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
|
7 |
+
* Version: 1.2.65
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
2339 |
));
|
2340 |
}
|
2341 |
$version = get_option("wd_bwg_version");
|
2342 |
+
$new_version = '1.2.65';
|
2343 |
if ($version && version_compare($version, $new_version, '<')) {
|
2344 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2345 |
bwg_update($version);
|
2387 |
|
2388 |
function bwg_update_hook() {
|
2389 |
$version = get_option("wd_bwg_version");
|
2390 |
+
$new_version = '1.2.65';
|
2391 |
if ($version && version_compare($version, $new_version, '<')) {
|
2392 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2393 |
bwg_update($version);
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Gallery ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
4 |
-
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -23,7 +23,8 @@ https://www.youtube.com/watch?v=4Mxg0FsFZZE&index=5&list=PLnxWPiY5tLFUsFI67acGEP
|
|
23 |
|
24 |
|
25 |
= Photo Gallery Add-ons: =
|
26 |
-
[Facebook Integration Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html)
|
|
|
27 |
|
28 |
|
29 |
Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive. The product includes plugin for adding image galleries and albums to posts and pages, as well as multiple widgets. You can add images, providing detailed descriptions and tags, organize the galleries into different albums.
|
@@ -214,14 +215,18 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
214 |
|
215 |
== Changelog ==
|
216 |
|
|
|
|
|
|
|
|
|
217 |
= 1.2.64 =
|
218 |
* Fixed: Embed media responsiveness.
|
219 |
* Changed: Permissions for shortcode(pro version).
|
220 |
* Added: Show/hide custom post types (optional).
|
221 |
|
222 |
= 1.2.63 =
|
223 |
-
* Fixed: Bug in comments
|
224 |
-
* Changed: Licensing page
|
225 |
|
226 |
= 1.2.62 =
|
227 |
* Changed: Thumbnail click action.
|
@@ -294,10 +299,10 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
294 |
* Fixed: Watermark link.
|
295 |
|
296 |
= 1.2.43 =
|
297 |
-
* New: Tools for editing images
|
298 |
|
299 |
= 1.2.42 =
|
300 |
-
* Fixed: Security issue
|
301 |
|
302 |
= 1.2.41 =
|
303 |
* Fixed: Embed media for wordpress lower than 4.0.0.
|
@@ -344,18 +349,18 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
344 |
* Fixed: Minor bug on gallery save on php5.3.
|
345 |
|
346 |
= 1.2.30 =
|
347 |
-
* Change links
|
348 |
|
349 |
= 1.2.29 =
|
350 |
* Changed: Featured plugins page.
|
351 |
* New: Featured themes page.
|
352 |
|
353 |
= 1.2.28 =
|
354 |
-
* change user guide links
|
355 |
-
* minor bug fixed
|
356 |
|
357 |
= 1.2.27 =
|
358 |
-
* minor bug fixed
|
359 |
|
360 |
= 1.2.26 =
|
361 |
* Fixed: Lightbox opening bug for ios.
|
@@ -364,17 +369,17 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
364 |
* Fixed: Lightbox opening bug for mobile browsers.
|
365 |
|
366 |
= 1.2.24 =
|
367 |
-
* duplicated id in slideshow view
|
368 |
-
* deprecated options removed (roles)
|
369 |
|
370 |
= 1.2.23 =
|
371 |
-
* bug in preload option fixed
|
372 |
|
373 |
= 1.2.21 =
|
374 |
-
* minor bugs fixes
|
375 |
|
376 |
= 1.2.19 =
|
377 |
-
* conflict with some themes fixed
|
378 |
|
379 |
= 1.2.18 =
|
380 |
* New: Bottom pagination in admin views.
|
@@ -387,7 +392,7 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
387 |
* Fixed: Order by filename.
|
388 |
|
389 |
= 1.2.17 =
|
390 |
-
Edit licensing page
|
391 |
|
392 |
= 1.2.16 =
|
393 |
* New: Embed support.
|
@@ -402,95 +407,95 @@ Edit licensing page
|
|
402 |
* Fixed: Other minor bugs.
|
403 |
|
404 |
= 1.2.15 =
|
405 |
-
* added large image url in page source for SEO
|
406 |
|
407 |
= 1.2.14 =
|
408 |
-
* shortcode issue fixed
|
409 |
|
410 |
= 1.2.13 =
|
411 |
-
* [CVE-2015-2324] security issue fixed in filemanager
|
412 |
This vulnerability was discovered by Fortinet's FortiGuard Labs.
|
413 |
|
414 |
= 1.2.12 =
|
415 |
-
* Front-end image sorting possibility (dropdown) for the users
|
416 |
|
417 |
= 1.2.11 =
|
418 |
-
* security issue fixed
|
419 |
-
* bug in fullscreen button and laoding image animation fixed
|
420 |
|
421 |
= 1.2.9 =
|
422 |
-
* updated font-awesome to 4.2.0 version
|
423 |
-
* sort bug in ligthbox
|
424 |
|
425 |
= 1.2.8 =
|
426 |
-
* security issue fixed
|
427 |
|
428 |
= 1.2.7 =
|
429 |
-
* masonry album view type
|
430 |
-
* single quota bug in image fixed
|
431 |
|
432 |
= 1.2.6 =
|
433 |
-
* bug in new image save fixed
|
434 |
|
435 |
= 1.2.5 =
|
436 |
-
* wrap around in lightbox
|
437 |
|
438 |
= 1.2.4 =
|
439 |
-
* pagination input
|
440 |
|
441 |
= 1.2.3 =
|
442 |
-
* play icon over the video thumbnail
|
443 |
|
444 |
= 1.2.2 =
|
445 |
-
* add upload images with custom size
|
446 |
|
447 |
= 1.2.1 =
|
448 |
-
* minor changes in shortcode generation code
|
449 |
|
450 |
= 1.2.0 =
|
451 |
-
* change shortcodes
|
452 |
|
453 |
= 1.1.30 =
|
454 |
-
* images count in ligthbox (optional - only in options page)
|
455 |
-
* images count column in galleries table
|
456 |
-
* WordPress Search Integration by gallery and album title
|
457 |
-
* show gallery, album title (optional - only in options page)
|
458 |
|
459 |
= 1.1.29 =
|
460 |
-
* Bug fixed in tag cloud widget
|
461 |
|
462 |
= 1.1.28 =
|
463 |
-
* Bug fixed in filemanager
|
464 |
|
465 |
= 1.1.27 =
|
466 |
-
* change in loading
|
467 |
|
468 |
= 1.1.26 =
|
469 |
-
* added option "Import from Media Library"
|
470 |
|
471 |
= 1.1.25 =
|
472 |
-
* bug fixed in save gallery
|
473 |
|
474 |
= 1.1.24 =
|
475 |
-
* Improve translation, Add tags to all images
|
476 |
|
477 |
= 1.1.23 =
|
478 |
-
* redirect from widget, unique tags name
|
479 |
|
480 |
= 1.1.22 =
|
481 |
-
* order option for album images
|
482 |
|
483 |
= 1.1.21 =
|
484 |
-
* added option for sorting gallery images within album
|
485 |
|
486 |
= 1.1.20 =
|
487 |
-
* bug fixed on lightbox
|
488 |
|
489 |
= 1.1.19 =
|
490 |
-
* preload images count options
|
491 |
|
492 |
= 1.1.18 =
|
493 |
-
* redirect url optional
|
494 |
|
495 |
= 1.1.15 =
|
496 |
* added search images in gallery (optional), optional info, resize.
|
1 |
=== Gallery ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
4 |
+
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.2.65
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
23 |
|
24 |
|
25 |
= Photo Gallery Add-ons: =
|
26 |
+
[Facebook Integration Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html)
|
27 |
+
[Export/Import Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html)
|
28 |
|
29 |
|
30 |
Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive. The product includes plugin for adding image galleries and albums to posts and pages, as well as multiple widgets. You can add images, providing detailed descriptions and tags, organize the galleries into different albums.
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= 1.2.65 =
|
219 |
+
* Fixed: Right click protection on Safari.
|
220 |
+
* Added: Export/Import add-on.
|
221 |
+
|
222 |
= 1.2.64 =
|
223 |
* Fixed: Embed media responsiveness.
|
224 |
* Changed: Permissions for shortcode(pro version).
|
225 |
* Added: Show/hide custom post types (optional).
|
226 |
|
227 |
= 1.2.63 =
|
228 |
+
* Fixed: Bug in comments.
|
229 |
+
* Changed: Licensing page.
|
230 |
|
231 |
= 1.2.62 =
|
232 |
* Changed: Thumbnail click action.
|
299 |
* Fixed: Watermark link.
|
300 |
|
301 |
= 1.2.43 =
|
302 |
+
* New: Tools for editing images.
|
303 |
|
304 |
= 1.2.42 =
|
305 |
+
* Fixed: Security issue.
|
306 |
|
307 |
= 1.2.41 =
|
308 |
* Fixed: Embed media for wordpress lower than 4.0.0.
|
349 |
* Fixed: Minor bug on gallery save on php5.3.
|
350 |
|
351 |
= 1.2.30 =
|
352 |
+
* Change links.
|
353 |
|
354 |
= 1.2.29 =
|
355 |
* Changed: Featured plugins page.
|
356 |
* New: Featured themes page.
|
357 |
|
358 |
= 1.2.28 =
|
359 |
+
* change user guide links.
|
360 |
+
* minor bug fixed.
|
361 |
|
362 |
= 1.2.27 =
|
363 |
+
* minor bug fixed.
|
364 |
|
365 |
= 1.2.26 =
|
366 |
* Fixed: Lightbox opening bug for ios.
|
369 |
* Fixed: Lightbox opening bug for mobile browsers.
|
370 |
|
371 |
= 1.2.24 =
|
372 |
+
* duplicated id in slideshow view.
|
373 |
+
* deprecated options removed (roles).
|
374 |
|
375 |
= 1.2.23 =
|
376 |
+
* bug in preload option fixed.
|
377 |
|
378 |
= 1.2.21 =
|
379 |
+
* minor bugs fixes.
|
380 |
|
381 |
= 1.2.19 =
|
382 |
+
* conflict with some themes fixed.
|
383 |
|
384 |
= 1.2.18 =
|
385 |
* New: Bottom pagination in admin views.
|
392 |
* Fixed: Order by filename.
|
393 |
|
394 |
= 1.2.17 =
|
395 |
+
Edit licensing page.
|
396 |
|
397 |
= 1.2.16 =
|
398 |
* New: Embed support.
|
407 |
* Fixed: Other minor bugs.
|
408 |
|
409 |
= 1.2.15 =
|
410 |
+
* added large image url in page source for SEO.
|
411 |
|
412 |
= 1.2.14 =
|
413 |
+
* shortcode issue fixed .
|
414 |
|
415 |
= 1.2.13 =
|
416 |
+
* [CVE-2015-2324] security issue fixed in filemanager.
|
417 |
This vulnerability was discovered by Fortinet's FortiGuard Labs.
|
418 |
|
419 |
= 1.2.12 =
|
420 |
+
* Front-end image sorting possibility (dropdown) for the users.
|
421 |
|
422 |
= 1.2.11 =
|
423 |
+
* security issue fixed.
|
424 |
+
* bug in fullscreen button and laoding image animation fixed.
|
425 |
|
426 |
= 1.2.9 =
|
427 |
+
* updated font-awesome to 4.2.0 version.
|
428 |
+
* sort bug in ligthbox.
|
429 |
|
430 |
= 1.2.8 =
|
431 |
+
* security issue fixed.
|
432 |
|
433 |
= 1.2.7 =
|
434 |
+
* masonry album view type.
|
435 |
+
* single quota bug in image fixed.
|
436 |
|
437 |
= 1.2.6 =
|
438 |
+
* bug in new image save fixed.
|
439 |
|
440 |
= 1.2.5 =
|
441 |
+
* wrap around in lightbox.
|
442 |
|
443 |
= 1.2.4 =
|
444 |
+
* pagination input.
|
445 |
|
446 |
= 1.2.3 =
|
447 |
+
* play icon over the video thumbnail.
|
448 |
|
449 |
= 1.2.2 =
|
450 |
+
* add upload images with custom size.
|
451 |
|
452 |
= 1.2.1 =
|
453 |
+
* minor changes in shortcode generation code.
|
454 |
|
455 |
= 1.2.0 =
|
456 |
+
* change shortcodes.
|
457 |
|
458 |
= 1.1.30 =
|
459 |
+
* images count in ligthbox (optional - only in options page).
|
460 |
+
* images count column in galleries table.
|
461 |
+
* WordPress Search Integration by gallery and album title.
|
462 |
+
* show gallery, album title (optional - only in options page).
|
463 |
|
464 |
= 1.1.29 =
|
465 |
+
* Bug fixed in tag cloud widget.
|
466 |
|
467 |
= 1.1.28 =
|
468 |
+
* Bug fixed in filemanager.
|
469 |
|
470 |
= 1.1.27 =
|
471 |
+
* change in loading.
|
472 |
|
473 |
= 1.1.26 =
|
474 |
+
* added option "Import from Media Library".
|
475 |
|
476 |
= 1.1.25 =
|
477 |
+
* bug fixed in save gallery.
|
478 |
|
479 |
= 1.1.24 =
|
480 |
+
* Improve translation, Add tags to all images.
|
481 |
|
482 |
= 1.1.23 =
|
483 |
+
* redirect from widget, unique tags name.
|
484 |
|
485 |
= 1.1.22 =
|
486 |
+
* order option for album images.
|
487 |
|
488 |
= 1.1.21 =
|
489 |
+
* added option for sorting gallery images within album.
|
490 |
|
491 |
= 1.1.20 =
|
492 |
+
* bug fixed on lightbox.
|
493 |
|
494 |
= 1.1.19 =
|
495 |
+
* preload images count options.
|
496 |
|
497 |
= 1.1.18 =
|
498 |
+
* redirect url optional.
|
499 |
|
500 |
= 1.1.15 =
|
501 |
* added search images in gallery (optional), optional info, resize.
|