Version Description
- Fixed: Filename as alt/title on image insert.
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.3.11 |
Comparing to | |
See all releases |
Code changes from version 1.3.10 to 1.3.11
- admin/views/BWGViewGalleries_bwg.php +2 -2
- photo-gallery.php +3 -3
- readme.txt +4 -1
admin/views/BWGViewGalleries_bwg.php
CHANGED
@@ -434,10 +434,10 @@ class BWGViewGalleries_bwg {
|
|
434 |
input_alt.setAttribute('style', "resize: vertical; height: 54px;");
|
435 |
input_alt.setAttribute('rows', "2");
|
436 |
if (is_embed && !is_direct_url) {
|
437 |
-
input_alt.
|
438 |
}
|
439 |
else {/*uploaded images and direct URLs of images only*/
|
440 |
-
input_alt.
|
441 |
}
|
442 |
td_alt.appendChild(input_alt);
|
443 |
|
434 |
input_alt.setAttribute('style', "resize: vertical; height: 54px;");
|
435 |
input_alt.setAttribute('rows', "2");
|
436 |
if (is_embed && !is_direct_url) {
|
437 |
+
input_alt.innerHTML = files[i]['name'];
|
438 |
}
|
439 |
else {/*uploaded images and direct URLs of images only*/
|
440 |
+
input_alt.innerHTML = files[i]['filename'];
|
441 |
}
|
442 |
td_alt.appendChild(input_alt);
|
443 |
|
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.3.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -1923,7 +1923,7 @@ function bwg_activate() {
|
|
1923 |
));
|
1924 |
}
|
1925 |
$version = WD_BWG_VERSION;
|
1926 |
-
$new_version = '1.3.
|
1927 |
if ($version && version_compare($version, $new_version, '<')) {
|
1928 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
1929 |
bwg_update($version);
|
@@ -1975,7 +1975,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
|
|
1975 |
|
1976 |
function bwg_update_hook() {
|
1977 |
$version = WD_BWG_VERSION;
|
1978 |
-
$new_version = '1.3.
|
1979 |
if ($version && version_compare($version, $new_version, '<')) {
|
1980 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
1981 |
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.3.11
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
1923 |
));
|
1924 |
}
|
1925 |
$version = WD_BWG_VERSION;
|
1926 |
+
$new_version = '1.3.11';
|
1927 |
if ($version && version_compare($version, $new_version, '<')) {
|
1928 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
1929 |
bwg_update($version);
|
1975 |
|
1976 |
function bwg_update_hook() {
|
1977 |
$version = WD_BWG_VERSION;
|
1978 |
+
$new_version = '1.3.11';
|
1979 |
if ($version && version_compare($version, $new_version, '<')) {
|
1980 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
1981 |
bwg_update($version);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
|
4 |
Tags: album, image gallery, gallery, image, images, lightbox, photo, photo gallery, photos, responsive, thumbnail, widget
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -224,6 +224,9 @@ To enable the feature of adding Media Library images, go to Photo Gallery > Opti
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
227 |
= 1.3.10 =
|
228 |
* Changed: Image alt/title input size.
|
229 |
|
4 |
Tags: album, image gallery, gallery, image, images, lightbox, photo, photo gallery, photos, responsive, thumbnail, widget
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 1.3.11
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
224 |
|
225 |
== Changelog ==
|
226 |
|
227 |
+
= 1.3.11 =
|
228 |
+
* Fixed: Filename as alt/title on image insert.
|
229 |
+
|
230 |
= 1.3.10 =
|
231 |
* Changed: Image alt/title input size.
|
232 |
|