Version Description
= 7.3.11 =
- This version addresses various bug fixes and feature requests.
Download this release
Release Info
Developer | opajaap |
Plugin | WP Photo Album Plus |
Version | 7.3.12.001 |
Comparing to | |
See all releases |
Code changes from version 7.3.11.006 to 7.3.12.001
- changelog.txt +7 -1
- readme.txt +2 -2
- wppa-album-covers.php +4 -4
- wppa.php +2 -2
changelog.txt
CHANGED
@@ -1,12 +1,18 @@
|
|
1 |
WP Photo Album Plus Changelog
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
= 7.3.11 =
|
4 |
|
5 |
* New thumnail types: 1. Masonry style plus. See Table IV-C3. Make sure your thumbnail size equals the thumnail framesize (Table I-C1 and 3).
|
6 |
This type is like masonry style vertical, but is fully mobile friendly.
|
7 |
2. Masonry style mix. Uses Masonry style vert on pc and plus on mobile. Best of two worlds.
|
8 |
* Some minor fixes.
|
9 |
-
* New setting: Table VII-B1.0: Max nesting level. Limits the ability to create subalbums to the indicated level.
|
|
|
10 |
|
11 |
= 7.3.10 =
|
12 |
|
1 |
WP Photo Album Plus Changelog
|
2 |
|
3 |
+
= 7.3.12 =
|
4 |
+
|
5 |
+
* The cursor on album cover images where cover type is imagefactory(-mcr) and the link is lightbox,
|
6 |
+
does not change from wait to magnifier when the initialisation of lightbox is complete. Fixed.
|
7 |
+
|
8 |
= 7.3.11 =
|
9 |
|
10 |
* New thumnail types: 1. Masonry style plus. See Table IV-C3. Make sure your thumbnail size equals the thumnail framesize (Table I-C1 and 3).
|
11 |
This type is like masonry style vertical, but is fully mobile friendly.
|
12 |
2. Masonry style mix. Uses Masonry style vert on pc and plus on mobile. Best of two worlds.
|
13 |
* Some minor fixes.
|
14 |
+
* New setting: Table VII-B1.0: Max nesting level. Limits the ability to create subalbums at the frontend to the indicated level.
|
15 |
+
The album nesting level is displayed in parenthesis on the album admin page next to the id.
|
16 |
|
17 |
= 7.3.10 =
|
18 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto, imagemagick, pdf
|
5 |
-
Version: 7.3.
|
6 |
-
Stable tag: 7.3.
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto, imagemagick, pdf
|
5 |
+
Version: 7.3.12.001
|
6 |
+
Stable tag: 7.3.11.006
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
wppa-album-covers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
-
* Version 7.3.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1298,7 +1298,7 @@ global $wpdb;
|
|
1298 |
'<a' .
|
1299 |
' data-id="' . wppa_encrypt_photo( $thumb['id'] ) . '"' .
|
1300 |
' href="' . $link . '"' .
|
1301 |
-
' style="border:0;color:transparent;"' .
|
1302 |
( $is_video ? ' data-videohtml="' . esc_attr( wppa_get_video_body( $thumb['id'] ) ) . '"' .
|
1303 |
' data-videonatwidth="' . wppa_get_videox( $thumb['id'] ) . '"' .
|
1304 |
' data-videonatheight="' . wppa_get_videoy( $thumb['id'] ) . '"' : '' ) .
|
@@ -1320,7 +1320,7 @@ global $wpdb;
|
|
1320 |
' class="image wppa-img"' .
|
1321 |
' id="i-' . $image['id'] . '-' . wppa( 'mocc' ) . '"' .
|
1322 |
' title="' . wppa_zoom_in( $image['id'] ) . '"' .
|
1323 |
-
' style="' . wppa_wcs( 'wppa-img' ) . $imgattr .
|
1324 |
' ' . $events .
|
1325 |
' >' .
|
1326 |
wppa_get_video_body( $image['id'] ) .
|
@@ -1334,7 +1334,7 @@ global $wpdb;
|
|
1334 |
' id="i-' . $image['id'] . '-' . wppa( 'mocc' ) . '"' .
|
1335 |
' title="' . wppa_zoom_in( $image['id'] ) . '"' .
|
1336 |
' src="' . $src . '"' .
|
1337 |
-
' style="' . wppa_wcs( 'wppa-img' ) . $imgattr .
|
1338 |
' ' . $events .
|
1339 |
' ' . wppa_get_imgalt( $image['id'] ) .
|
1340 |
' />'
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
+
* Version 7.3.012.001
|
7 |
*
|
8 |
*/
|
9 |
|
1298 |
'<a' .
|
1299 |
' data-id="' . wppa_encrypt_photo( $thumb['id'] ) . '"' .
|
1300 |
' href="' . $link . '"' .
|
1301 |
+
' style="border:0;color:transparent;cursor:wait;"' .
|
1302 |
( $is_video ? ' data-videohtml="' . esc_attr( wppa_get_video_body( $thumb['id'] ) ) . '"' .
|
1303 |
' data-videonatwidth="' . wppa_get_videox( $thumb['id'] ) . '"' .
|
1304 |
' data-videonatheight="' . wppa_get_videoy( $thumb['id'] ) . '"' : '' ) .
|
1320 |
' class="image wppa-img"' .
|
1321 |
' id="i-' . $image['id'] . '-' . wppa( 'mocc' ) . '"' .
|
1322 |
' title="' . wppa_zoom_in( $image['id'] ) . '"' .
|
1323 |
+
' style="' . wppa_wcs( 'wppa-img' ) . $imgattr . '"' .
|
1324 |
' ' . $events .
|
1325 |
' >' .
|
1326 |
wppa_get_video_body( $image['id'] ) .
|
1334 |
' id="i-' . $image['id'] . '-' . wppa( 'mocc' ) . '"' .
|
1335 |
' title="' . wppa_zoom_in( $image['id'] ) . '"' .
|
1336 |
' src="' . $src . '"' .
|
1337 |
+
' style="' . wppa_wcs( 'wppa-img' ) . $imgattr . '"' .
|
1338 |
' ' . $events .
|
1339 |
' ' . wppa_get_imgalt( $image['id'] ) .
|
1340 |
' />'
|
wppa.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
* Plugin Name: WP Photo Album Plus
|
4 |
* Description: Easily manage and display your photo albums and slideshows within your WordPress site.
|
5 |
-
* Version: 7.3.
|
6 |
* Author: J.N. Breetvelt a.k.a. OpaJaap
|
7 |
* Author URI: http://wppa.opajaap.nl/
|
8 |
* Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
|
@@ -24,7 +24,7 @@ global $wp_version;
|
|
24 |
|
25 |
/* WPPA GLOBALS */
|
26 |
global $wppa_revno; $wppa_revno = '7311'; // WPPA db version
|
27 |
-
global $wppa_api_version; $wppa_api_version = '7.3.
|
28 |
|
29 |
/* Init page js data */
|
30 |
global $wppa_js_page_data; $wppa_js_page_data = '';
|
2 |
/*
|
3 |
* Plugin Name: WP Photo Album Plus
|
4 |
* Description: Easily manage and display your photo albums and slideshows within your WordPress site.
|
5 |
+
* Version: 7.3.12.001
|
6 |
* Author: J.N. Breetvelt a.k.a. OpaJaap
|
7 |
* Author URI: http://wppa.opajaap.nl/
|
8 |
* Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
|
24 |
|
25 |
/* WPPA GLOBALS */
|
26 |
global $wppa_revno; $wppa_revno = '7311'; // WPPA db version
|
27 |
+
global $wppa_api_version; $wppa_api_version = '7.3.12.001'; // WPPA software version
|
28 |
|
29 |
/* Init page js data */
|
30 |
global $wppa_js_page_data; $wppa_js_page_data = '';
|